/* ========================== HERO SECTION ========================== */
.blog-hero {
    background: #174f81;
    padding: 25px 15px;
}

.hero-content {
    max-width: 850px;
    margin: auto;
}

.hero-subtitle {
    color: #ffd400;
    font-size: 42px;
    font-weight: 700;
    line-height: 1;
    display: block;
    margin-bottom: 0px;
}

.hero-title {
    color: #fff;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 10px;
}

.hero-desc {
    color: #fff;
    font-size: 18px;
    line-height: 1.5;
    opacity: .95;
    max-width: 900px;
    margin: auto;
}

/* ========================== BLOG CARD ========================== */
.blog-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, .08);
    transition: .35s;
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, .15);
}

.blog-image {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

.blog-body {
    padding: 22px;
}

.blog-category {
    background: #eaf5ff;
    color: #0d6efd;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 30px;
    font-size: 14px;
}

.blog-title {
    margin-top: 18px;
    margin-bottom: 12px;
    line-height: 1.5;
}

.blog-title a {
    color: #222;
    text-decoration: none;
    transition: .3s;
}

.blog-title a:hover {
    color: #174f81;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: #777;
    margin-bottom: 15px;
}

.blog-desc {
    color: #666;
    line-height: 1.8;
    margin-bottom: 22px;
}

.read-btn {
    display: inline-flex;
    align-items: center;
    padding: 5px 20px;
    border-radius: 40px;
    background: #014c75;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: .3s;
}

.read-btn:hover {
    background: #0b5ed7;
    color: #fff;
}

/* ========================== RESPONSIVE ========================== */
@media(max-width:992px) {
    .blog-hero {
        padding: 70px 20px;
    }

    .hero-subtitle {
        font-size: 42px;
    }

    .hero-title {
        font-size: 46px;
    }

    .hero-desc {
        font-size: 19px;
    }
}

@media(max-width:768px) {
    .blog-hero {
        padding: 60px 15px;
    }

    .hero-subtitle {
        font-size: 34px;
    }

    .hero-title {
        font-size: 38px;
    }

    .hero-desc {
        font-size: 17px;
        line-height: 1.7;
    }

    .blog-image {
        height: 220px;
    }
}

@media(max-width:576px) {
    .blog-hero {
        padding: 50px 15px;
    }

    .hero-subtitle {
        font-size: 28px;
    }

    .hero-title {
        font-size: 30px;
    }

    .hero-desc {
        font-size: 15px;
    }

    .blog-image {
        height: 200px;
    }
}