

/* Start:/bitrix/templates/empty/components/bitrix/news/afisha/bitrix/news.detail/.default/style.css?17576610505408*/
.news-detail-article {
    background: #fff;
    border-radius: 7px;
    padding: 30px 28px 38px 28px;
    box-shadow: 0 3px 30px rgba(24, 62, 122, 0.06);
    max-width: 780px;
    box-sizing: border-box;
    margin: 0 auto;
    display: block;

}
.custom-container {
    display: flex;
    gap: 20px;
    margin: 30px 0;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
    align-items: center; /* Вертикальное выравнивание по центру */
    justify-content: space-between;
}

/* Блок подписки - 550x65 */
.subscribe-block-custom {
    flex-grow: 1;
    max-width: 600px;
    height: 80px;
    background: #1679fa;
    color: #fff;
    border-radius: 8px;
    padding: 15px 25px;
    box-shadow: 0 4px 22px rgba(22, 121, 250, 0.12);
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-sizing: border-box;
    transition: all 0.3s ease;
}

.subscribe-text h3 {
    margin: 0 0 3px;
    font-size: 1.2rem;
    font-weight: 500;
}

.subscribe-text p {
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.9;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    color: white;
    font-size: 1.4rem;
    opacity: 0.9;
    transition: opacity 0.2s ease;
    text-decoration: none;
}

.social-icon:hover,
.social-icon:focus {
    opacity: 1;
}

/* Блок возврата - 300x50 */
.back-block-custom {
    width: 300px;
    height: 50px;
    background: #183e7a;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 18px rgba(22, 121, 250, 0.12);
    box-sizing: border-box;
    flex-shrink: 0; /* чтобы не сжимался */
    transition: background-color 0.2s ease;
}

.back-btn-custom {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 500;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 15px;
    height: 100%;
    width: 100%;
    justify-content: center;
    cursor: pointer;
}

.back-btn-custom:hover,
.back-btn-custom:focus {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
}
.news-detail-container {
    display: flex;
    gap: 40px;
    max-width: 1000px;
    margin: 30px auto 20px auto;
    padding: 0 15px;
    box-sizing: border-box;
}

.photo-column {
    flex: 0 0 300px;
    height: 400px;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 18px rgba(24,62,122,0.07);
    border: 1px solid #e7e7e7;
}

.photo-column .detail-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.content-column {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
}

.detail-title {
    font-family: 'Evolventa-Bold', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    margin: 0 0 12px 0;
    color: #183e7a;
    line-height: 1.2;
}

.detail-date {
    color: #7a7a7a;
    font-size: 1rem;
    margin-bottom: 20px;
    letter-spacing: 0.05em;
}

.detail-preview-text {
    font-family: 'Evolventa-Regular', sans-serif;
    font-size: 1.1rem;
    line-height: 1.4;
    margin-bottom: 24px;
    color: #333;
}

.detail-text {
    font-family: 'Evolventa-Regular', sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
}

.properties-below {
    max-width: 1000px;
    margin: 0 auto 40px auto;
    padding: 20px 15px;
    border-top: 1px solid #ddd;
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(220px,1fr));
    gap: 20px;
    font-family: 'Evolventa-Regular', sans-serif;
    font-size: 0.95rem;
    color: #444;
}

.property-item strong {
    display: block;
    font-weight: 700;
    margin-bottom: 5px;
    color: #183e7a;
}

@media (max-width: 768px) {
    .news-detail-container {
        display: flex;
        flex-direction: column; /* переносим колонки в столбец */
        gap: 20px;
        max-width: 100%;
        margin: 20px auto 20px auto;
        padding: 0 15px;
        box-sizing: border-box;
    }

    .photo-column,
    .content-column {
        flex: none;
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
    }

    .photo-column {
        height: 250px; /* уменьшаем высоту картинки на мобилках */
    }

    .photo-column .detail-photo {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 8px;
        box-shadow: 0 4px 18px rgba(24,62,122,0.07);
        border: 1px solid #e7e7e7;
        display: block;
    }

    .content-column {
        display: flex;
        flex-direction: column;
    }
}
@media (max-width: 480px) {
    .custom-container {
        flex-direction: column;
        gap: 12px;
        margin: 20px 10px;
    }

    .back-block-custom {
        width: 100%;
        max-width: none;
        height: 45px;
    }

    .subscribe-block-custom {
        width: 100%;
        height: auto;
        padding: 12px 20px;
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .subscribe-text h3 {
        font-size: 1.1rem;
    }

    .subscribe-text p {
        font-size: 0.85rem;
    }

    .social-icons {
        gap: 10px;
        justify-content: flex-start;
        width: 100%;
    }

    .social-icon {
        font-size: 1.2rem;
    }
}

/* End */
/* /bitrix/templates/empty/components/bitrix/news/afisha/bitrix/news.detail/.default/style.css?17576610505408 */
