/* ===== СТРАНИЦА НОВОСТИ ===== */
.news-detail-page {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 0 16px;
}

.back-link {
    padding: 16px 0;
    border-bottom: 1px solid #e5e5e5;
}

.back-link a {
    color: #40a7e3;
    text-decoration: none;
    font-size: 14px;
}

.news-detail-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px 0 16px;
    border-bottom: 1px solid #e5e5e5;
}

.news-detail-header .news-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: #40a7e3;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    flex-shrink: 0;
}

.news-detail-header .news-meta h1 {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
}

.news-detail-header .news-meta time {
    font-size: 13px;
    color: #999;
}

.news-detail-content {
    padding: 20px 0;
}

.detail-title {
    font-size: 28px;
    line-height: 1.3;
    margin: 0 0 20px 0;
    font-weight: 600;
}

.detail-body {
    font-size: 17px;
    line-height: 1.6;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.detail-body p {
    margin-bottom: 1em;
}

.detail-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 16px 0;
}

/* Адаптация для планшетов */
@media (min-width: 600px) {
    .detail-title {
        font-size: 22px;
    }
}

/* Адаптация для десктопа */
@media (min-width: 900px) {
    .news-detail-page {
        max-width: 900px;
        padding: 0 32px;
    }

    .detail-title {
        font-size: 28px;
    }
}