@charset "utf-8";
/* CSS Document */



.blog-hero {
    width: 100%;
    background: #ffffff;
    padding: 45px 20px 60px;
}

.blog-hero-container {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    text-align: center;
}

/* Category */

.blog-category {
    display: inline-block;
    margin-bottom: 18px;
    padding: 7px 16px;

    font-family: "Montserrat", Arial, sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;

    color: #0050c8;
    background: #f1f6ff;

    border-radius: 30px;
}

/* Main Heading */

.blog-title {
    max-width: 1050px;
    margin: 0 auto 22px;

    font-family: "Montserrat", Arial, sans-serif;
    font-size: clamp(32px, 4.2vw, 58px);
    line-height: 1.12;
    font-weight: 800;

    color: #5f6368;

    letter-spacing: -1.2px;
}

.blog-title span {
    display: block;
}

/* Introduction */

.blog-intro {
    max-width: 850px;
    margin: 0 auto 38px;

    font-family: "Montserrat", Arial, sans-serif;
    font-size: 18px;
    line-height: 1.65;
    font-weight: 400;

    color: #666666;
}

/* Hero Image */

.blog-hero-image {
    width: 100%;
    margin: 0 auto;

    overflow: hidden;

    border-radius: 14px;

    background: #f5f5f5;

    box-shadow:
        0 10px 35px rgba(0, 0, 0, 0.08);
}

.blog-hero-image img {
    display: block;

    width: 100%;
    height: auto;

    aspect-ratio: 16 / 7;
    object-fit: cover;

    transition: transform 0.5s ease;
}

/* Subtle hover effect */

.blog-hero-image:hover img {
    transform: scale(1.015);
}


/* =========================
   TABLET
========================= */

@media (max-width: 991px) {

    .blog-hero {
        padding: 40px 20px 50px;
    }

    .blog-title {
        font-size: clamp(32px, 5vw, 48px);
    }

    .blog-intro {
        font-size: 17px;
        max-width: 760px;
    }

}


/* =========================
   MOBILE
========================= */

@media (max-width: 767px) {

    .blog-hero {
        padding: 30px 15px 40px;
    }

    .blog-category {
        font-size: 10px;
        padding: 6px 13px;
        margin-bottom: 14px;
    }

    .blog-title {
        font-size: 30px;
        line-height: 1.18;
        letter-spacing: -0.5px;
        margin-bottom: 18px;
    }

    .blog-title span {
        display: inline;
    }

    .blog-intro {
        font-size: 15px;
        line-height: 1.6;
        margin-bottom: 28px;
    }

    .blog-hero-image {
        border-radius: 10px;
    }

    .blog-hero-image img {
        aspect-ratio: 16 / 9;
    }

}


/* =========================
   SMALL MOBILE
========================= */

@media (max-width: 480px) {

    .blog-hero {
        padding: 25px 12px 35px;
    }

    .blog-title {
        font-size: 27px;
    }

    .blog-intro {
        font-size: 14px;
    }

}

/* =====================================================
   KHALEEJ PACK BLOG HERO
===================================================== */

.kp-blog-hero {
    width: 100%;
    padding: 55px 20px 70px;
    background: #ffffff;
}

.kp-blog-hero-inner {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
}


/* =====================================================
   TEXT AREA
===================================================== */

.kp-blog-hero-content {
    max-width: 1000px;
    margin: 0 auto 38px;
    text-align: center;
}


/* Category */

.kp-blog-label {
    display: inline-block;

    margin-bottom: 18px;
    padding: 8px 18px;

    background: #f1f6ff;
    color: #0754c7;

    border-radius: 30px;

    font-family: "Montserrat", Arial, sans-serif;
    font-size: 11px;
    font-weight: 700;

    letter-spacing: 1.4px;
    text-transform: uppercase;
}


/* Main Heading */

.kp-blog-hero h1 {
    max-width: 980px;

    margin: 0 auto 20px;

    font-family: "Montserrat", Arial, sans-serif;

    font-size: clamp(34px, 4.2vw, 58px);
    line-height: 1.12;

    font-weight: 800;

    color: #555b61;

    letter-spacing: -1.5px;
}


/* Intro */

.kp-blog-hero p {
    max-width: 850px;

    margin: 0 auto;

    font-family: "Montserrat", Arial, sans-serif;

    font-size: 17px;
    line-height: 1.7;

    font-weight: 400;

    color: #666d73;
}


/* =====================================================
   HERO IMAGE
===================================================== */

.kp-blog-hero-image {
    width: 100%;

    overflow: hidden;

    border-radius: 16px;

    background: #f4f5f6;

    box-shadow:
        0 15px 45px rgba(0, 0, 0, 0.10);

    position: relative;
}


/* Blue accent line */

.kp-blog-hero-image::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 5px;

    background: #0754c7;

    z-index: 2;
}


.kp-blog-hero-image img {
    display: block;

    width: 100%;
    height: auto;

    aspect-ratio: 16 / 7;

    object-fit: cover;

    transition: transform 0.5s ease;
}


/* Small image movement */

.kp-blog-hero-image:hover img {
    transform: scale(1.015);
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 991px) {

    .kp-blog-hero {
        padding: 45px 20px 55px;
    }

    .kp-blog-hero-content {
        margin-bottom: 30px;
    }

    .kp-blog-hero h1 {
        font-size: 42px;
    }

    .kp-blog-hero p {
        font-size: 16px;
    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 767px) {

    .kp-blog-hero {
        padding: 35px 15px 45px;
    }

    .kp-blog-label {
        font-size: 10px;
        padding: 7px 14px;
        margin-bottom: 14px;
    }

    .kp-blog-hero h1 {
        font-size: 30px;
        line-height: 1.18;
        letter-spacing: -0.5px;
        margin-bottom: 16px;
    }

    .kp-blog-hero p {
        font-size: 14px;
        line-height: 1.65;
    }

    .kp-blog-hero-content {
        margin-bottom: 25px;
    }

    .kp-blog-hero-image {
        border-radius: 10px;
    }

    .kp-blog-hero-image img {
        aspect-ratio: 16 / 9;
    }

}


/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 480px) {

    .kp-blog-hero {
        padding: 28px 12px 40px;
    }

    .kp-blog-hero h1 {
        font-size: 27px;
    }

    .kp-blog-hero p {
        font-size: 13.5px;
    }

}