/* ===== NEWS PAGE ===== */
.news-list {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.news-item {
    border-bottom: 1px solid #e8e2d8;
    padding-bottom: 28px;
}

.news-item:last-child {
    border-bottom: none;
}

.news-date {
    font-family: 'Heebo', sans-serif;
    font-size: 12px;
    color: #9a9080;
    margin-bottom: 6px;
    letter-spacing: 0.05em;
}

.news-title {
    font-family: 'Frank Ruhl Libre', serif;
    font-size: 20px;
    font-weight: 700;
    color: #2a2018;
    margin-bottom: 10px;
    line-height: 1.4;
}

.news-text {
    font-family: 'Heebo', sans-serif;
    font-size: 15px;
    color: #555;
    line-height: 1.8;
}

/* ===== MOBILE RESPONSIVE ===== */

@media (max-width: 768px) {
    .news-list {
        max-width: 100%;
        gap: 24px;
    }

    .news-item {
        padding-bottom: 24px;
    }

    .news-date {
        font-size: 11px;
    }

    .news-title {
        font-size: 18px;
        margin-bottom: 8px;
    }

    .news-text {
        font-size: 14px;
        line-height: 1.7;
    }
}

@media (max-width: 480px) {
    .news-list {
        gap: 20px;
    }

    .news-item {
        padding-bottom: 20px;
    }

    .news-date {
        font-size: 10px;
        margin-bottom: 5px;
    }

    .news-title {
        font-size: 17px;
        line-height: 1.3;
    }

    .news-text {
        font-size: 13px;
        line-height: 1.6;
    }
}
