

/* =========================================================
   COMPONENT RESET
   ========================================================= */

.cacar-blog-hero,
.cacar-blog-hero *,
.cacar-blog-hero *::before,
.cacar-blog-hero *::after{
    box-sizing:border-box;
}


/* =========================================================
   MAIN SECTION
   ========================================================= */

.cacar-blog-hero{
    width:100%;
    margin:0;
    padding:0;
    background:#ffffff;
    color:#151515;
    overflow:hidden;

    font-family:
        Arial,
        Helvetica,
        sans-serif;
}


/* =========================================================
   OUTER

   IMPORTANT:
   Remove the old 32px desktop padding.

   Hero now aligns with the Blog content area
   and horizontal rule below.
   ========================================================= */

.cacar-blog-hero__outer{
    width:100%;
    max-width:1440px;
    margin:0 auto;
    padding:0;
    background:#ffffff;
}


/* =========================================================
   HERO FRAME
   ========================================================= */

.cacar-blog-hero__frame{
    display:grid;

    grid-template-columns:
        minmax(0,42%)
        minmax(0,58%);

    width:100%;
    min-height:520px;
    margin:0;
    padding:0;

    background:#ffffff;

    overflow:hidden;
}


/* =========================================================
   LEFT CONTENT
   ========================================================= */

.cacar-blog-hero__content{
    display:flex;
    align-items:center;

    min-width:0;

    padding:
        60px
        54px
        56px
        62px;

    background:#fbfaf8;
}


.cacar-blog-hero__content-inner{
    width:100%;
    max-width:500px;
}


/* =========================================================
   EYEBROW
   ========================================================= */

.cacar-blog-hero__eyebrow{
    margin:
        0
        0
        22px;

    padding:0;

    font-size:12px;
    line-height:1.4;
    font-weight:500;
    letter-spacing:4px;

    text-transform:uppercase;

    color:#343434;
}


/* =========================================================
   H1
   ========================================================= */

.cacar-blog-hero__title{
    max-width:500px;

    margin:0;
    padding:0;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size:48px;
    line-height:1.03;
    font-weight:400;
    letter-spacing:-1.6px;

    color:#111111;
}


/* =========================================================
   DIVIDER
   ========================================================= */

.cacar-blog-hero__divider{
    display:block;

    width:44px;
    height:1px;

    margin:
        28px
        0
        24px;

    background:#a99d90;
}


/* =========================================================
   DESCRIPTION
   ========================================================= */

.cacar-blog-hero__description{
    max-width:445px;

    margin:0;
    padding:0;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size:17px;
    line-height:1.48;
    font-weight:400;

    color:#5e5a55;
}


/* =========================================================
   SIGNATURE
   ========================================================= */

.cacar-blog-hero__signature{
    display:flex;

    align-items:center;

    gap:16px;

    margin-top:42px;
}


.cacar-blog-hero__signature-line{
    display:block;

    flex:0 0 58px;

    width:58px;
    height:1px;

    background:#aaa59e;
}


.cacar-blog-hero__signature-text{
    margin:0;
    padding:0;

    font-size:9px;
    line-height:1.4;
    font-weight:500;
    letter-spacing:2.5px;

    text-transform:uppercase;

    color:#707070;
}


/* =========================================================
   RIGHT IMAGE
   ========================================================= */

.cacar-blog-hero__media{
    position:relative;

    min-width:0;
    min-height:520px;

    margin:0;
    padding:0;

    background:#ffffff;

    overflow:hidden;
}


.cacar-blog-hero__media img{
    display:block;

    width:100%;
    height:100%;
    min-height:520px;

    margin:0;
    padding:0;

    border:0;

    object-fit:cover;
    object-position:center center;
}


/* =========================================================
   CATEGORY BAR
   ========================================================= */

.cacar-blog-hero__categories{
    display:grid;

    grid-template-columns:
        repeat(4,minmax(0,1fr));

    width:100%;
    height:98px;

    margin:0;
    padding:0;

    background:#ffffff;

    border-top:1px solid #e9e7e2;
    border-bottom:1px solid #eeeeeb;
}


/* =========================================================
   CATEGORY ITEM
   ========================================================= */

.cacar-blog-hero__category{
    position:relative;

    display:flex;

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

    min-width:0;

    margin:0;

    padding:
        20px
        22px;

    background:#ffffff;

    text-align:center;

    text-decoration:none !important;

    color:#171717;

    transition:
        background-color .22s ease,
        color .22s ease;
}


