.info-column {
    flex: 0 0 45%;
    /* Занимает 45% ширины */
    display: flex;
    flex-direction: column;
}

.section-desc {
    color: var(--text);
    font-family: var(--tilda-sans);
    margin-bottom: 24px;
    max-width: 400px;
    font-size: 16px;
}

.page-title {
    margin-bottom: 20px !important;
}

/* Сетка для контактов (2 на 2) */
.details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    /* Левая колонка чуть шире для длинных адресов */
    row-gap: 30px;
    column-gap: 20px;
    margin-bottom: 40px;
}

.detail-title {
    font-size: 18px;
    font-weight: 400;
    color: var(--gray_3, #A9A9A9);
    margin-bottom: 15px;
}

/* Ссылки и текст */
.social-links a,
.contact-link,
.address-text {
    display: block;
    color: var(--purple_dark, #272630);
    text-decoration: none;
    font-size: 16px;
    margin-bottom: 10px;
    border-bottom: 1px solid var(--purple_dark, #272630);
    width: fit-content;
    font-style: normal;
    transition: opacity 0.2s;
    font-family: var(--tilda-sans);
}

.contact-link {
    white-space: nowrap;
}

/* Особый стиль для соцсетей (в одну строку) */
.social-links {
    display: flex;
    gap: 10px;
}

.social-links a {
    display: inline-block;
    white-space: nowrap;
}

.address-text {
    border-bottom: none;
    /* У адреса убираем подчеркивание блока */
    line-height: 110%;
}

.contact-link:hover,
.social-links a:hover {
    opacity: 0.7;
    border-bottom-color: transparent;
}


/* --- Правая колонка (Карта) --- */
.map-column {
    flex: 1;
    /* Занимает оставшееся место */
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    min-height: 400px;
}

.map-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Фильтр, чтобы сделать карту ч/б как на макете, если вставите цветную */
    filter: grayscale(100%) contrast(90%);
}

.details__wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}



@media (max-width: 1024px) {
    .details-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 900px) {
    .container {
        flex-direction: column;
    }

    .info-column {
        flex: auto;
        width: 100%;
    }

    .details-grid {
        grid-template-columns: 1fr;
        /* Одна колонка на мобильном */
        gap: 30px;
    }

    .map-column {
        min-height: 300px;
    }
}

@media (max-width: 576px) {
    .details__wrapper {
        grid-template-columns: 1fr;
    }

    .social-links {
        flex-wrap: wrap;
    }
}