/* Acțiunile din mini-pagina firmei: un singur rând pe desktop. */
.company-actions {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    align-items: stretch;
}

.company-favorite-form {
    display: contents;
}

.company-actions .ho-action,
.company-favorite-button {
    width: 100%;
    min-width: 0;
    height: 100%;
    justify-content: center;
    padding-inline: 10px;
    text-align: center;
    white-space: nowrap;
}

.company-favorite-button {
    cursor: pointer;
}

.company-favorite-button.is-active {
    border-color: #dc2626;
    background: #fff1f2;
    color: #be123c;
}

.company-favorite-button.is-active svg {
    fill: currentColor;
}

/* Tabletă: păstrăm butoanele suficient de late și ușor de apăsat. */
@media (max-width: 1099px) {
    .company-actions {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

/* Telefon: două pe rând, apoi unul pe rând pe ecranele foarte înguste. */
@media (max-width: 639px) {
    .company-actions {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .company-actions .ho-action,
    .company-favorite-button {
        white-space: normal;
    }
}

@media (max-width: 390px) {
    .company-actions {
        grid-template-columns: minmax(0, 1fr);
    }
}
