/* =====================================================
   Reusable CCV: hero photo + full-width yellow content block
   ===================================================== */

/* Hero */
.ccv-hero-photo{
    /* Full-bleed header (break out of any max-width container) */
    width: 100vw;
    max-width: 100vw;
    height: 360px; /* desktop */
    overflow: hidden;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}

@media (min-width: 1400px){
    .ccv-hero-photo{ height: 480px; } /* 2K / large screens */
}
.ccv-hero-photo__img{
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
    background-color: rgba(0,0,0,.06);
}

/* Section wrapper */
.ccv-split-yellow{
    background: #e7cf58; /* warm yellow like screenshot */
}

/* Grid container */
.ccv-split-yellow__container{
    max-width: 1180px;
    margin: 0 auto;
    padding: 54px 22px 46px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 64px;
    row-gap: 34px;
    align-items: start;
}

/* Big title */
.ccv-split-yellow__title{
    margin: 0 0 18px;
    line-height: 1.05;
    font-weight: 800;
    color: #1f1f1f;
    text-wrap: balance;
    font-size: clamp(38px, 4.2vw + 10px, 72px);
    letter-spacing: -0.02em;
}

/* Copy */
.ccv-split-yellow p{
    margin: 0 0 14px;
    color: rgba(0,0,0,.78);
    line-height: 1.65;
}

/* Right-column block titles */
.ccv-split-yellow__block-title{
    margin: 6px 0 12px;
    font-weight: 800;
    letter-spacing: .01em;
    color: rgba(0,0,0,.92);
    line-height: 1.2;
    display: block;
    padding: 0;
    background: transparent;
    border-radius: 0;
    width: fit-content;
    border-bottom: 3px solid rgba(0,0,0,.18);
    padding-bottom: 6px;
}

.ccv-split-yellow__block{
    margin-bottom: 26px;
}
.ccv-split-yellow__block:last-child{
    margin-bottom: 0;
}

/* Responsive */
@media (max-width: 991.98px){
    .ccv-hero-photo{ height: 260px; }
    .ccv-split-yellow__container{
        grid-template-columns: 1fr;
        padding: 44px 18px 40px;
    }
}
@media (max-width: 575.98px){
    .ccv-hero-photo{ height: 230px; }
    .ccv-split-yellow__container{ padding: 38px 16px 34px; }
}