/* =========================================================
   COMMON INNER PAGE HERO
   Used on: FAQ, Refund Policy, Size Guide, Contact Us, etc.
========================================================= */

.common-inner-hero {
    width: 100%;
    min-height: 230px;

    display: flex;
    align-items: center;

    background: linear-gradient(
        135deg,
        #28878b 0%,
        #1f7074 100%
    );

    position: relative;
    overflow: hidden;
}


/* Subtle decorative effect */
.common-inner-hero::before {
    content: "";
    position: absolute;

    width: 300px;
    height: 300px;

    top: -180px;
    right: -80px;

    border-radius: 50%;

    background: rgba(255, 255, 255, 0.08);
}


.common-inner-hero::after {
    content: "";
    position: absolute;

    width: 220px;
    height: 220px;

    bottom: -150px;
    left: -60px;

    border-radius: 50%;

    background: rgba(255, 255, 255, 0.05);
}


.common-inner-hero-content {
    position: relative;
    z-index: 2;

    width: 100%;

    display: flex;
    align-items: center;
    justify-content: center;

    text-align: center;
}


.common-inner-hero-title {
    margin: 0;

    color: #fff;

    font-family: inherit;

    font-size: 40px;
    font-weight: 500;

    line-height: 1.2;
}


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

@media (max-width: 767px) {

    .common-inner-hero {
        min-height: 180px;
    }

    .common-inner-hero-title {
        font-size: 30px;
    }

}
