/* Firemní profil – sekundární tlačítka */
.contact__button--secondary {
    background: #fff;
    border: 1px solid #777;
    color: #333;
}

.contact__button--secondary .icon,
.contact__button--secondary svg {
    color: #555;
}

.contact__button--secondary:hover {
    background: #fff;
    border-color: #bbb;
    color: #333;
}

.contact__button--secondary:hover .icon,
.contact__button--secondary:hover svg {
    color: #555;
}

/* Firemní profil – stejná šířka akčních tlačítek */
@media (min-width: 576px) {
    .contact__footer .contact__button {
        width: 245.3px; flex: 0 0 245.3px;
        box-sizing: border-box;
    }
}

@media (max-width: 575px) {
    .contact__footer .contact__button {
        width: 100%;
        box-sizing: border-box;
    }
}

/* Firemní profil – pin u tlačítka Zobrazit trasu */
.contact__button--secondary .dealer__map-pin {
    display: block;
    width: 14px;
    height: 14px;
    border: 2px solid #555;
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
    position: relative;
    flex: 0 0 14px;
    margin-left: 2px;
}

.contact__button--secondary .dealer__map-pin::after {
    content: "";
    width: 4px;
    height: 4px;
    border: 1.5px solid #555;
    border-radius: 50%;
    position: absolute;
    left: 3px;
    top: 3px;
}

/* Firemní profil – oddělovače kontaktních sloupců */
@media (min-width: 767px) {
    .contact__grid > div {
        position: relative;
    }

    .contact__grid > div:not(:last-child)::after {
        content: "";
        position: absolute;
        right: 65px;
        top: 0;
        width: 1px;
        height: 60px;
        background: #ddd;
    }
}

/* Firemní profil – spojení mapy a provozní doby */
.dealer-profile__map-row {
    gap: 0;
    grid-template-columns: 1fr 340px;
}

/* Firemní profil – provozní doba sjednocená s výškou mapy */
.dealer-profile__map-row .opening {
    height: 350px;
    box-sizing: border-box;
}

.dealer-profile__map-row .opening__schedule {
    font-size: 14px;
    row-gap: 6px;
    line-height: 1.35;
}

/* Firemní profil – mobil mapa + provozní doba */
@media (max-width: 766px) {
    .dealer-profile__map-row {
        grid-template-columns: none;
        gap: 20px;
    }

    .dealer-profile__map-row .opening {
        height: auto;
    }
}

/* Firemní profil – menší mezera mezi CTA a mapou na mobilu */
@media (max-width: 575px) {
    .contact__footer {
        margin-bottom: 15px;
    }
}
