.cbc-csr {
    background: #f5f9ff;
    color: #004079;
    overflow: hidden;
}

.cbc-csr__hero {
    align-items: flex-end;
    background-image: linear-gradient(180deg, rgba(0, 64, 121, .05), rgba(0, 64, 121, .15)), var(--csr-hero);
    background-position: center top;
    background-size: cover;
    display: flex;
    min-height: 450px;
    padding: 0 clamp(18px, 3vw, 44px) 24px;
}

.cbc-csr__hero h1 {
    color: #004079;
    font-size: clamp(42px, 8vw, 92px);
    font-weight: 800;
    letter-spacing: 0;
    line-height: .78;
    margin: 0;
    text-transform: uppercase;
}

.cbc-csr__hero h1 span {
    color: #fff;
    display: block;
    margin-left: 33%;
}

.cbc-csr__programs {
    display: grid;
    gap: 58px;
    margin: 44px auto 96px;
    max-width: 1140px;
    padding: 0 48px;
}

.cbc-csr__program {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    min-height: 210px;
}

.cbc-csr__program-copy {
    align-items: flex-start;
    background: #004079;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 38px 44px;
}

.cbc-csr__program-copy h2 {
    color: #fff;
    font-size: 20px;
    font-weight: 800;
    letter-spacing: 0;
    line-height: 1;
    margin: 0 0 18px;
    text-transform: uppercase;
}

.cbc-csr__program-copy p {
    color: #fff;
    font-size: 11px;
    line-height: 1.7;
    margin: 0 0 28px;
}

.cbc-csr__program-copy a,
.cbc-csr__news-actions a {
    align-items: center;
    border: 1px solid currentColor;
    color: inherit;
    display: inline-flex;
    font-size: 9px;
    font-weight: 800;
    height: 28px;
    justify-content: center;
    min-width: 96px;
    padding: 0 16px;
    text-decoration: none;
    text-transform: uppercase;
}

.cbc-csr__program-copy a span {
    border-bottom: 1px solid currentColor;
    border-right: 1px solid currentColor;
    height: 8px;
    margin-left: 22px;
    transform: rotate(-45deg);
    width: 8px;
}

.cbc-csr__program figure {
    margin: 0;
    min-height: 210px;
    overflow: hidden;
    position: relative;
}

.cbc-csr__program figure img {
    display: block;
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.cbc-csr__program figure a {
    align-items: center;
    border: 1px solid #fff;
    border-radius: 50%;
    color: #fff;
    display: flex;
    font-size: 9px;
    height: 48px;
    justify-content: center;
    position: absolute;
    right: 16px;
    text-decoration: none;
    text-transform: uppercase;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
}

.cbc-csr__program--green,
.cbc-csr__program--next,
.cbc-csr__program--strong {
    margin-left: 7%;
    width: 82%;
}

.cbc-csr__program--green {
    width: 78%;
}

.cbc-csr__program--green figure {
    transform: translate(34px, -34px);
}

.cbc-csr__program--love {
    justify-self: center;
    width: 82%;
}

.cbc-csr__program--love .cbc-csr__program-copy {
    background: #f42f35;
}

.cbc-csr__program--next .cbc-csr__program-copy {
    background: #5fc5eb;
}

.cbc-csr__program--strong .cbc-csr__program-copy {
    background: #fff;
    color: #004079;
}

.cbc-csr__program--strong .cbc-csr__program-copy h2,
.cbc-csr__program--strong .cbc-csr__program-copy p {
    color: #004079;
}

.cbc-csr__news {
    border-top: 1px solid rgba(0, 64, 121, .08);
    margin: 0 auto;
    max-width: 1180px;
    padding: 58px 44px 82px;
}

.cbc-csr__news h2 {
    color: #004079;
    font-size: 34px;
    font-weight: 400;
    letter-spacing: 0;
    line-height: .85;
    margin: 0 0 34px;
    text-transform: uppercase;
}

.cbc-csr__news h2 span {
    display: block;
}

.cbc-csr__news-grid {
    display: grid;
    gap: 22px;
    grid-template-columns: 1.8fr repeat(2, 1fr);
}

.cbc-csr__news img {
    aspect-ratio: 1.5;
    display: block;
    object-fit: cover;
    width: 100%;
}

.cbc-csr__news p {
    color: #004079;
    font-size: 9px;
    font-weight: 800;
    margin: 12px 0 6px;
}

.cbc-csr__news h3 {
    color: #004079;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 0;
    line-height: 1;
    margin: 0;
    text-transform: uppercase;
}

.cbc-csr__news-card h3 {
    font-size: 10px;
}

.cbc-csr__news-actions {
    display: flex;
    justify-content: space-between;
    margin-top: 48px;
}

.cbc-csr__news-actions a {
    color: #004079;
}

@media (max-width: 900px) {
    .cbc-csr__hero {
        min-height: 360px;
    }

    .cbc-csr__programs {
        padding: 0 24px;
    }

    .cbc-csr__program,
    .cbc-csr__program--green,
    .cbc-csr__program--love,
    .cbc-csr__program--next,
    .cbc-csr__program--strong {
        margin-left: 0;
        width: 100%;
    }

    .cbc-csr__program--green figure {
        transform: none;
    }

    .cbc-csr__news-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 560px) {
    .cbc-csr__hero h1 span {
        margin-left: 0;
    }

    .cbc-csr__program {
        grid-template-columns: 1fr;
    }

    .cbc-csr__program--love figure,
    .cbc-csr__program--strong figure {
        order: 2;
    }

    .cbc-csr__news {
        padding-left: 20px;
        padding-right: 20px;
    }

    .cbc-csr__news-grid {
        grid-template-columns: 1fr;
    }
}
