* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
/* ================= BLOG HERO ================= */

.blog-hero {
    position: relative;
    height: 360px;
    background: url("images/blog-hero.webp") center center / cover no-repeat;
    display: flex;
    align-items: center;
    color: #fff;
    overflow: hidden;
}

/* Dark overlay */
.blog-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1;
}

/* Content */
.blog-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

/* Breadcrumb */
.blog-breadcrumb {
    position: absolute;
    top: -100px;
    left: 20px;
    font-size: 14px;
    color: #fff;
}

.blog-breadcrumb a {
    color: #fff;
    text-decoration: none;
    opacity: 0.9;
}

.blog-breadcrumb span {
    margin: 0 6px;
    opacity: 0.7;
}

/* Title */
.blog-hero h1 {
    font-size: 48px;
    font-weight: 700;
    letter-spacing: 1px;
    margin: 0;
}

/* ================= RESPONSIVE ================= */

/* Tablet */
@media (max-width: 991px) {
    .blog-hero {
        height: 300px;
    }

    .blog-hero h1 {
        font-size: 36px;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .blog-hero {
        height: 240px;
    }

    .blog-hero h1 {
        font-size: 28px;
    }

    .blog-breadcrumb {
        font-size: 13px;
        top: -80px;
        left: 15px;
    }
}

/* Small Mobile */
@media (max-width: 360px) {
    .blog-hero h1 {
        font-size: 24px;
    }
}

/* Blog Section */
.blog-section {
    background: #f4ffe9;
    padding: 60px 0;
}

/* Blog Card */
.blog-card {
    background: #fff;
    border: 1px solid #4CAF50;
    border-radius: 12px;
    overflow: hidden;
    height: 100%;
    transition: 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* Image */
.blog-img img {
    width: 100%;
    height: 230px;
    object-fit: cover;
}

/* Content */
.blog-content {
    padding: 20px;
}

.blog-tag {
    font-size: 12px;
    color: #1b8f3a;
    font-weight: 600;
    display: block;
    margin-bottom: 6px;
}

.blog-content h5 {
    font-weight: 700;
    margin-bottom: 10px;
}

.blog-content p {
    font-size: 14px;
    color: #555;
    margin-bottom: 15px;
}

/* Read Button */
.read-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #118a2c;
    color: #fff;
    font-size: 12px;
    padding: 6px 14px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
}

.read-btn:hover {
    background: #0c6b22;
    color: #fff;
}

/* Show More Button */
.show-more-btn {
    background: #118a2c;
    color: #fff;
    border: none;
    padding: 8px 22px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
}

.show-more-btn:hover {
    background: #0c6b22;
}

.blog-item.hidden {
    display: none;
}
/* Blog Section  */