.news-hero {
    background: linear-gradient(135deg, rgba(26, 151, 205, .8), rgba(0, 0, 0, .8));
    padding: 180px 0 100px;
    color: #fff;
    text-align: center
}

.news-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px
}

.news-hero p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 30px
}

.news-section {
    padding: 100px 0
}

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

.section-header h2 {
    font-size: 2.5rem;
    color: var(--dark-color);
    margin-bottom: 15px
}

.section-header p {
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 50px
}

.news-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.news-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.news-image img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.news-card:hover .news-image img {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.news-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: var(--transition);
}

.news-card:hover .news-image img {
    transform: scale(1.05);
}

.news-content {
    padding: 25px
}

.news-meta {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: .9rem;
    color: var(--text-light)
}

.news-date {
    display: flex;
    align-items: center;
    margin-right: 20px
}

.news-date i,
.news-category i {
    margin-right: 5px;
    color: var(--secondary-color)
}

.news-category {
    display: flex;
    align-items: center
}

.news-category a {
    color: var(--text-light);
    transition: var(--transition)
}

.news-category a:hover {
    color: var(--secondary-color)
}

.news-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
    line-height: 1.4
}

.news-title a {
    color: var(--dark-color);
    transition: var(--transition)
}

.news-title a:hover {
    color: var(--secondary-color)
}

.news-excerpt {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.7
}

.read-more {
    display: inline-flex;
    align-items: center;
    color: var(--secondary-color);
    font-weight: 500;
    transition: var(--transition)
}

.read-more i {
    margin-left: 5px;
    transition: var(--transition)
}

.read-more:hover {
    color: var(--dark-color)
}

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

.pagination {
    display: flex;
    justify-content: center;
    margin-top: 50px
}

.pagination-list {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0
}

.page-item {
    margin: 0 5px
}

.page-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    color: var(--dark-color);
    font-weight: 500;
    transition: var(--transition);
    border: 1px solid #eee
}

.page-link:hover,
.page-link.active {
    background: var(--secondary-color);
    color: #fff;
    border-color: var(--secondary-color)
}

.page-link.prev,
.page-link.next {
    width: auto;
    padding: 0 15px;
    border-radius: 50px
}

.page-link.prev i {
    margin-right: 5px
}

.page-link.next i {
    margin-left: 5px
}

.newsletter-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color), var(--dark-color));
    color: #fff;
    text-align: center
}

.newsletter-container {
    max-width: 700px;
    margin: 0 auto
}

.newsletter-form {
    display: flex;
    max-width: 500px;
    margin: 40px auto 0
}

.newsletter-input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    border-radius: 50px 0 0 50px;
    font-size: 1rem;
    outline: none
}

.newsletter-btn {
    padding: 0 30px;
    background: var(--secondary-color);
    color: #fff;
    border: none;
    border-radius: 0 50px 50px 0;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition)
}

.newsletter-btn:hover {
    background: #c0392b
}

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

    .section-header h2 {
        font-size: 2rem
    }

    .news-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto
    }

    .newsletter-form {
        flex-direction: column
    }

    .newsletter-input {
        border-radius: 50px;
        margin-bottom: 15px
    }

    .newsletter-btn {
        border-radius: 50px;
        padding: 15px
    }
}
