.news-page {
    background-color: #f5f7fb;
    color: #0f172a;
}

.news-header {
    background: linear-gradient(135deg, #e0edff 0%, #cdd9ff 100%);
    color: #0f172a;
    padding: 4rem 0 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.news-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 50% 50%, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
    z-index: 0;
}

.news-header .container {
    position: relative;
    z-index: 1;
}

.news-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #0f172a;
    letter-spacing: -0.02em;
}

.news-subtitle {
    font-size: 1.25rem;
    color: #475569;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.nav-link.active {
    opacity: 1;
    position: relative;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background-color: var(--text-primary);
}

.news-content {
    padding: 4rem 0;
    background-color: #f5f7fb;
    font-size: var(--body-text-size);
}

.news-list {
    max-width: 900px;
    margin: 0 auto;
    display: block;
}

.news-item {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid #e2e8f0;
}

.news-item:hover {
    background-color: rgba(148, 163, 184, 0.08);
}

.news-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    min-width: 80px;
    padding-top: 0.25rem;
    color: #1d4ed8;
}

.date-day {
    font-size: 2.2rem;
    font-weight: 700;
    color: #1d4ed8;
    line-height: 1;
}

.date-month {
    font-size: 0.95rem;
    font-weight: 600;
    color: #475569;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0.25rem;
}

.date-year {
    font-size: 0.85rem;
    color: #94a3b8;
    margin-top: 0.15rem;
}

.news-body {
    flex: 1;
}

.news-meta {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
}

.news-category {
    display: inline-block;
    padding: 0.35rem 0.85rem;
    background-color: rgba(29, 78, 216, 0.15);
    color: #1d4ed8;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.news-time {
    font-size: 0.9rem;
    color: #64748b;
}

.news-heading {
    font-size: 1.75rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.75rem;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.news-item:hover .news-heading {
    color: #1d4ed8;
}

.news-excerpt {
    font-size: inherit;
    line-height: 1.7;
    color: #475569;
    margin-bottom: 0;
    text-align: justify;
}

@media (max-width: 768px) {
    .news-title {
        font-size: 2.5rem;
    }

    .news-subtitle {
        font-size: 1.1rem;
    }

    .news-item {
        flex-direction: column;
        gap: 1rem;
    }

    .news-date {
        flex-direction: row;
        align-items: center;
        gap: 0.5rem;
        min-width: auto;
        padding-top: 0;
    }

    .date-day {
        font-size: 1.5rem;
    }

    .date-month {
        margin-top: 0;
    }

    .date-year {
        margin-top: 0;
    }

    .news-heading {
        font-size: 1.5rem;
    }

    .news-excerpt {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .news-header {
        padding: 3rem 0 2rem;
    }

    .news-title {
        font-size: 2rem;
    }

    .news-subtitle {
        font-size: 1rem;
    }

    .news-content {
        padding: 3rem 0;
    }

    .news-item {
        padding: 1.5rem;
    }

    .news-heading {
        font-size: 1.25rem;
    }

    .news-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
}
