.news-page {
    padding: 60px 0;
    min-height: calc(100vh - 70px - 300px);
    background-color: var(--gray-100);
}

.page-header {
    text-align: center;
    margin-bottom: 60px;
}

.page-header h1 {
    color: var(--primary-color);
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: bold;
}

.page-header .subtitle {
    color: var(--gray-500);
    font-size: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.news-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

.news-card {
    background-color: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.news-card:hover {
    transform: translateY(-10px);
}

.news-image {
    position: relative;
    height: 300px;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.category {
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: bold;
}

.news-content {
    padding: 30px;
}

.news-meta {
    display: flex;
    gap: 20px;
    color: var(--gray-500);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.news-meta i {
    margin-right: 5px;
}

.news-card h2 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 15px;
    font-weight: bold;
}

.news-card h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 10px;
    font-weight: bold;
}

.news-card p {
    color: var(--gray-500);
    margin-bottom: 20px;
    line-height: 1.6;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    padding: 8px 16px;
    border-radius: 4px;
    background-color: var(--gray-100);
}

.read-more:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.read-more i {
    transition: transform 0.3s ease;
}

.read-more:hover i {
    transform: translateX(5px);
}

.news-card.featured {
    grid-column: 1 / -1;
}

.news-card.featured .news-image {
    height: 400px;
}

.news-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 60px;
}

.page-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--white);
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.page-link.active {
    background-color: var(--primary-color);
    color: var(--white);
}

.page-link:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.page-link.next {
    width: auto;
    padding: 0 20px;
    border-radius: 20px;
}

@media (max-width: 1024px) {
    .news-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2.8rem;
    }

    .page-header .subtitle {
        font-size: 1.2rem;
    }

    .news-list {
        grid-template-columns: 1fr;
    }

    .news-card.featured .news-image {
        height: 300px;
    }

    .news-content {
        padding: 20px;
    }

    .news-card h2 {
        font-size: 1.8rem;
    }
}