/* =========================================================
   CATEGORY DIVIDERS
   ========================================================= */

.cacar-blog-hero__category:not(:last-child)::after{
    content:"";

    position:absolute;

    top:25px;
    right:0;
    bottom:25px;

    width:1px;

    background:#d9d6d0;
}


/* =========================================================
   CATEGORY TITLE
   ========================================================= */

.cacar-blog-hero__category-title{
    display:block;

    margin:0;
    padding:0;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size:17px;
    line-height:1.3;
    font-weight:400;

    color:#181818;
}


/* =========================================================
   HOVER
   ========================================================= */

@media (hover:hover){

    .cacar-blog-hero__category:hover{
        background:#faf9f6;
    }

}


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

@media (max-width:1100px){

    .cacar-blog-hero__outer{
        width:100%;
        max-width:100%;
        padding:0;
    }


    .cacar-blog-hero__frame{
        grid-template-columns:
            minmax(0,45%)
            minmax(0,55%);

        min-height:470px;
    }


    .cacar-blog-hero__content{
        padding:
            48px
            36px
            46px;
    }


    .cacar-blog-hero__title{
        font-size:42px;
        line-height:1.04;
    }


    .cacar-blog-hero__description{
        font-size:16px;
    }


    .cacar-blog-hero__media,
    .cacar-blog-hero__media img{
        min-height:470px;
    }


    .cacar-blog-hero__categories{
        height:90px;
    }


    .cacar-blog-hero__category{
        padding:
            18px
            14px;
    }


    .cacar-blog-hero__category-title{
        font-size:15px;
    }

}


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

@media (max-width:767px){

    .cacar-blog-hero{
        overflow:hidden;
    }


    .cacar-blog-hero__outer{
        width:100%;
        max-width:none;

        padding:0;

        background:#ffffff;
    }


    /* HERO STACK */

    .cacar-blog-hero__frame{
        display:flex;

        flex-direction:column;

        width:100%;
        min-height:0;

        background:#ffffff;
    }


    /* COPY */

    .cacar-blog-hero__content{
        width:100%;

        padding:
            42px
            24px
            38px;

        order:1;
    }


    .cacar-blog-hero__content-inner{
        max-width:none;
    }


    .cacar-blog-hero__eyebrow{
        margin-bottom:18px;

        font-size:10px;

        letter-spacing:3px;
    }


    .cacar-blog-hero__title{
        max-width:none;

        font-size:38px;

        line-height:1.04;

        letter-spacing:-1.2px;
    }


    .cacar-blog-hero__divider{
        width:40px;

        margin:
            24px
            0
            21px;
    }


    .cacar-blog-hero__description{
        max-width:none;

        font-size:16px;

        line-height:1.52;
    }


    .cacar-blog-hero__signature{
        margin-top:32px;

        gap:13px;
    }


    .cacar-blog-hero__signature-line{
        flex-basis:44px;

        width:44px;
    }


    .cacar-blog-hero__signature-text{
        font-size:8px;

        letter-spacing:2px;
    }


    /* IMAGE */

    .cacar-blog-hero__media{
        width:100%;

        min-height:0;

        aspect-ratio:16 / 10;

        order:2;
    }


    .cacar-blog-hero__media img{
        width:100%;
        height:100%;

        min-height:0;

        object-fit:cover;

        object-position:center center;
    }


    /* =====================================================
       CATEGORIES 2 × 2
       ===================================================== */

    .cacar-blog-hero__categories{
        grid-template-columns:
            repeat(2,minmax(0,1fr));

        height:auto;

        background:#ffffff;
    }


    .cacar-blog-hero__category{
        min-height:74px;

        padding:
            18px
            14px;
    }


    .cacar-blog-hero__category:not(:last-child)::after{
        display:none;
    }


    .cacar-blog-hero__category:nth-child(odd){
        border-right:1px solid #dedbd5;
    }


    .cacar-blog-hero__category:nth-child(-n+2){
        border-bottom:1px solid #dedbd5;
    }


    .cacar-blog-hero__category-title{
        font-size:15px;

        line-height:1.3;
    }

}


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

@media (max-width:420px){

    .cacar-blog-hero__content{
        padding:
            36px
            20px
            34px;
    }


    .cacar-blog-hero__title{
        font-size:34px;
    }


    .cacar-blog-hero__description{
        font-size:15px;
    }


    .cacar-blog-hero__category{
        min-height:70px;

        padding:
            16px
            10px;
    }


    .cacar-blog-hero__category-title{
        font-size:14px;
    }

}

