/* SECTION */
.agri-blog-section {
    padding: 80px 0;
    background: #f5f9f4;
    font-family: 'Poppins', sans-serif;
}

.agri-container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* HEADER */
.agri-section-header {
    text-align: center;
    margin-bottom: 50px;
}

.agri-subtitle {
    color: #4CAF50;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
}

.agri-section-header h2 {
    font-size: 32px;
    margin-top: 10px;
    color: #222;
}

/* GRID */
.agri-blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* CARD */
.agri-blog-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: 0.4s ease;
}

.agri-blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* IMAGE */
.agri-blog-img {
    overflow: hidden;
}

.agri-blog-img img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    transition: 0.5s ease;
}

.agri-blog-card:hover img {
    transform: scale(1.1);
}

/* CONTENT */
.agri-blog-content {
    padding: 25px;
}

.agri-date {
    font-size: 13px;
    color: #777;
}

.agri-blog-content h3 {
    font-size: 20px;
    margin: 10px 0;
    color: #222;
}

.agri-blog-content p {
    font-size: 15px;
    color: #555;
    margin-bottom: 15px;
}

/* BUTTON */
.agri-btn {
    text-decoration: none;
    font-weight: 600;
    color: #4CAF50;
    position: relative;
    transition: 0.3s;
}

.agri-btn::after {
    content: '';
    position: absolute;
    width: 0%;
    height: 2px;
    background: #4CAF50;
    left: 0;
    bottom: -4px;
    transition: 0.3s;
}

.agri-btn:hover::after {
    width: 100%;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .agri-blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .agri-blog-grid {
        grid-template-columns: 1fr;
    }

    .agri-section-header h2 {
        font-size: 26px;
    }
}

/* sepearte blog page  */
