.news-hero {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), 
                url('../images/tractor.webp') no-repeat center center/cover;
    background-size: cover;
    background-position: center;
    height: 400px;
    display: flex;
    align-items: center;
    color: white;
    margin-top: 76px;
}

.news-hero h1 {
    font-size: 42px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.filter-section {
    background: #f8f9fa;
    padding: 30px 0;
}

.filter-card {
    background: white;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.news-grid {
    padding: 50px 0;
}

.news-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    margin-bottom: 30px;
    height: 100%;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.news-card img {
    width: 100%;
    height: 225px;
    object-fit: cover;
}

.news-card-body {
    padding: 32px;
}

.news-title {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    font-size: 14px;
    color: #7a7a7a;
}

.news-excerpt {
    color: #333;
    margin-bottom: 20px;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.btn-read-more {
    background: white;
    color: #004b00;
    border: 1px solid #004b00;
    padding: 10px 40px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-read-more:hover {
    background: #004b00;
    color: white;
}

.newsletter-section {
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    margin: 50px 0;
}

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

.pagination .page-link {
    color: #004b00;
    border: 1px solid #004b00;
    border-radius: 8px;
    margin: 0 5px;
    font-weight: 600;
}

.pagination .page-item.active .page-link {
    background: #004b00;
    border-color: #004b00;
}

.form-control, .form-select {
    border-radius: 8px;
    border: 1px solid #ddd;
}

.btn-primary {
    background: #1b760a;
    border-color: #1b760a;
    border-radius: 8px;
    font-weight: 500;
}

.btn-orange {
    background: #ff9b10;
    border: none;
    color: white;
    border-radius: 8px;
    font-weight: 500;
}

.btn-orange:hover {
    background: #e68910;
    color: white;
}