/* ===== DBS TECH INDIA - FULL WIDTH TABS & IMAGE HERO ===== */
/* Coding Standards: BEM methodology, CSS custom properties, mobile-first */

:root {
    --dbs-red: #CC0000;
    --dbs-gray-100: #F8F8F8;
    --dbs-gray-200: #e9ecef;
    --dbs-gray-600: #6c757d;
    --dbs-gray-900: #212529;
    --dbs-white: #ffffff;
    --dbs-black: #000000;
    --dbs-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.15);
    --dbs-border-radius: 0px;
    --dbs-transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Prevent horizontal scroll on html only - body/main must NOT have overflow or sticky breaks */
html {
    overflow-x: clip;
}

body.home,
body.people {
    overflow-x: visible;
}

body.people .people-main,
body.home .people-main {
    max-width: 100%;
    overflow-x: visible;
}

/* ----- UIKit integration: section/container overrides ----- */
.people-hero.uk-section {
    padding-top: 0;
    padding-bottom: 0;
}

.people-section-two.uk-section {
    /* Override UIKit section padding so this block sits flush */
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0;
}

/* People page: keep hero content max-width (shared banner has it commented out) */
body.people .page-hero-banner--banner .page-hero-banner__content {
    max-width: 571px;
}

/* Baked-in headline asset: no dark gradient overlay (shared hero still uses overlay on other pages, e.g. Tech Insights) */
body.people .page-hero-banner--banner .page-hero-banner__overlay {
    display: none;
}

/* Shared page hero: headline is baked into the asset (left-heavy); avoid cropping it on narrow viewports */
body.people .page-hero-banner--banner .page-hero-banner__bg img {
    object-position: left center;
}

@media (max-width: 768px) {
    body.people .page-hero-banner--banner .page-hero-banner__bg img {
        transform: none;
    }
}

/* ===== PEOPLE PAGE HERO BANNER (image + overlay + left-aligned text) ===== */
.people-hero {
    width: 100%;
    padding: 0;
    margin: 0;
    background-color: var(--dbs-gray-900);
    position: relative;
    overflow: hidden;
}

/* Banner variant: full-width image with overlay and text */
.people-hero--banner .people-hero__inner {
    position: relative;
    width: 100%;
    min-height: 294px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.people-hero--banner .people-hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.people-hero--banner .people-hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
}

.people-hero--banner .people-hero__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.15) 100%);
    pointer-events: none;
}

.people-hero--banner .people-hero__content {
    position: relative;
    z-index: 2;
    max-width: 571px;
    padding: 76px 0 76px 76px;
    box-sizing: border-box;
}

.people-hero--banner .people-hero__title {
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 48px;
    line-height: 125%;
    letter-spacing: 0;
    color: #ffffff;
    margin: 0 0 20px 0;
}

.people-hero--banner .people-hero__subhead {
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 23px;
    line-height: 135%;
    letter-spacing: 0;
    color: #ffffff;
    margin: 0;
    opacity: 1;
}

@media (max-width: 1280px) {
    .people-hero--banner .people-hero__inner {
        min-height: 380px;
    }

    .people-hero--banner .people-hero__content {
        padding: 64px 0 64px 64px;
        max-width: 540px;
    }

    .people-hero--banner .people-hero__title {
        font-size: 44px;
        line-height: 125%;
    }

    .people-hero--banner .people-hero__subhead {
        font-size: 21px;
        line-height: 135%;
    }
}

@media (max-width: 992px) {
    .people-hero--banner .people-hero__inner {
        min-height: 340px;
    }

    .people-hero--banner .people-hero__content {
        padding: 56px 0 56px 40px;
        max-width: 85%;
    }

    .people-hero--banner .people-hero__title {
        font-size: 40px;
        margin-bottom: 12px;
        line-height: 125%;
    }

    .people-hero--banner .people-hero__subhead {
        font-size: 19px;
        line-height: 135%;
    }
}

@media (max-width: 768px) {
    .people-hero--banner .people-hero__inner {
        min-height: 320px;
    }

    .people-hero--banner .people-hero__overlay {
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.35) 60%, rgba(0, 0, 0, 0.2) 100%);
    }

    .people-hero--banner .people-hero__content {
        padding: 48px 20px 48px 20px;
        max-width: 100%;
        align-self: flex-end;
    }

    .people-hero--banner .people-hero__title {
        font-size: 34px;
        line-height: 125%;
    }

    .people-hero--banner .people-hero__subhead {
        font-size: 18px;
        line-height: 135%;
    }
}

@media (max-width: 576px) {
    .people-hero--banner .people-hero__inner {
        min-height: 280px;
    }

    .people-hero--banner .people-hero__content {
        padding: 40px 16px 40px 16px;
    }

    .people-hero--banner .people-hero__title {
        font-size: 30px;
        line-height: 125%;
    }

    .people-hero--banner .people-hero__subhead {
        font-size: 17px;
        line-height: 135%;
    }
}

@media (max-width: 480px) {
    .people-hero--banner .people-hero__inner {
        min-height: 260px;
    }

    .people-hero--banner .people-hero__content {
        padding: 32px 12px 32px 12px;
    }

    .people-hero--banner .people-hero__title {
        font-size: 28px;
        line-height: 125%;
    }

    .people-hero--banner .people-hero__subhead {
        font-size: 16px;
        line-height: 135%;
    }
}

@media (max-width: 414px) {
    .people-hero--banner .people-hero__inner {
        min-height: 240px;
    }

    .people-hero--banner .people-hero__content {
        padding: 28px 12px 28px 12px;
    }

    .people-hero--banner .people-hero__title {
        font-size: 26px;
        line-height: 125%;
    }

    .people-hero--banner .people-hero__subhead {
        font-size: 15px;
        line-height: 135%;
    }
}

@media (max-width: 380px) {
    .people-hero--banner .people-hero__inner {
        min-height: 220px;
    }
}

@media (max-width: 360px) {
    .people-hero--banner .people-hero__inner {
        min-height: 200px;
    }

    .people-hero--banner .people-hero__content {
        padding: 24px 10px 24px 10px;
    }

    .people-hero--banner .people-hero__title {
        font-size: 24px;
        line-height: 125%;
    }

    .people-hero--banner .people-hero__subhead {
        font-size: 14px;
        line-height: 135%;
    }
}

@media (max-width: 320px) {
    .people-hero--banner .people-hero__inner {
        min-height: 180px;
    }

    .people-hero--banner .people-hero__content {
        padding: 20px 8px 20px 8px;
    }

    .people-hero--banner .people-hero__title {
        font-size: 22px;
        line-height: 125%;
    }

    .people-hero--banner .people-hero__subhead {
        font-size: 13px;
        line-height: 135%;
    }
}

@media (min-width: 1536px) {
    .people-hero--banner .people-hero__inner {
        min-height: 480px;
    }

    .people-hero--banner .people-hero__content {
        padding: 88px 0 88px 88px;
    }

    .people-hero--banner .people-hero__title {
        font-size: 52px;
        line-height: 125%;
    }

    .people-hero--banner .people-hero__subhead {
        font-size: 24px;
        line-height: 135%;
    }
}

@media (min-width: 1920px) {
    .people-hero--banner .people-hero__inner {
        min-height: 520px;
    }

    .people-hero--banner .people-hero__content {
        padding: 96px 0 96px 96px;
        max-width: 620px;
    }

    .people-hero--banner .people-hero__title {
        font-size: 56px;
        line-height: 125%;
    }

    .people-hero--banner .people-hero__subhead {
        font-size: 25px;
        line-height: 135%;
    }
}

@media (max-width: 992px) and (orientation: landscape) {
    .people-hero--banner .people-hero__inner {
        min-height: 280px;
    }
}

@media (max-width: 768px) and (orientation: landscape) {
    .people-hero--banner .people-hero__inner {
        min-height: 240px;
    }
}

/* ===== HERO (legacy / image-only) ===== */
.people-hero__container {
    width: 100%;
    max-width: 100%;
    padding: 0;
    margin: 0;
}

.people-hero__image-only {
    width: 100%;
    height: 500px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Compact hero (capabilities, people, insights) – height 294px */
.people-hero__image-only--compact {
    height: 294px;
}

@media (max-width: 1280px) {
    .people-hero__image-only--compact {
        height: 270px;
    }
}

@media (max-width: 992px) {
    .people-hero__image-only--compact {
        height: 250px;
    }
}

@media (max-width: 768px) {
    .people-hero__image-only--compact {
        height: 220px;
    }
}

@media (max-width: 576px) {
    .people-hero__image-only--compact {
        height: 200px;
    }
}

@media (max-width: 480px) {
    .people-hero__image-only--compact {
        height: 180px;
    }
}

@media (max-width: 414px) {
    .people-hero__image-only--compact {
        height: 170px;
    }
}

@media (max-width: 380px) {
    .people-hero__image-only--compact {
        height: 160px;
    }
}

@media (max-width: 360px) {
    .people-hero__image-only--compact {
        height: 150px;
    }
}

@media (max-width: 320px) {
    .people-hero__image-only--compact {
        height: 140px;
    }
}

@media (max-width: 992px) and (orientation: landscape) {
    .people-hero__image-only--compact {
        height: 200px;
    }
}

@media (min-width: 1536px) {
    .people-hero__image-only--compact {
        height: 320px;
    }
}

@media (min-width: 1920px) {
    .people-hero__image-only--compact {
        height: 340px;
    }
}

.people-hero__image-only img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.people-hero__placeholder-badge {
    position: absolute;
    bottom: 24px;
    right: 24px;
    background: rgba(0, 0, 0, 0.6);
    color: var(--dbs-white);
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 0.9rem;
    letter-spacing: 1px;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    z-index: 10;
}

/* Hero height responsive – About Us only */
@media (max-width: 992px) {
    .people-hero__image-only:not(.people-hero__image-only--compact) {
        height: 460px;
    }
}

@media (max-width: 768px) {
    .people-hero__image-only:not(.people-hero__image-only--compact) {
        height: 400px;
    }
}

@media (max-width: 576px) {
    .people-hero__image-only:not(.people-hero__image-only--compact) {
        height: 360px;
    }
}

@media (max-width: 480px) {
    .people-hero__image-only:not(.people-hero__image-only--compact) {
        height: 320px;
    }
}

.people-hero__placeholder-badge {
    bottom: 16px;
    right: 16px;
    padding: 6px 16px;
    font-size: 0.75rem;
}

@media (max-width: 380px) {
    .people-hero__image-only:not(.people-hero__image-only--compact) {
        height: 280px;
    }

    .people-hero__placeholder-badge {
        bottom: 12px;
        right: 12px;
        padding: 6px 12px;
        font-size: 0.7rem;
    }
}

/* ===== OUR CAPABILITIES HERO BANNER ===== */
.people-hero-capabilities {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}

.people-hero-capabilities__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
}

.people-hero-capabilities__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0.5) 45%, rgba(0, 0, 0, 0.1) 70%, transparent 100%);
}

.people-hero-capabilities__content {
    position: relative;
    z-index: 1;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px 0 80px;
    width: 100%;
}

.people-hero-capabilities__heading {
    font-family: 'Open Sans', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dbs-white);
    margin: 0 0 12px 0;
    line-height: 1.25;
}

.people-hero-capabilities__subhead {
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--dbs-white);
    margin: 0;
    line-height: 1.4;
}

@media (max-width: 1280px) {
    .people-hero-capabilities__content {
        padding: 0 24px 0 60px;
    }

    .people-hero-capabilities__heading {
        font-size: 2.25rem;
    }

    .people-hero-capabilities__subhead {
        font-size: 1.125rem;
    }
}

@media (max-width: 992px) {
    .people-hero-capabilities__content {
        padding: 0 24px 0 48px;
    }

    .people-hero-capabilities__heading {
        font-size: 2rem;
    }

    .people-hero-capabilities__subhead {
        font-size: 1.0625rem;
    }
}

@media (max-width: 768px) {
    .people-hero-capabilities__bg {
        background-position: center center;
    }

    .people-hero-capabilities__overlay {
        background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.4) 40%, transparent 100%);
    }

    .people-hero-capabilities__content {
        padding: 0 24px 48px;
        align-self: flex-end;
    }

    .people-hero-capabilities__heading {
        font-size: 1.75rem;
        margin-bottom: 8px;
    }

    .people-hero-capabilities__subhead {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .people-hero-capabilities__content {
        padding: 0 20px 40px;
    }

    .people-hero-capabilities__heading {
        font-size: 1.5rem;
    }

    .people-hero-capabilities__subhead {
        font-size: 0.9375rem;
    }
}

@media (max-width: 480px) {
    .people-hero-capabilities__content {
        padding: 0 16px 32px;
    }

    .people-hero-capabilities__heading {
        font-size: 1.375rem;
    }

    .people-hero-capabilities__subhead {
        font-size: 0.875rem;
    }
}

@media (max-width: 414px) {
    .people-hero-capabilities__content {
        padding: 0 16px 28px;
    }

    .people-hero-capabilities__heading {
        font-size: 1.25rem;
    }
}

@media (max-width: 360px) {
    .people-hero-capabilities__content {
        padding: 0 14px 24px;
    }

    .people-hero-capabilities__heading {
        font-size: 1.125rem;
    }

    .people-hero-capabilities__subhead {
        font-size: 0.8125rem;
    }
}

@media (max-width: 320px) {
    .people-hero-capabilities__heading {
        font-size: 1.0625rem;
    }
}

@media (max-width: 768px) and (orientation: landscape) {
    .people-hero-capabilities__content {
        padding: 0 24px;
    }

    .people-hero-capabilities__heading {
        font-size: 1.5rem;
    }

    .people-hero-capabilities__subhead {
        font-size: 0.9375rem;
    }
}

@media (min-width: 1536px) {
    .people-hero-capabilities__content {
        padding: 0 24px 0 100px;
    }

    .people-hero-capabilities__heading {
        font-size: 2.75rem;
    }

    .people-hero-capabilities__subhead {
        font-size: 1.375rem;
    }
}

@media (min-width: 1920px) {
    .people-hero-capabilities__heading {
        font-size: 3rem;
    }

    .people-hero-capabilities__subhead {
        font-size: 1.5rem;
    }
}

/* ===== ABOUT US HERO BANNER SLIDER ===== */
.people-hero__image-only .people-hero-banner {
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
}

.people-hero-banner .swiper-wrapper {
    align-items: stretch;
}

.people-hero-banner .swiper-slide {
    height: auto;
    width: 100%;
}

.people-hero-banner__slide {
    width: 100%;
    height: 100%;
    min-height: 500px;
    position: relative;
    overflow: hidden;
}

.people-hero-banner__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

.people-hero-banner__slide::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0.15) 80%, transparent 100%);
    z-index: 1;
}

.people-hero-banner__left {
    position: relative;
    z-index: 2;
    margin-left: 135px;
    padding: 48px 48px 120px 0;
    max-width: 560px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    min-height: 100%;
}

.people-hero-banner__logo-wrap {
    display: block;
    position: relative;
    width: 167.28px;
    height: 68.15px;
    margin-bottom: 24px;
    opacity: 1;
}

.people-hero-banner__logo-img {
    display: block;
    position: relative;
    width: 167.28px;
    height: 68.15px;
    max-width: 100%;
    object-fit: contain;
    object-position: left top;
    opacity: 1;
    top: -5.17px;
    left: -9.74px;
}

.people-hero-banner__headline {
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    font-size: 48px;
    line-height: 125%;
    letter-spacing: 0;
    color: #FFFFFF;
    margin: 0 0 16px 0;
}

.people-hero-banner__subhead {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 28px 0;
    line-height: 1.5;
}

.people-hero-banner__cta-wrap {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
}

.people-hero-banner__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    background: var(--dbs-red);
    color: var(--dbs-white);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: var(--dbs-transition);
}

.people-hero-banner__cta:hover {
    background: #a30000;
    color: var(--dbs-white);
}

.people-hero-banner__pagination {
    position: absolute;
    bottom: 32px;
    left: 135px;
    z-index: 3;
    display: flex;
    gap: 12px;
    align-items: center;
    padding-top: 20px;
}

.people-hero-banner__pagination-dot {
    width: 24px;
    height: 3px;
    background: rgba(255, 255, 255, 0.35);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: width 0.3s ease, background 0.25s ease;
    flex-shrink: 0;
}

.people-hero-banner__pagination-dot.is-active {
    width: 48px;
    background: var(--dbs-white);
}

@media (max-width: 992px) {
    .people-hero-banner__slide {
        min-height: 460px;
    }

    .people-hero-banner__left {
        margin-left: 100px;
        padding: 40px 24px 110px 0;
        max-width: 480px;
    }

    .people-hero-banner__headline {
        font-size: 40px;
        line-height: 125%;
    }

    .people-hero-banner__logo-wrap {
        width: 130px;
        height: auto;
        margin-bottom: 24px;
    }

    .people-hero-banner__logo-img {
        width: 130px;
        height: auto;
        max-width: 100%;
        top: -4.02px;
        left: -7.57px;
    }

    .people-hero-banner__cta-wrap {
        gap: 16px;
        margin-bottom: 44px;
    }

    .people-hero-banner__cta {
        padding: 13px 28px;
        font-size: 0.9375rem;
    }

    .people-hero-banner__pagination {
        left: 100px;
        bottom: 32px;
        padding-top: 20px;
    }
}

@media (max-width: 768px) {
    .people-hero-banner__left {
        margin-left: 72px;
        padding: 36px 20px 120px 0;
        justify-content: flex-start;
    }

    .people-hero-banner__pagination {
        left: 72px;
        bottom: 32px;
        padding-top: 24px;
    }

    .people-hero-banner__logo-wrap {
        width: 115px;
        height: auto;
        margin-bottom: 22px;
    }

    .people-hero-banner__logo-img {
        width: 115px;
        height: auto;
        max-width: 100%;
        top: -3.56px;
        left: -6.69px;
    }

    .people-hero-banner__cta-wrap {
        gap: 14px;
        margin-bottom: 48px;
    }

    .people-hero-banner__cta {
        padding: 12px 26px;
        font-size: 0.9375rem;
    }

    .people-hero-banner__headline {
        font-size: 36px;
        line-height: 125%;
    }
}

@media (max-width: 576px) {
    .people-hero-banner__slide {
        min-height: 360px;
    }

    .people-hero-banner__left {
        margin-left: 56px;
        padding: 32px 20px 140px 0;
        max-width: 100%;
        justify-content: flex-start;
    }

    .people-hero-banner__pagination {
        left: 56px;
        bottom: 40px;
        padding-top: 28px;
    }

    .people-hero-banner__logo-wrap {
        width: 100px;
        height: auto;
        margin-bottom: 20px;
    }

    .people-hero-banner__logo-img {
        width: 100px;
        height: auto;
        max-width: 100%;
        top: -3.09px;
        left: -5.82px;
    }

    .people-hero-banner__headline {
        font-size: 28px;
        line-height: 125%;
    }

    .people-hero-banner__subhead {
        font-size: 1rem;
    }

    .people-hero-banner__cta-wrap {
        gap: 12px;
        margin-bottom: 72px;
    }

    .people-hero-banner__cta {
        padding: 12px 24px;
        font-size: 0.9375rem;
    }

    .people-hero-banner__pagination-dot {
        width: 20px;
    }

    .people-hero-banner__pagination-dot.is-active {
        width: 40px;
    }
}

@media (max-width: 480px) {
    .people-hero-banner__slide {
        min-height: 320px;
    }

    .people-hero-banner__left {
        margin-left: 40px;
        padding: 28px 16px 130px 0;
        justify-content: flex-start;
    }

    .people-hero-banner__pagination {
        left: 40px;
        bottom: 36px;
        padding-top: 28px;
    }

    .people-hero-banner__headline {
        font-size: 26px;
        line-height: 125%;
    }

    .people-hero-banner__logo-wrap {
        width: 90px;
        height: auto;
        margin-bottom: 18px;
    }

    .people-hero-banner__logo-img {
        width: 90px;
        height: auto;
        max-width: 100%;
        top: -2.78px;
        left: -5.24px;
    }

    .people-hero-banner__cta-wrap {
        gap: 10px;
        margin-bottom: 80px;
    }

    .people-hero-banner__cta {
        padding: 11px 22px;
        font-size: 0.875rem;
    }
}

@media (max-width: 380px) {
    .people-hero-banner__slide {
        min-height: 280px;
    }

    .people-hero-banner__left {
        margin-left: 24px;
        padding: 24px 16px 120px 0;
        justify-content: flex-start;
    }

    .people-hero-banner__logo-wrap {
        width: 80px;
        height: auto;
        margin-bottom: 16px;
    }

    .people-hero-banner__pagination {
        left: 24px;
        bottom: 32px;
        padding-top: 32px;
    }

    .people-hero-banner__logo-img {
        width: 80px;
        height: auto;
        max-width: 100%;
        top: -2.47px;
        left: -4.66px;
    }

    .people-hero-banner__headline {
        font-size: 24px;
        line-height: 125%;
    }

    .people-hero-banner__subhead {
        font-size: 0.9375rem;
    }

    .people-hero-banner__cta-wrap {
        gap: 8px;
        margin-bottom: 88px;
    }

    .people-hero-banner__cta {
        padding: 10px 20px;
        font-size: 0.875rem;
        min-height: 44px;
    }

    .people-hero-banner__pagination-dot {
        width: 18px;
    }

    .people-hero-banner__pagination-dot.is-active {
        width: 36px;
    }
}

/* ===== ABOUT US SECTION - SCREENSHOT DESIGN ===== */
.people-about {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    padding-top: 60px;
    padding-bottom: 60px;
}

.people-about__content {
    padding-right: 20px;
}

.people-about__title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dbs-red);
    margin-bottom: 24px;
    line-height: 1.2;
}

/* Body paragraphs (DBS Tech India / Our mission...) – Open Sans Regular */
.people-about__text {
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0;
    color: #171717;
    margin-bottom: 24px;
}

.people-about__text p {
    margin-bottom: 20px;
}

/* Lead sentence: "Through innovation and customer focus..." – Open Sans Semibold */
.people-about__lead {
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    font-style: normal;
    font-size: 32px;
    line-height: 44px;
    letter-spacing: 0;
    color: #171717;
    margin-bottom: 20px;
}

.people-about__highlight {
    font-weight: 600;
    color: var(--dbs-gray-900);
    background: linear-gradient(120deg, rgba(204, 0, 0, 0.06) 0%, rgba(204, 0, 0, 0.06) 40%, transparent 80%);
    padding: 2px 8px;
}

.people-about__image {
    position: relative;
    background-color: var(--dbs-gray-900);
    height: 500px;
    display: flex;
    border-radius: 4px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--dbs-white);
    box-shadow: var(--dbs-shadow);
    overflow: hidden;
}

.people-about__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.people-about__image:hover img {
    transform: scale(1.05);
}

/* ===== MISSION & VISION SECTION (Full Width) ===== */
/* Background image via CSS var; blurred layer + dark overlay to match reference */
.people-mission-vision {
    --mv-bg: url('public/images/people/mission-vision-bg.png');
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    margin-bottom: 0;
    position: relative;
    min-height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Background image layer (no blur) */
.people-mission-vision::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: var(--mv-bg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

/* Dark semi-transparent overlay for contrast and readability */
.people-mission-vision__inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 100px 64px 100px;
    gap: 80px;
    box-sizing: border-box;
    align-items: start;
}

.people-mission-vision__col {
    max-width: 520px;
    padding: 0;
    text-align: left;
}

.people-mission-vision__heading {
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 20px;
    line-height: 36px;
    letter-spacing: 0;
    vertical-align: middle;
    text-transform: uppercase;
    color: #cc0000;
    margin: 0 0 16px 0;
}

.people-mission-vision__text {
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 23px;
    line-height: 135%;
    letter-spacing: 0;
    color: #ffffff;
    margin: 0;
}

@media (max-width: 992px) {
    .people-mission-vision {
        min-height: auto;
    }

    .people-mission-vision__inner {
        grid-template-columns: 1fr;
        padding: 64px 24px 80px;
        gap: 40px;
    }

    .people-mission-vision__col {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .people-mission-vision {
        min-height: 360px;
    }

    .people-mission-vision__inner {
        padding: 48px 20px 64px;
        gap: 32px;
    }

    .people-mission-vision__heading {
        font-size: 18px;
        line-height: 32px;
    }

    .people-mission-vision__text {
        font-size: 21px;
        line-height: 135%;
    }
}

@media (max-width: 576px) {
    .people-mission-vision {
        min-height: 340px;
    }

    .people-mission-vision__inner {
        padding: 44px 20px 56px;
        gap: 28px;
    }

    .people-mission-vision__heading {
        font-size: 18px;
        line-height: 30px;
    }

    .people-mission-vision__text {
        font-size: 20px;
        line-height: 135%;
    }
}

@media (max-width: 480px) {
    .people-mission-vision {
        min-height: 320px;
    }

    .people-mission-vision__inner {
        padding: 40px 16px 56px;
        gap: 28px;
    }

    .people-mission-vision__heading {
        font-size: 17px;
        line-height: 28px;
    }

    .people-mission-vision__text {
        font-size: 18px;
        line-height: 135%;
    }
}

@media (max-width: 380px) {
    .people-mission-vision {
        min-height: 300px;
    }

    .people-mission-vision__inner {
        padding: 36px 14px 48px;
        gap: 24px;
    }

    .people-mission-vision__heading {
        font-size: 16px;
        line-height: 26px;
    }

    .people-mission-vision__text {
        font-size: 16px;
        line-height: 135%;
    }
}

/* ===== OUR JOURNEY THROUGHOUT THE YEARS (Timeline) ===== */
.people-journey {
    width: 100%;
    padding: 60px 0;
    background-color: var(--dbs-white);
    box-sizing: border-box;
}

.people-journey__inner {
    width: 100%;
    max-width: 1288px;
    margin: 0 auto;
    padding: 0;
    box-sizing: border-box;
}

.people-journey__title {
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    font-style: normal;
    font-size: 32px;
    line-height: 44px;
    letter-spacing: 0;
    color: #171717;
    margin: 0 0 40px 0;
    text-align: left;
}

.people-journey__timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0 32px;
    align-items: start;
}

.people-journey__item {
    position: relative;
    padding-right: 32px;
    border-right: 1px solid var(--dbs-red);
    min-width: 0;
    box-sizing: border-box;
}

.people-journey__item:first-child {
    border-left: 1px solid var(--dbs-red);
    padding-left: 32px;
}

.people-journey__item:last-child {
    border-right: none;
    padding-right: 0;
}

.people-journey__period {
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    font-style: normal;
    font-size: 32px;
    line-height: 40px;
    letter-spacing: 0;
    color: #cc0000;
    margin: 0 0 12px 0;
}

.people-journey__content {
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0;
    color: #000000;
    margin: 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.people-journey__content p {
    margin: 0;
}

.people-journey__content ul {
    margin: 0;
    padding-left: 1.25em;
    list-style-type: disc;
}

.people-journey__content li {
    margin-bottom: 6px;
}

.people-journey__content li:last-child {
    margin-bottom: 0;
}

@media (max-width: 992px) {
    .people-journey {
        padding: 56px 0;
    }

    .people-journey__inner {
        padding: 0 24px;
    }

    .people-journey__title {
        font-size: 28px;
        line-height: 38px;
        margin-bottom: 36px;
    }

    .people-journey__timeline {
        grid-template-columns: repeat(2, 1fr);
        gap: 0 24px;
        align-items: start;
    }

    .people-journey__item {
        padding-right: 24px;
    }

    .people-journey__item:nth-child(2n+1) {
        border-left: 2px solid var(--dbs-red);
        padding-left: 24px;
    }

    .people-journey__item:first-child {
        padding-left: 24px;
    }

    .people-journey__item:nth-child(2n) {
        border-right: none;
        padding-right: 0;
        padding-left: 0;
    }

    .people-journey__period {
        font-size: 28px;
        line-height: 36px;
        margin-bottom: 10px;
    }

    .people-journey__content {
        font-size: 15px;
        line-height: 22px;
    }
}

@media (max-width: 768px) {
    .people-journey {
        padding: 48px 0;
    }

    .people-journey__inner {
        padding: 0 20px;
    }

    .people-journey__title {
        font-size: 26px;
        line-height: 36px;
        margin-bottom: 32px;
    }

    .people-journey__timeline {
        gap: 0 20px;
    }

    .people-journey__item {
        padding-right: 20px;
    }

    .people-journey__item:nth-child(2n+1),
    .people-journey__item:first-child {
        padding-left: 20px;
    }

    .people-journey__period {
        font-size: 26px;
        line-height: 34px;
        margin-bottom: 8px;
    }

    .people-journey__content {
        font-size: 15px;
        line-height: 22px;
    }

    .people-journey__content ul {
        padding-left: 1.1em;
    }

    .people-journey__content li {
        margin-bottom: 4px;
    }
}

@media (max-width: 576px) {
    .people-journey {
        padding: 44px 0;
    }

    .people-journey__inner {
        padding: 0 20px;
    }

    .people-journey__title {
        font-size: 24px;
        line-height: 32px;
        margin-bottom: 28px;
    }

    .people-journey__timeline {
        grid-template-columns: 1fr;
        gap: 0;
        align-items: stretch;
    }

    /* Single column: no side borders on any item (override 992px nth-child) */
    .people-journey__item,
    .people-journey__item:nth-child(2n+1),
    .people-journey__item:nth-child(2n),
    .people-journey__item:first-child,
    .people-journey__item:last-child {
        border-left: none;
        border-right: none;
        padding-left: 0;
        padding-right: 0;
    }

    .people-journey__item {
        border-bottom: 2px solid var(--dbs-red);
        padding-bottom: 24px;
        min-height: 0;
    }

    .people-journey__item:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }

    .people-journey__period {
        font-size: 24px;
        line-height: 32px;
        margin-bottom: 8px;
    }

    .people-journey__content {
        font-size: 14px;
        line-height: 21px;
    }
}

@media (max-width: 480px) {
    .people-journey {
        padding: 40px 0;
    }

    .people-journey__inner {
        padding: 0 16px;
    }

    .people-journey__title {
        font-size: 22px;
        line-height: 30px;
        margin-bottom: 24px;
    }

    .people-journey__item {
        padding-bottom: 20px;
    }

    .people-journey__item:last-child {
        padding-bottom: 0;
    }

    .people-journey__period {
        font-size: 22px;
        line-height: 28px;
        margin-bottom: 6px;
    }

    .people-journey__content {
        font-size: 14px;
        line-height: 21px;
    }

    .people-journey__content ul {
        padding-left: 1em;
    }
}

@media (max-width: 380px) {
    .people-journey {
        padding: 32px 0;
    }

    .people-journey__inner {
        padding: 0 12px;
    }

    .people-journey__title {
        font-size: 20px;
        line-height: 28px;
        margin-bottom: 20px;
    }

    .people-journey__item {
        padding-bottom: 18px;
    }

    .people-journey__period {
        font-size: 20px;
        line-height: 26px;
    }

    .people-journey__content {
        font-size: 13px;
        line-height: 20px;
    }
}

/* ===== MANAGEMENT TEAM (Carousel) – Full width BG ===== */
.people-mgmt {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding: 72px 0 80px;
    background-color: var(--dbs-gray-100);
    box-sizing: border-box;
}

.people-mgmt__inner {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    box-sizing: border-box;
}

.people-mgmt__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 32px;
    gap: 16px;
}

.people-mgmt__title {
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    font-style: normal;
    font-size: 32px;
    line-height: 44px;
    letter-spacing: 0;
    color: #171717;
    margin: 0;
}

.people-mgmt__nav {
    display: flex;
    align-items: center;
    gap: 12px;
}

.people-mgmt__btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--dbs-gray-600);
    background: var(--dbs-white);
    color: var(--dbs-gray-900);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: var(--dbs-transition);
}

.people-mgmt__btn:hover {
    background: var(--dbs-gray-200);
    border-color: var(--dbs-gray-900);
}

.people-mgmt__btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.people-mgmt__btn svg {
    width: 20px;
    height: 20px;
}

.people-mgmt__slider {
    overflow: hidden;
    margin-bottom: 24px;
}

.people-mgmt__slider .swiper-wrapper {
    align-items: stretch;
}

.people-mgmt__slider .swiper-slide {
    height: auto;
}

.people-mgmt__card {
    background: var(--dbs-white);
    border-radius: 8px;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--dbs-gray-200);
}

.people-mgmt__card-img-wrap {
    position: relative;
    width: 100%;
    padding-bottom: 120%;
    background: var(--dbs-gray-200);
    overflow: hidden;
}

.people-mgmt__card-img-wrap img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.people-mgmt__card-img-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--dbs-gray-900);
    text-align: center;
}

.people-mgmt__card-deco {
    position: absolute;
    bottom: 12px;
    right: 12px;
    width: 40px;
    height: 40px;
    opacity: 0.35;
    pointer-events: none;
}

.people-mgmt__card-deco svg {
    width: 100%;
    height: 100%;
    fill: rgba(255, 255, 255, 0.8);
}

.people-mgmt__card-body {
    padding: 20px 16px 24px;
    flex: 1;
}

.people-mgmt__card-name {
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 30px;
    letter-spacing: 0;
    color: #171717;
    margin: 0 0 6px 0;
}

.people-mgmt__card-title {
    font-size: 0.875rem;
    font-weight: 400;
    color: var(--dbs-gray-900);
    margin: 0;
    line-height: 1.5;
}

.people-mgmt__pagination {
    display: flex;
    align-items: center;
    gap: 0.25em;
    font-size: 0.9375rem;
    font-weight: 400;
    margin-top: 24px;
    text-align: left;
}

.people-mgmt__pagination-current {
    color: var(--dbs-gray-900);
    font-variant-numeric: tabular-nums;
}

.people-mgmt__pagination-sep {
    color: var(--dbs-gray-900);
    margin: 0 0.2em;
    font-weight: 400;
}

.people-mgmt__pagination-total {
    color: var(--dbs-gray-600);
    font-variant-numeric: tabular-nums;
}

@media (max-width: 1280px) {
    .people-mgmt__pagination {
        margin-top: 20px;
        font-size: 0.9375rem;
    }
}

@media (max-width: 992px) {
    .people-mgmt__card-name {
        font-size: 19px;
        line-height: 28px;
    }

    .people-mgmt__pagination {
        margin-top: 20px;
        font-size: 0.875rem;
    }
}

@media (max-width: 768px) {
    .people-mgmt {
        padding: 64px 0 72px;
    }

    .people-mgmt__inner {
        padding: 0 20px;
    }

    .people-mgmt__header {
        margin-bottom: 28px;
    }

    .people-mgmt__title {
        font-size: 28px;
        line-height: 38px;
    }

    .people-mgmt__card-body {
        padding: 18px 14px 20px;
    }

    .people-mgmt__card-name {
        font-size: 18px;
        line-height: 27px;
    }

    .people-mgmt__pagination {
        margin-top: 20px;
        font-size: 0.875rem;
    }
}

@media (max-width: 576px) {
    .people-mgmt {
        padding: 56px 0 64px;
    }

    .people-mgmt__inner {
        padding: 0 20px;
    }

    .people-mgmt__header {
        flex-wrap: wrap;
        margin-bottom: 24px;
    }

    .people-mgmt__title {
        font-size: 26px;
        line-height: 36px;
    }

    .people-mgmt__card-body {
        padding: 16px 12px 20px;
    }

    .people-mgmt__card-name {
        font-size: 17px;
        line-height: 26px;
    }

    .people-mgmt__card-title {
        font-size: 0.8125rem;
    }

    .people-mgmt__pagination {
        margin-top: 18px;
        font-size: 0.8125rem;
    }
}

@media (max-width: 480px) {
    .people-mgmt__title {
        font-size: 22px;
        line-height: 30px;
    }

    .people-mgmt__card-name {
        font-size: 16px;
        line-height: 24px;
    }

    .people-mgmt__pagination {
        margin-top: 16px;
        font-size: 0.8125rem;
    }
}

@media (max-width: 414px) {
    .people-mgmt__pagination {
        margin-top: 14px;
        font-size: 0.75rem;
    }
}

@media (max-width: 380px) {
    .people-mgmt__title {
        font-size: 20px;
        line-height: 28px;
    }

    .people-mgmt__card-name {
        font-size: 15px;
        line-height: 22px;
    }

    .people-mgmt__pagination {
        margin-top: 14px;
        font-size: 0.75rem;
    }

    .people-mgmt__btn {
        width: 40px;
        height: 40px;
    }

    .people-mgmt__btn svg {
        width: 18px;
        height: 18px;
    }
}

@media (max-width: 320px) {
    .people-mgmt__pagination {
        margin-top: 12px;
        font-size: 0.6875rem;
    }
}

/* Landscape: compact pagination for reduced vertical space */
@media (max-width: 992px) and (orientation: landscape) {
    .people-mgmt__pagination {
        margin-top: 16px;
    }
}

/* Large displays: scale up for balance */
@media (min-width: 1536px) {
    .people-mgmt__pagination {
        margin-top: 28px;
        font-size: 1rem;
    }
}

/* ===== MEET LEADERSHIP PROFILE (Photo + Black Panel) ===== */
.people-profile {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    display: grid;
    grid-template-columns: 48% 52%;
    min-height: 480px;
    align-items: stretch;
}

.people-profile__media {
    position: relative;
    background: var(--dbs-gray-200);
    overflow: hidden;
}

.people-profile__media img {
    width: 100%;
    height: 100%;
    min-height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}

.people-profile__caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px 28px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.75), transparent);
    color: var(--dbs-white);
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.4;
}

.people-profile__content {
    background: var(--dbs-black);
    padding: 56px 56px 56px 48px;
    display: flex;
    flex-direction: column;
    position: relative;
    min-height: 100%;
}

.people-profile__accent {
    position: absolute;
    top: 15%;
    right: 0;
    line-height: 0;
    width: 52px;
    opacity: 1;
}

.people-profile__accent img {
    display: block;
    width: 52px;
    height: 137px;
    max-width: min(52px, 100%);
    /* Prevent overflow on narrow viewports */
    min-height: 44px;
    /* Prevents collapse on very small screens */
    object-fit: contain;
    object-position: right center;
}

.people-profile__heading {
    font-family: inherit;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--dbs-white);
    margin: 0 0 28px 0;
    line-height: 1.3;
}

.people-profile__list {
    margin: 0;
    padding: 0 0 0 1.25em;
    list-style: disc;
    color: var(--dbs-white);
    font-size: 1rem;
    line-height: 1.65;
}

.people-profile__list li {
    margin-bottom: 12px;
}

.people-profile__list li:last-child {
    margin-bottom: 0;
}

@media (max-width: 992px) {
    .people-profile {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .people-profile__media {
        min-height: 360px;
    }

    .people-profile__content {
        padding: 40px 40px 40px 24px;
    }

    .people-profile__accent {
        top: 14%;
    }

    .people-profile__accent img {
        width: 52px;
        height: 123px;
    }

    .people-profile__heading {
        font-size: 1.5rem;
        margin-bottom: 20px;
    }

    .people-profile__list {
        font-size: 0.9375rem;
    }
}

@media (max-width: 768px) {
    .people-profile__accent {
        top: 13%;
    }

    .people-profile__accent img {
        width: 52px;
        height: 110px;
    }
}

@media (max-width: 576px) {
    .people-profile__media {
        min-height: 280px;
    }

    .people-profile__caption {
        padding: 16px 20px;
        font-size: 0.9375rem;
    }

    .people-profile__content {
        padding: 32px 24px 32px 20px;
    }

    .people-profile__accent {
        top: 12%;
    }

    .people-profile__accent img {
        width: 52px;
        height: 96px;
    }

    .people-profile__heading {
        font-size: 1.375rem;
        margin-bottom: 16px;
    }

    .people-profile__list li {
        margin-bottom: 10px;
    }
}

@media (max-width: 480px) {
    .people-profile__accent {
        top: 10%;
    }

    .people-profile__accent img {
        width: 52px;
        height: 82px;
    }
}

@media (max-width: 380px) {
    .people-profile__media {
        min-height: 240px;
    }

    .people-profile__caption {
        padding: 12px 16px;
        font-size: 0.875rem;
    }

    .people-profile__content {
        padding: 28px 16px 28px 16px;
    }

    .people-profile__accent {
        top: 8%;
    }

    .people-profile__accent img {
        width: 52px;
        height: 69px;
    }

    .people-profile__heading {
        font-size: 1.25rem;
        margin-bottom: 14px;
    }

    .people-profile__list {
        font-size: 0.875rem;
    }
}

/* Large displays: scale accent for better visual balance */
@media (min-width: 1280px) {
    .people-profile__accent {
        top: 15%;
    }

    .people-profile__accent img {
        width: 52px;
        height: 151px;
    }
}

@media (min-width: 1536px) {
    .people-profile__accent img {
        width: 52px;
        height: 164px;
    }
}

/* Intermediate breakpoints for common device widths (414px: iPhone 14 Pro Max, 360px: common Android) */
@media (max-width: 414px) {
    .people-profile__accent {
        top: 9%;
    }

    .people-profile__accent img {
        width: 52px;
        height: 79px;
    }
}

@media (max-width: 360px) {
    .people-profile__accent {
        top: 8%;
    }

    .people-profile__accent img {
        width: 52px;
        height: 71px;
    }
}

/* Very small phones (e.g. iPhone SE, Galaxy Fold) */
@media (max-width: 320px) {
    .people-profile__accent {
        top: 7%;
    }

    .people-profile__accent img {
        width: 52px;
        height: 60px;
    }
}

/* Landscape on tablets/phones: reduce accent to preserve vertical space */
@media (max-width: 992px) and (orientation: landscape) {
    .people-profile__accent {
        top: 10%;
    }

    .people-profile__accent img {
        width: 52px;
        height: 96px;
    }
}

@media (max-width: 576px) and (orientation: landscape) {
    .people-profile__accent {
        top: 8%;
    }

    .people-profile__accent img {
        width: 52px;
        height: 77px;
    }
}

@media (max-width: 480px) and (orientation: landscape) {
    .people-profile__accent {
        top: 6%;
    }

    .people-profile__accent img {
        width: 52px;
        height: 66px;
    }
}

/* ===== AWARD-WINNING WORKPLACE (Carousel) – Full width BG ===== */
.people-awards {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding: 72px 0 80px;
    background-color: var(--dbs-gray-100);
    box-sizing: border-box;
}

.people-awards__inner {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    box-sizing: border-box;
}

.people-awards__heading {
    font-family: inherit;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--dbs-gray-900);
    margin: 0 0 40px 0;
    line-height: 1.3;
    text-align: center;
}

/* Slider row: nav buttons outside slider-wrap, grid keeps them at edges and vertically centered */
.people-awards__slider-row {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 0 24px;
}

.people-awards__slider-wrap {
    position: relative;
    min-width: 0;
    padding: 0 16px;
}

.people-awards__btn {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid var(--dbs-gray-900);
    background: transparent;
    color: var(--dbs-gray-900);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: var(--dbs-transition);
}

.people-awards__btn:hover {
    background: var(--dbs-gray-900);
    color: var(--dbs-white);
}

.people-awards__btn--prev {
    justify-self: start;
}

.people-awards__btn--next {
    justify-self: end;
}

.people-awards__btn svg {
    width: 20px;
    height: 20px;
}

.people-awards__slider.swiper {
    overflow: hidden;
}

.people-awards__slider .swiper-wrapper {
    align-items: stretch;
}

.people-awards__slider .swiper-slide {
    height: auto;
}

.people-awards__card {
    padding: 0 12px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 0;
}

.people-awards__card-image {
    display: block;
    width: 100%;
    max-width: 320px;
    height: auto;
    max-height: 200px;
    object-fit: contain;
    object-position: center;
}

@media (max-width: 1280px) {
    .people-awards__card-image {
        max-width: 280px;
        max-height: 175px;
    }
}

@media (max-width: 992px) {
    .people-awards__slider-row {
        gap: 0 20px;
    }

    .people-awards__slider-wrap {
        padding: 0 12px;
    }

    .people-awards__card {
        padding: 0 10px;
    }

    .people-awards__card-image {
        max-width: 260px;
        max-height: 165px;
    }
}

@media (max-width: 768px) {
    .people-awards__card-image {
        max-width: 240px;
        max-height: 150px;
    }
}

@media (max-width: 576px) {
    .people-awards {
        padding: 56px 0 64px;
    }

    .people-awards__inner {
        padding: 0 20px;
    }

    .people-awards__heading {
        font-size: 1.5rem;
        margin-bottom: 32px;
    }

    .people-awards__slider-row {
        gap: 0 16px;
    }

    .people-awards__slider-wrap {
        padding: 0 12px;
    }

    .people-awards__btn {
        width: 40px;
        height: 40px;
    }

    .people-awards__card {
        padding: 0 8px;
    }

    .people-awards__card-image {
        max-width: 200px;
        max-height: 125px;
    }
}

@media (max-width: 480px) {
    .people-awards__slider-row {
        gap: 0 12px;
    }

    .people-awards__slider-wrap {
        padding: 0 8px;
    }

    .people-awards__btn {
        width: 36px;
        height: 36px;
    }

    .people-awards__btn svg {
        width: 16px;
        height: 16px;
    }

    .people-awards__heading {
        font-size: 1.375rem;
        margin-bottom: 28px;
    }

    .people-awards__card-image {
        max-width: 180px;
        max-height: 112px;
    }
}

@media (max-width: 414px) {
    .people-awards__card-image {
        max-width: 160px;
        max-height: 100px;
    }
}

@media (max-width: 380px) {
    .people-awards__card {
        padding: 0 6px;
    }

    .people-awards__card-image {
        max-width: 150px;
        max-height: 94px;
    }
}

@media (max-width: 360px) {
    .people-awards__card-image {
        max-width: 140px;
        max-height: 88px;
    }
}

@media (max-width: 320px) {
    .people-awards__card {
        padding: 0 4px;
    }

    .people-awards__card-image {
        max-width: 120px;
        max-height: 75px;
    }
}

/* Landscape: reduce image size to fit reduced vertical space */
@media (max-width: 992px) and (orientation: landscape) {
    .people-awards__card-image {
        max-height: 120px;
    }
}

@media (max-width: 576px) and (orientation: landscape) {
    .people-awards__card-image {
        max-width: 160px;
        max-height: 90px;
    }
}

@media (max-width: 480px) and (orientation: landscape) {
    .people-awards__card-image {
        max-width: 140px;
        max-height: 78px;
    }
}

/* Large displays: scale up for better presence */
@media (min-width: 1536px) {
    .people-awards__card-image {
        max-width: 360px;
        max-height: 225px;
    }
}

@media (min-width: 1920px) {
    .people-awards__card-image {
        max-width: 400px;
        max-height: 250px;
    }
}

/* Life @ DBS Tech India – Our People intro (two-column: heading | text)
 * Typography: people-intro__heading / people-intro__text follow people-impact responsive font scale (135% line-height).
 */
.people-intro-section.uk-container {
    max-width: 1288px;
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
}

.people-intro-section {
    width: 100%;
    padding: 60px 40px;
}

.people-intro {
    margin-bottom: 0;
}

.people-intro__inner {
    display: grid;
    grid-template-columns: auto 1fr;
    /* heading: auto width | text: remaining space – matches design */
    gap: 60px;
    align-items: start;
    /* Top alignment – heading and first line of text aligned */
    max-width: 1288px;
    margin: 0 auto;
    padding: 0;
}

/* Override UIkit grid – we use CSS Grid for precise control */
.people-intro__inner.uk-grid {
    margin-left: 0;
}

.people-intro__inner.uk-grid>* {
    padding: 0 !important;
    width: auto;
    min-width: 0;
}

.people-intro__inner.uk-grid>.people-intro__text {
    min-width: 0;
    /* Prevent overflow in grid cell */
}

@media (max-width: 992px) {

    /* Remove UIKit's uk-grid-margin gap so heading + text sit tightly together when stacked */
    .people-intro__inner .uk-grid-margin {
        margin-top: 0 !important;
    }
}

.people-intro__heading {
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    font-style: normal;
    /* Semibold = 600 weight */
    font-size: 32px;
    line-height: 44px;
    letter-spacing: 0;
    color: #171717;
    margin: 0;
    padding: 0;
}

.people-intro__text {
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
    line-height: 135%;
    letter-spacing: 0;
    color: #171717;
    margin: 0;
    padding: 0;
}

.people-intro__text p {
    margin: 0 0 16px 0;
    text-align: left;
}

.people-intro__text p:last-child {
    margin-bottom: 0;
}

.people-intro__text strong {
    font-weight: 700;
}

@media (max-width: 1280px) {
    .people-intro-section {
        padding: 52px 32px;
    }

    .people-intro__inner {
        grid-template-columns: auto 1fr;
        gap: 48px;
        padding: 0;
    }

    /* Match people-impact: no heading/body change at 1280 — 23px / 16px, 135% */
    .people-intro__heading {
        font-size: 23px;
        line-height: 135%;
    }

    .people-intro__text {
        font-size: 16px;
        line-height: 135%;
        padding-left: 0;
    }
}

@media (max-width: 992px) {
    .people-intro-section {
        padding: 44px 24px;
    }

    .people-intro__inner {
        grid-template-columns: 1fr;
        gap: 16px;
        /* Tighter row-gap for stacked Title + Description */
        padding: 0;
    }

    /* Match people-impact: 23px / 16px, 135% */
    .people-intro__heading {
        font-size: 23px;
        line-height: 135%;
    }

    .people-intro__text {
        font-size: 16px;
        line-height: 135%;
        padding-left: 0;
    }
}

@media (max-width: 768px) {
    .people-intro-section {
        padding: 36px 20px;
    }

    .people-intro__inner {
        grid-template-columns: 1fr;
        gap: 14px;
        padding: 0;
    }

    /* Match people-impact: heading 21px, body 16px, 135% */
    .people-intro__heading {
        font-size: 21px;
        line-height: 135%;
    }

    .people-intro__text {
        font-size: 16px;
        line-height: 135%;
        padding-left: 0;
    }

    .people-intro__text p {
        text-align: left;
        font-family: 'Open Sans', sans-serif;
        font-weight: 400;
        font-size: 16px;
        line-height: 24px;
        letter-spacing: 0;
    }
}

@media (max-width: 576px) {
    .people-intro-section {
        padding: 32px 16px;
    }

    .people-intro__inner {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 0;
    }

    /* Match people-impact: heading 21px, body 0.9375rem, 135% */
    .people-intro__heading {
        font-size: 21px;
        line-height: 135%;
    }

    .people-intro__text {
        font-size: 0.9375rem;
        line-height: 135%;
        padding-left: 0;
    }
}

@media (max-width: 480px) {
    .people-intro-section {
        padding: 28px 16px;
    }

    .people-intro__inner {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 0;
    }

    /* Match people-impact: heading 18px, body 0.9375rem, 135% */
    .people-intro__heading {
        font-size: 18px;
        line-height: 135%;
    }

    .people-intro__text {
        font-size: 0.9375rem;
        line-height: 135%;
        padding-left: 0;
    }
}

@media (max-width: 414px) {
    .people-intro-section {
        padding: 24px 16px;
    }

    .people-intro__inner {
        grid-template-columns: 1fr;
        gap: 10px;
        padding: 0;
    }

    /* Match people-impact: 18px / 0.9375rem, 135% */
    .people-intro__heading {
        font-size: 18px;
        line-height: 135%;
    }

    .people-intro__text {
        font-size: 0.9375rem;
        line-height: 135%;
        padding-left: 0;
    }
}

@media (max-width: 380px) {
    .people-intro-section {
        padding: 32px 15px;
    }

    .people-intro__inner {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    /* Match people-impact: 18px / 0.9375rem, 135% */
    .people-intro__heading {
        font-size: 24px;
        line-height: 32px;
    }

    .people-intro__text {
        font-size: 0.9375rem;
        line-height: 135%;
    }
}

@media (max-width: 360px) {
    .people-intro-section {
        padding: 32px 15px;
    }

    .people-intro__inner {
        grid-template-columns: 1fr;
        gap: 10px;
        padding: 0;
    }

    /* Match people-impact: 18px / 0.9375rem, 135% */
    .people-intro__heading {
        font-size: 18px;
        line-height: 135%;
    }

    .people-intro__text {
        font-size: 0.9375rem;
        line-height: 135%;
        padding-left: 0;
    }
}

@media (max-width: 320px) {
    .people-intro-section {
        padding: 20px 12px;
    }

    .people-intro__inner {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    /* Match people-impact: 18px / 0.9375rem, 135% */
    .people-intro__heading {
        font-size: 18px;
        line-height: 135%;
    }

    .people-intro__text {
        font-size: 0.9375rem;
        line-height: 135%;
    }
}

@media (max-width: 992px) and (orientation: landscape) {
    .people-intro__inner {
        grid-template-columns: 1fr;
    }
}

@media (min-width: 1536px) {
    .people-intro-section {
        padding: 72px 40px;
    }

    .people-intro__inner {
        gap: 60px;
    }

    /* Match people-impact: 23px / 16px, 135% */
    .people-intro__heading {
        font-size: 23px;
        line-height: 135%;
    }

    .people-intro__text {
        font-size: 16px;
        line-height: 135%;
        padding-left: 0;
    }
}

@media (min-width: 1920px) {
    .people-intro-section {
        padding: 80px 48px;
    }

    .people-intro__inner {
        gap: 64px;
        /* Slightly larger for 4K/large displays – better visual rhythm */
    }

    /* Match people-impact: 23px / 16px, 135% */
    .people-intro__heading {
        font-size: 23px;
        line-height: 135%;
    }

    .people-intro__text {
        font-size: 16px;
        line-height: 135%;
        padding-left: 0;
    }
}

@media (min-width: 2560px) {
    .people-intro-section {
        padding: 80px 56px;
    }

    .people-intro__inner {
        gap: 72px;
        /* Ultra-wide: proportional scale for 4K+ */
    }
}

/* Cards Grid */
.people-content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

/* Capabilities Grid – image cards (4 columns, 620×540 aspect) */
.people-capabilities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.people-capability-card {
    position: relative;
    display: block;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 620 / 540;
    min-height: 200px;
    text-decoration: none;
    transition: var(--dbs-transition);
}

.people-capability-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--dbs-shadow);
}

.people-capability-card__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.people-capability-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.2) 40%, transparent 100%);
}

.people-capability-card__title {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0;
    padding: 20px 24px;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--dbs-white);
    line-height: 1.35;
    z-index: 1;
}

@media (max-width: 1280px) {
    .people-capabilities-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
        margin-top: 36px;
    }

    .people-capability-card__title {
        padding: 18px 20px;
        font-size: 1.0625rem;
    }
}

@media (max-width: 992px) {
    .people-capabilities-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        margin-top: 32px;
    }

    .people-capability-card {
        min-height: 220px;
    }

    .people-capability-card__title {
        padding: 18px 20px;
        font-size: 1.0625rem;
    }
}

@media (max-width: 768px) {
    .people-capabilities-grid {
        gap: 16px;
        margin-top: 28px;
    }

    .people-capability-card {
        min-height: 200px;
    }

    .people-capability-card__title {
        padding: 16px 18px;
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .people-capabilities-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-top: 24px;
    }

    .people-capability-card {
        aspect-ratio: 16 / 10;
        min-height: 200px;
    }

    .people-capability-card__title {
        padding: 16px 20px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .people-capabilities-grid {
        gap: 14px;
        margin-top: 20px;
    }

    .people-capability-card__title {
        padding: 14px 18px;
        font-size: 0.9375rem;
    }
}

@media (max-width: 414px) {
    .people-capability-card__title {
        padding: 12px 16px;
        font-size: 0.9375rem;
    }
}

@media (max-width: 360px) {
    .people-capabilities-grid {
        gap: 12px;
        margin-top: 18px;
    }

    .people-capability-card__title {
        padding: 12px 14px;
        font-size: 0.875rem;
    }
}

@media (max-width: 320px) {
    .people-capability-card {
        min-height: 160px;
    }

    .people-capability-card__title {
        padding: 10px 12px;
        font-size: 0.8125rem;
    }
}

/* Landscape: 2 columns on tablets for better fit */
@media (max-width: 992px) and (orientation: landscape) {
    .people-capabilities-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .people-capability-card {
        aspect-ratio: 16 / 10;
        min-height: 140px;
    }
}

/* Large displays */
@media (min-width: 1536px) {
    .people-capabilities-grid {
        gap: 28px;
        margin-top: 48px;
    }

    .people-capability-card__title {
        padding: 24px 28px;
        font-size: 1.25rem;
    }
}

@media (min-width: 1920px) {
    .people-capabilities-grid {
        gap: 32px;
    }
}

.people-card {
    background: var(--dbs-white);
    padding: 32px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.02);
    transition: var(--dbs-transition);
    border: 1px solid var(--dbs-gray-200);
    position: relative;
    overflow: hidden;
}

.people-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background-color: var(--dbs-red);
    transition: var(--dbs-transition);
}

.people-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--dbs-shadow);
    border-color: transparent;
}

.people-card:hover::before {
    height: 100%;
}

.people-card__icon {
    font-size: 2.5rem;
    color: var(--dbs-red);
    margin-bottom: 20px;
}

.people-card__title {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--dbs-gray-900);
    margin-bottom: 16px;
}

.people-card__desc {
    color: var(--dbs-gray-600);
    margin-bottom: 20px;
    line-height: 1.6;
}

.people-card__link {
    color: var(--dbs-red);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: var(--dbs-transition);
}

.people-card__link:hover {
    color: var(--dbs-gray-900);
    gap: 10px;
}

/* Grid & Cards responsive */
@media (max-width: 768px) {
    .people-content-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 28px;
    }

    .people-card {
        padding: 24px 20px;
    }

    .people-card__icon {
        font-size: 2rem;
        margin-bottom: 16px;
    }

    .people-card__title {
        font-size: 1.25rem;
        margin-bottom: 12px;
    }

    .people-card__desc {
        font-size: 0.9375rem;
        margin-bottom: 16px;
    }
}

@media (max-width: 480px) {
    .people-content-grid {
        gap: 16px;
        margin-top: 24px;
    }

    .people-card {
        padding: 20px 16px;
    }

    .people-card__icon {
        font-size: 1.75rem;
        margin-bottom: 12px;
    }

    .people-card__title {
        font-size: 1.125rem;
        margin-bottom: 10px;
    }

    .people-card__desc {
        font-size: 0.875rem;
        margin-bottom: 12px;
    }

    .people-card__link {
        font-size: 0.9375rem;
    }
}

/* Responsive for About Section – image first on small viewports */
@media (max-width: 992px) {
    .people-about {
        grid-template-columns: 1fr;
        gap: 40px;
        padding-top: 56px;
        padding-bottom: 56px;
        /* Visual order: image first, then content (DOM unchanged for accessibility) */
    }

    .people-about__content {
        order: 2;
        padding-right: 0;
    }

    .people-about__image {
        order: 1;
        height: 400px;
    }

    .people-about__title {
        font-size: 2.4rem;
    }

    .people-about__lead {
        font-size: 28px;
        line-height: 40px;
    }
}

@media (max-width: 768px) {
    .people-about {
        padding-top: 48px;
        padding-bottom: 48px;
        gap: 32px;
    }

    .people-about__title {
        font-size: 2rem;
    }

    .people-about__text {
        font-size: 15px;
        line-height: 22px;
    }

    .people-about__lead {
        font-size: 24px;
        line-height: 34px;
    }

    .people-about__image {
        height: 350px;
    }
}

@media (max-width: 480px) {
    .people-about {
        padding-top: 40px;
        padding-bottom: 40px;
        gap: 28px;
    }

    .people-about__title {
        font-size: 1.8rem;
    }

    .people-about__text {
        font-size: 14px;
        line-height: 21px;
    }

    .people-about__lead {
        font-size: 20px;
        line-height: 28px;
    }

    .people-about__image {
        height: 280px;
    }
}

@media (max-width: 380px) {
    .people-about {
        padding-top: 32px;
        padding-bottom: 32px;
        gap: 24px;
    }
}

/* ===== Second Section: Why Us / Our PRIDE / Impact Beyond Banking (Our People only) ===== */
/* People page: section-two always visible */
.people-section-two {
    display: block;
    background: #F8F8F8;
}

/* Tab bar: grey background, thin grey top/bottom lines; active tab = white, prominent */
.people-section-two__nav-wrapper {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    border-top: 1px solid #D3D3D3;
    border-bottom: 1px solid #DBDBDB;
    background: #DBDBDB;
}

.people-section-two__nav-wrapper .uk-container {
    width: 100%;
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
}

.people-section-two__nav {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}

.people-section-two__btn {
    flex: 1 1 0;
    min-width: 0;
    padding: 20px 24px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    font-style: normal;
    font-size: 18px;
    line-height: 135%;
    letter-spacing: 0;
    color: #000000;
    background: transparent;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease;
    text-align: center;
}

.people-section-two__btn:hover {
    background: rgba(255, 255, 255, 0.4);
}

/* Active tab: full active look – white background, bold red text, centered */
.people-section-two__btn.is-active {
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 18px;
    line-height: 135%;
    letter-spacing: 0;
    text-align: center;
    color: #CC0000;
    background: #FFFFFF;
    border-bottom: 1px solid #DBDBDB;
    margin-bottom: -1px;
    position: relative;
    z-index: 1;
}

/* Section two intro: two-column grid (legacy) or single column (Learning & Growth tab)
 * Gap scale: base 60px. Two-col: 60×60 → 52×56(1280) → 44×48(1024).
 * One-col (992↓): 28 → 24(768) → 22(640) → 20(576) → 18(480) → 16(414) → 15(390) → 14(380) → 12(360) → 10(320).
 * Large: 64×72(1536) → 72×80(1920) → 80×88(2560). Landscape: 24(992), 20(768). */
.people-section-two__intro {
    display: grid;
    grid-template-columns: minmax(0, 29fr) minmax(0, 21fr);
    /* left 58%, right 42% */
    gap: 60px 60px;
    align-items: start;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

.people-section-two__intro--single {
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
}

.people-section-two__intro-left,
.people-impact__intro,
.people-why-us__banner-intro,
.people-why-us__banner-body,
.people-why-us--text-only .people-why-us__body {
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 23px;
    line-height: 135%;
    letter-spacing: 0;
    color: #000000;
}

.people-section-two__intro-left {
    margin: 0;
}

.people-section-two__intro-left strong,
.people-section-two__intro-right strong,
.people-impact__intro strong,
.people-why-us__banner-intro strong {
    font-weight: 700;
}

.people-section-two__intro-right {
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
    line-height: 135%;
    letter-spacing: 0;
    color: #000000;
    margin: 0;
}

/* ----- .people-section-two__intro: responsive padding L/R ----- */
@media (max-width: 1280px) {
    .people-section-two__intro {
        gap: 52px 56px;
        padding: 0 24px;
    }

    .people-section-two__intro-left,
    .people-impact__intro,
    .people-why-us__banner-intro,
    .people-why-us__evp-title,
    .people-why-us__videos-heading {
        font-size: 1.25rem;
        line-height: 135%;
    }

    .people-section-two__intro-right {
        font-size: 0.9375rem;
        line-height: 135%;
    }
}

@media (max-width: 1024px) {
    .people-section-two__intro {
        gap: 44px 48px;
        padding: 0 20px;
    }

    .people-section-two__intro-left,
    .people-impact__intro,
    .people-why-us__banner-intro {
        font-size: 1.1875rem;
    }

    .people-section-two__intro-right {
        font-size: 0.9375rem;
    }
}

@media (max-width: 992px) {
    .people-section-two__intro {
        grid-template-columns: 1fr;
        gap: 28px;
        padding: 0 20px;
    }

    .people-section-two__intro-left,
    .people-impact__intro,
    .people-why-us__banner-intro {
        font-size: 1.125rem;
        line-height: 135%;
    }

    .people-section-two__intro-right {
        font-size: 0.9375rem;
        line-height: 135%;
    }
}

@media (max-width: 768px) {
    .people-section-two__intro {
        gap: 24px;
        padding: 0 20px;
    }

    .people-section-two__intro-left,
    .people-impact__intro,
    .people-why-us__banner-intro {
        font-size: 1.0625rem;
    }

    .people-section-two__intro-right {
        font-size: 0.875rem;
        line-height: 135%;
    }
}

@media (max-width: 640px) {
    .people-section-two__intro {
        gap: 22px;
        padding: 0 16px;
    }
}

@media (max-width: 576px) {
    .people-section-two__intro {
        gap: 20px;
        padding: 0 16px;
    }

    .people-section-two__intro-left,
    .people-impact__intro,
    .people-why-us__banner-intro {
        font-size: 1rem;
    }

    .people-section-two__intro-right {
        font-size: 0.875rem;
        line-height: 135%;
    }
}

@media (max-width: 480px) {
    .people-section-two__intro {
        gap: 18px;
        padding: 0 16px;
    }

    .people-section-two__intro-left,
    .people-impact__intro,
    .people-why-us__banner-intro {
        font-size: 0.9375rem;
    }

    .people-section-two__intro-right {
        font-size: 0.8125rem;
    }
}

@media (max-width: 414px) {
    .people-section-two__intro {
        gap: 16px;
        padding: 0 14px;
    }

    .people-section-two__intro-left,
    .people-impact__intro,
    .people-why-us__banner-intro {
        font-size: 0.9375rem;
    }

    .people-section-two__intro-right {
        font-size: 0.8125rem;
        line-height: 135%;
    }
}

@media (max-width: 390px) {
    .people-section-two__intro {
        gap: 15px;
        padding: 0 12px;
    }
}

@media (max-width: 380px) {
    .people-section-two__intro {
        gap: 24px;
        padding: 0 15px;
    }

    .people-section-two__intro-left,
    .people-impact__intro,
    .people-why-us__banner-intro {
        font-size: 20px;
    }

    .people-section-two__intro-right {
        font-size: 16px;
    }
}

@media (max-width: 360px) {
    .people-section-two__intro {
        gap: 12px;
        padding: 0 12px;
    }

    .people-section-two__intro-left,
    .people-impact__intro,
    .people-why-us__banner-intro {
        font-size: 0.875rem;
    }

    .people-section-two__intro-right {
        font-size: 0.75rem;
        line-height: 135%;
    }
}

@media (max-width: 320px) {
    .people-section-two__intro {
        gap: 10px;
        padding: 0 12px;
    }

    .people-section-two__intro-left,
    .people-impact__intro,
    .people-why-us__banner-intro {
        font-size: 0.8125rem;
    }

    .people-section-two__intro-right {
        font-size: 0.6875rem;
        line-height: 135%;
    }
}

@media (max-width: 992px) and (orientation: landscape) {
    .people-section-two__intro {
        gap: 24px;
        padding: 0 20px;
    }
}

@media (max-width: 768px) and (orientation: landscape) {
    .people-section-two__intro {
        gap: 20px;
        padding: 0 16px;
    }
}

@media (max-width: 576px) and (orientation: landscape) {
    .people-section-two__intro {
        gap: 18px;
        padding: 0 14px;
    }
}

@media (min-width: 1536px) and (max-width: 1919px) {
    .people-section-two__intro {
        gap: 64px 72px;
        padding: 0;
    }

    .people-section-two__intro-left,
    .people-impact__intro,
    .people-why-us__banner-intro {
        font-size: 1.3125rem;
    }

    .people-section-two__intro-right {
        font-size: 1.0625rem;
    }
}

@media (min-width: 1920px) {
    .people-section-two__intro {
        gap: 72px 80px;
        padding: 0;
    }

    .people-section-two__intro-left,
    .people-impact__intro,
    .people-why-us__banner-intro {
        font-size: 1.375rem;
    }

    .people-section-two__intro-right {
        font-size: 1.125rem;
        line-height: 135%;
    }
}

@media (min-width: 2560px) {
    .people-section-two__intro {
        gap: 80px 88px;
        padding: 0;
    }
}

/* Section two content container – full width with max-width, centered */
.people-section-two__container {
    width: 100%;
    max-width: 1288px;
    margin-left: auto;
    margin-right: auto;
    padding: 60px 0;
    box-sizing: border-box;
    background-color: #F8F8F8;
}

/* When used with UIKit .uk-container.uk-container-large, ensure our sizing wins */
.people-section-two .people-section-two__container.uk-container {
    width: 100%;
    max-width: 1288px;
    padding-left: 0;
    padding-right: 0;
}

/* Outer content wrapper only – nested tab containers keep their own spacing rules */
.people-section-two > .people-section-two__container .people-section-two__intro {
    padding-left: 0;
    padding-right: 0;
}

.people-section-two > .people-section-two__container .people-section-two__pane--impact .uk-container.uk-container-large {
    padding-left: 0;
    padding-right: 0;
}

.people-section-two__pane {
    display: none;
}

.people-section-two__pane.is-active {
    display: block;
    animation: dbsFadeIn 0.5s ease;
}

.people-section-two__heading {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dbs-gray-900);
    margin: 0 0 20px 0;
    line-height: 1.3;
}

.people-section-two__body {
    font-size: 1rem;
    line-height: 1.65;
    color: var(--dbs-gray-600);
}

.people-section-two__body p {
    margin: 0 0 16px 0;
}

.people-section-two__body p:last-child {
    margin-bottom: 0;
}

/* Impact Beyond Banking: intro paragraph + two-column (image left, CSR text right) */
.people-section-two__pane--impact {
    padding: 0;
}

.people-section-two__pane--impact .uk-container.uk-container-large {
    padding-left: 24px;
    padding-right: 24px;
}

.people-impact__intro {
    margin: 0 0 60px 0;
    text-align: left;
}

/* people-impact layout */
.people-impact {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 60px;
    align-items: center;
    margin-top: 0;
}

/*
 * people-impact left media — image or video (624×350). Set data.leftMedia.videoId later for video.
 * Responsive = full width at 1280, 992, 768, 576, 480, 414, 360, 320; desktop 1536/1920 = 624×350.
 */
.people-impact__media {
    position: relative;
    width: 624px;
    height: 350px;
    max-width: 100%;
    aspect-ratio: 624 / 350;
    border-radius: 4px;
    overflow: hidden;
    align-self: center;
}

.people-impact__image-wrap {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border-radius: 4px;
    overflow: hidden;
}

.people-impact__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.people-impact__video-wrap {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background: #4a4a4a;
    border-radius: 4px;
    overflow: hidden;
}

.people-impact__video-wrap .people-impact__iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.people-impact__video-wrap--placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100%;
}

/* Legacy: keep .people-impact__image for any existing markup */
.people-impact__image {
    position: relative;
    width: 624px;
    height: 350px;
    max-width: 100%;
    aspect-ratio: 624 / 350;
    border-radius: 4px;
    overflow: hidden;
    align-self: center;
}

.people-impact__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.people-impact__placeholder-label {
    font-family: 'Open Sans', sans-serif;
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    font-weight: 700;
    color: #22c55e;
    text-transform: uppercase;
}

.people-impact__placeholder-size {
    font-family: 'Open Sans', sans-serif;
    font-size: clamp(0.75rem, 1.2vw, 0.875rem);
    color: #22c55e;
    margin-top: 8px;
}

.people-impact__content {
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

/*
 * people-impact__heading — Open Sans Semibold 23px, 135% line-height.
 */
.people-impact__heading {
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    font-style: normal;
    font-size: 23px;
    line-height: 135%;
    letter-spacing: 0;
    color: #000000;
    margin: 0 0 20px 0;
}

/* Impact tab section titles — match Our EVP red (scoped; does not affect Why Join Us EVP block) */
.people-section-two__pane--impact .people-impact__heading,
.people-section-two__pane--impact .people-sustainability__heading,
.people-section-two__pane--impact .people-volunteer__heading {
    color: var(--dbs-red);
    font-weight: 700;
}

.people-impact__body {
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 18px;
    line-height: 135%;
    letter-spacing: 0;
    color: #000000;
}

.people-impact__body p {
    margin: 0 0 16px 0;
}

.people-impact__body p:last-child {
    margin-bottom: 0;
}

.people-impact__body strong {
    font-weight: 700;
}

/* Impact Beyond Banking: DBS Foundation home-two-col pattern (no links) */
.people-foundation {
    width: 100%;
    max-width: 1045px;
    margin: 0 auto;
    overflow-x: clip;
}

.people-foundation__gap {
    padding-top: 88px;
}

.people-foundation-section + .people-foundation-section {
    margin-top: 0;
}

.people-foundation-grid {
    display: grid;
    grid-template-columns: minmax(0, 45%) minmax(0, 55%);
    column-gap: 16px;
    row-gap: 0;
    align-items: start;
    width: 100%;
}

.people-foundation__col {
    min-width: 0;
}

.people-foundation__img-wrap {
    border-radius: 4px;
    overflow: hidden;
    background: #f0f0f0;
}

.people-foundation__img-wrap--landscape {
    aspect-ratio: 16 / 10;
    margin-bottom: 30px;
}

.people-foundation__img-wrap--portrait {
    aspect-ratio: 4 / 5;
}

.people-foundation__video-wrap {
    position: relative;
    background: #1a1a1a;
}

.people-foundation__iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.people-foundation__video-wrap--placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 280px;
}

.people-foundation__placeholder-label {
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
}

.people-foundation__col--media-only {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.people-foundation__col--has-text .people-foundation__body {
    margin: 0 0 16px 0;
}

.people-foundation__col--has-text .people-foundation__body:last-child {
    margin-bottom: 0;
}

.people-foundation__col--has-text .people-foundation__img-wrap--landscape + .people-foundation__heading {
    margin-top: 0;
}

.people-foundation__img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.people-foundation__heading {
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    font-size: 23px;
    line-height: 135%;
    color: var(--dbs-red);
    margin: 0 0 16px 0;
}

.people-foundation__body {
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 135%;
    color: #000000;
    margin: 0;
}

.people-foundation__body strong {
    font-weight: 700;
}

.people-foundation__fallback {
    font-family: 'Open Sans', sans-serif;
    font-size: 18px;
    line-height: 135%;
    color: #000000;
    margin: 0;
}

/* Desktop: portrait-only columns stretch to balance taller text column */
@media (min-width: 961px) {
    .people-foundation-grid {
        align-items: stretch;
    }

    .people-foundation__col--portrait-only {
        display: flex;
        flex-direction: column;
    }

    .people-foundation__col--portrait-only .people-foundation__img-wrap--portrait {
        flex: 1 1 auto;
        aspect-ratio: auto;
        min-height: 360px;
    }
}

@media (max-width: 1280px) {
    .people-foundation__gap {
        padding-top: 72px;
    }
}

@media (max-width: 1024px) {
    .people-foundation__gap {
        padding-top: 60px;
    }

    .people-foundation__heading {
        font-size: 22px;
    }

    .people-foundation__body {
        font-size: 16px;
    }

    .people-foundation__img-wrap--landscape {
        margin-bottom: 24px;
    }
}

/* Tablet / mobile: single column stack (matches UIkit @m breakpoint) */
@media (max-width: 960px) {
    .people-foundation-grid {
        grid-template-columns: minmax(0, 1fr);
        row-gap: 24px;
    }

    .people-foundation__gap {
        padding-top: 48px;
    }

    .people-foundation__img-wrap--portrait {
        aspect-ratio: 16 / 10;
    }

    .people-foundation__col--portrait-only .people-foundation__img-wrap--portrait {
        flex: none;
        min-height: 0;
    }
}

@media (max-width: 768px) {
    .people-foundation__gap {
        padding-top: 40px;
    }

    .people-foundation-grid {
        row-gap: 20px;
    }

    .people-foundation__heading {
        font-size: 21px;
        margin-bottom: 12px;
    }

    .people-foundation__img-wrap--landscape {
        margin-bottom: 20px;
        aspect-ratio: 16 / 9;
    }
}

@media (max-width: 576px) {
    .people-foundation__gap {
        padding-top: 36px;
    }

    .people-foundation-grid {
        row-gap: 18px;
    }

    .people-foundation__heading {
        font-size: 20px;
    }

    .people-foundation__body {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .people-foundation__gap {
        padding-top: 32px;
    }

    .people-foundation__img-wrap--landscape {
        margin-bottom: 16px;
    }

    .people-foundation__heading {
        font-size: 18px;
    }

    .people-foundation__body {
        font-size: 0.9375rem;
    }

    .people-foundation__img-wrap--portrait {
        aspect-ratio: 4 / 3;
    }
}

/* Sustainability Initiatives: two-column (text left, video/media right) — legacy impact-csr layout */
.people-sustainability {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 60px;
    align-items: center;
    margin-top: 60px;
}

.people-sustainability__content {
    min-width: 0;
    order: 0;
}

.people-sustainability__heading {
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    font-style: normal;
    font-size: 23px;
    line-height: 135%;
    letter-spacing: 0;
    color: #000000;
    margin: 0 0 20px 0;
}

/* People of Purpose / generic text block (left column) */
.people-sustainability__body {
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 135%;
    color: #000000;
}

.people-sustainability__body strong {
    font-weight: 700;
}

.people-sustainability__body p {
    margin: 0 0 16px 0;
}

.people-sustainability__body p:last-child {
    margin-bottom: 0;
}

.people-sustainability__list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.people-sustainability__item {
    padding: 16px 0 16px 20px;
    border-left: 1px solid #DBDBDB;
    cursor: pointer;
    transition: border-color 0.2s ease, color 0.2s ease;
}

.people-sustainability__item:hover {
    background: rgba(0, 0, 0, 0.02);
}

.people-sustainability__item.is-active {
    border-left: 2px solid #CC0000;
}

.people-sustainability__item.is-active .people-sustainability__title {
    color: #CC0000;
    font-weight: 700;
}

.people-sustainability__item .people-sustainability__desc {
    display: none;
}

.people-sustainability__item.is-active .people-sustainability__desc {
    display: block;
    margin-top: 12px;
}

.people-sustainability__title {
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 23px;
    line-height: 135%;
    letter-spacing: 0;
    color: #000000;
    margin: 0;
}

.people-sustainability__desc {
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    font-size: clamp(0.9375rem, 1.2vw, 1rem);
    line-height: 1.6;
    color: #6c757d;
    margin: 0;
    padding-right: 0;
}

.people-sustainability__panels {
    position: relative;
    width: 100%;
    max-width: 624px;
    aspect-ratio: 624 / 350;
}

.people-sustainability__panel {
    position: absolute;
    inset: 0;
    border-radius: 4px;
    display: none;
    overflow: hidden;
}

.people-sustainability__panel.is-active {
    display: block;
}

.people-sustainability__panel .people-sustainability__video-wrap {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    aspect-ratio: unset;
}

.people-sustainability__panel .people-sustainability__image-wrap {
    position: absolute;
    inset: 0;
}

.people-sustainability__panel img,
.people-sustainability__image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Right column: video or image media */
.people-sustainability__media {
    min-width: 0;
    max-width: 624px;
    order: 1;
    align-self: center;
}

.people-sustainability__video-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 4px;
    overflow: hidden;
    background: #1a1a1a;
}

.people-sustainability__video-wrap--single {
    width: 100%;
}

.people-sustainability__video-wrap--placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 280px;
}

.people-sustainability__placeholder-label {
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
}

.people-sustainability__iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.people-sustainability__image-wrap {
    border-radius: 4px;
    overflow: hidden;
}

.people-sustainability__image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Volunteering / Sustainability: media left (1248×700), text right — design alignment */
.people-volunteer {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
    gap: 60px;
    align-items: center;
    margin-top: 60px;
}

.people-volunteer__media {
    width: 1248px;
    max-width: 100%;
    aspect-ratio: 1248 / 700;
    min-width: 0;
    border-radius: 4px;
    overflow: hidden;
    order: 0;
    position: relative;
}

.people-volunteer__image-wrap {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border-radius: 4px;
    overflow: hidden;
}

.people-volunteer__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.people-volunteer__video-wrap {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background: #4a4a4a;
    border-radius: 4px;
    overflow: hidden;
}

.people-volunteer__iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.people-volunteer__video-wrap--placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100%;
}

.people-volunteer__placeholder-label {
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #22c55e;
    text-transform: uppercase;
}

.people-volunteer__placeholder-size {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.875rem;
    color: #22c55e;
    margin-top: 8px;
}

.people-volunteer__content {
    min-width: 0;
    align-self: stretch;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    order: 1;
    border-radius: 4px;
}

.people-volunteer__heading {
    font-family: 'Open Sans', sans-serif;
    font-size: 23px;
    font-weight: 600;
    font-style: normal;
    line-height: 135%;
    letter-spacing: 0;
    color: #000000;
    margin: 0 0 20px 0;
}

.people-volunteer__body {
    font-family: 'Open Sans', sans-serif;
    font-size: 18px;
    font-weight: 400;
    font-style: normal;
    line-height: 135%;
    letter-spacing: 0;
    color: #000000;
}

.people-volunteer__body p {
    margin: 0 0 16px 0;
}

.people-volunteer__body p:last-child {
    margin-bottom: 0;
}

/* Sustainability & Volunteer responsive — mirrors people-impact breakpoints and values */
@media (max-width: 1280px) {
    .people-sustainability {
        margin-top: 48px;
        gap: 48px;
    }

    /* Match impact: no heading/body change at 1280 — use base 23px / 16px */
    .people-sustainability__heading {
        font-size: 23px;
        margin-bottom: 20px;
        line-height: 135%;
    }

    .people-sustainability__body {
        font-size: 18px;
        line-height: 135%;
    }

    .people-sustainability__title {
        font-size: 23px;
    }

    .people-sustainability__item {
        padding: 10px 0 10px 20px;
    }

    .people-sustainability__item.is-active {
        border-left-width: 2px;
    }

    .people-sustainability__media {
        width: 100%;
        max-width: 100%;
    }

    .people-sustainability__video-wrap {
        width: 100%;
        aspect-ratio: auto;
        min-height: 300px;
    }

    .people-sustainability__panels {
        width: 100%;
        height: auto;
        aspect-ratio: 624 / 350;
    }

    .people-volunteer {
        margin-top: 48px;
        gap: 48px;
    }

    .people-volunteer__media {
        width: 100%;
        height: auto;
        max-width: 100%;
        aspect-ratio: 624 / 350;
    }

    .people-volunteer__heading {
        font-size: 23px;
        margin-bottom: 20px;
        line-height: 135%;
    }

    .people-volunteer__body {
        font-size: 18px;
        line-height: 135%;
    }
}

@media (max-width: 992px) {
    .people-sustainability {
        grid-template-columns: 1fr;
        margin-top: 40px;
        gap: 40px;
    }

    .people-sustainability__content {
        order: 1;
    }

    .people-sustainability__media {
        order: 0;
        width: 100%;
        max-width: 100%;
    }

    /* Match impact: no heading/body change at 992 — use base 23px / 16px */
    .people-sustainability__heading {
        font-size: 23px;
        margin-bottom: 20px;
        line-height: 135%;
    }

    .people-sustainability__body {
        font-size: 18px;
        line-height: 135%;
    }

    .people-sustainability__title {
        font-size: 23px;
    }

    .people-sustainability__item {
        padding: 10px 0 10px 20px;
    }

    .people-sustainability__panels {
        width: 100%;
        height: auto;
        aspect-ratio: 624 / 350;
    }

    .people-volunteer {
        grid-template-columns: 1fr;
        margin-top: 40px;
        gap: 40px;
    }

    .people-volunteer__media {
        width: 100%;
        height: auto;
        max-width: 100%;
        aspect-ratio: 624 / 350;
    }

    .people-volunteer__heading {
        font-size: 23px;
        margin-bottom: 20px;
        line-height: 135%;
    }

    .people-volunteer__body {
        font-size: 18px;
        line-height: 135%;
    }
}

@media (max-width: 768px) {

    .people-sustainability {
        margin-top: 32px;
        gap: 32px;
    }

    .people-sustainability__heading {
        font-size: 21px;
        margin-bottom: 16px;
        line-height: 135%;
    }

    .people-sustainability__body {
        font-size: 18px;
        line-height: 135%;
    }

    .people-sustainability__title {
        font-size: 21px;
    }

    .people-sustainability__item {
        padding: 10px 0 10px 18px;
    }

    .people-sustainability__list {
        gap: 4px;
    }

    .people-sustainability__panels {
        width: 100%;
        height: auto;
        aspect-ratio: 624 / 350;
    }

    .people-volunteer {
        margin-top: 32px;
        gap: 32px;
    }

    .people-volunteer__media {
        width: 100%;
        height: auto;
        max-width: 100%;
        aspect-ratio: 624 / 350;
    }

    .people-volunteer__heading {
        font-size: 21px;
        margin-bottom: 16px;
        line-height: 135%;
    }

    .people-volunteer__body {
        font-size: 18px;
        line-height: 135%;
    }
}

@media (max-width: 576px) {
    .people-sustainability {
        margin-top: 28px;
        gap: 28px;
    }

    /* Match impact: heading stays 21px (from 768), body = 0.9375rem */
    .people-sustainability__heading {
        font-size: 21px;
        margin-bottom: 16px;
        line-height: 135%;
    }

    .people-sustainability__body {
        font-size: 18px;
        line-height: 135%;
    }

    .people-sustainability__title {
        font-size: 21px;
    }

    .people-sustainability__item {
        padding: 8px 0 8px 16px;
    }

    .people-sustainability__list {
        gap: 2px;
    }

    .people-sustainability__panels {
        width: 100%;
        height: auto;
        aspect-ratio: 624 / 350;
    }

    .people-volunteer {
        margin-top: 28px;
        gap: 28px;
    }

    .people-volunteer__media {
        width: 100%;
        height: auto;
        max-width: 100%;
        aspect-ratio: auto;
        min-height: 300px;
    }

    .people-volunteer__heading {
        font-size: 21px;
        margin-bottom: 16px;
        line-height: 135%;
    }

    .people-volunteer__body {
        font-size: 1.0625rem;
        line-height: 135%;
    }
}

@media (max-width: 480px) {
    .people-sustainability {
        margin-top: 24px;
        gap: 24px;
    }

    .people-sustainability__heading {
        font-size: 20px;
        margin-bottom: 16px;
        line-height: 135%;
    }

    .people-sustainability__title {
        font-size: 18px;
    }

    .people-sustainability__item {
        padding: 8px 0 8px 14px;
    }

    .people-volunteer {
        margin-top: 24px;
        gap: 24px;
    }

    .people-volunteer__heading {
        font-size: 20px;
        margin-bottom: 16px;
        line-height: 135%;
    }

    .people-volunteer__body {
        font-size: 18px;
        line-height: 135%;
    }
}

@media (max-width: 414px) {
    .people-sustainability {
        margin-top: 40px;
        gap: 40.39px;
    }

    /* Match impact: no __heading/__body at 414 — keep 18px / 0.9375rem from 480 */
    .people-sustainability__title {
        font-size: 18px;
    }

    .people-sustainability__item {
        padding: 6px 0 6px 12px;
    }

    .people-volunteer {
        margin-top: 40px;
        gap: 40px;
    }
}

@media (max-width: 360px) {
    .people-sustainability {
        margin-top: 20px;
        gap: 18px;
    }

    /* Match impact: no __heading/__body at 360 — keep 18px / 0.9375rem */
    .people-sustainability__title {
        font-size: 18px;
    }

    .people-sustainability__item {
        padding: 6px 0 6px 10px;
    }

    .people-sustainability__panels {
        width: 100%;
        height: auto;
        aspect-ratio: 624 / 350;
    }

    .people-volunteer {
        margin-top: 20px;
        gap: 18px;
    }

    .people-volunteer__media {
        width: 100%;
        height: auto;
        max-width: 100%;
        aspect-ratio: 624 / 350;
    }
}

@media (max-width: 320px) {
    .people-sustainability {
        margin-top: 20px;
        gap: 16px;
    }

    /* Match impact: no __heading/__body at 320 — keep 18px / 0.9375rem */
    .people-sustainability__title {
        font-size: 18px;
    }

    .people-sustainability__item {
        padding: 6px 0 6px 10px;
    }

    .people-sustainability__panels {
        width: 100%;
        height: auto;
        aspect-ratio: 624 / 350;
    }

    .people-volunteer {
        margin-top: 20px;
        gap: 16px;
    }

    .people-volunteer__media {
        width: 100%;
        height: auto;
        max-width: 100%;
        aspect-ratio: 624 / 350;
    }
}

@media (min-width: 1536px) {
    .people-sustainability {
        margin-top: 72px;
        gap: 72px;
    }

    .people-sustainability__heading {
        font-size: 23px;
        margin-bottom: 20px;
        line-height: 135%;
    }

    .people-sustainability__title {
        font-size: 23px;
    }

    .people-sustainability__media {
        max-width: 624px;
    }

    .people-volunteer {
        margin-top: 72px;
        gap: 72px;
    }

    .people-volunteer__heading {
        font-size: 23px;
        margin-bottom: 20px;
        line-height: 135%;
    }
}

@media (min-width: 1920px) {
    .people-sustainability {
        margin-top: 80px;
        gap: 80px;
    }

    .people-sustainability__heading {
        font-size: 23px;
        margin-bottom: 20px;
        line-height: 135%;
    }

    .people-sustainability__title {
        font-size: 23px;
    }

    .people-volunteer {
        margin-top: 80px;
        gap: 80px;
    }

    .people-volunteer__media {
        width: 624px;
        height: 350px;
        max-width: 100%;
        aspect-ratio: 624 / 350;
    }

    .people-volunteer__heading {
        font-size: 23px;
        margin-bottom: 20px;
        line-height: 135%;
    }
}

/* Impact responsive */
@media (max-width: 1280px) {
    .people-section-two__pane--impact {
        padding: 0;
    }

    .people-impact__intro {
        margin-bottom: 52px;
    }

    .people-impact {
        gap: 48px;
    }

    .people-impact__media,
    .people-impact__image {
        width: 100%;
        height: auto;
        max-width: 100%;
        aspect-ratio: 624 / 350;
    }
}

@media (max-width: 1024px) {
    .people-impact__intro {
        margin-bottom: 48px;
    }
}

@media (max-width: 992px) {
    .people-section-two__pane--impact {
        padding: 0;
    }

    .people-impact__intro {
        margin-bottom: 44px;
    }

    .people-impact {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .people-impact__media,
    .people-impact__image {
        width: 100%;
        height: auto;
        max-width: 100%;
        aspect-ratio: 624 / 350;
    }
}

@media (max-width: 768px) {
    .people-section-two__pane--impact {
        padding: 0;
    }

    .people-section-two__pane--impact .uk-container.uk-container-large {
        padding-left: 20px;
        padding-right: 20px;
    }

    .people-impact__intro {
        margin-bottom: 40px;
    }

    .people-impact {
        gap: 32px;
    }

    .people-impact__media,
    .people-impact__image {
        width: 100%;
        height: auto;
        max-width: 100%;
        aspect-ratio: 624 / 350;
    }

    .people-impact__heading {
        margin-bottom: 16px;
        font-size: 21px;
        line-height: 135%;
    }
}

@media (max-width: 640px) {
    .people-impact__intro {
        margin-bottom: 36px;
    }
}

@media (max-width: 576px) {
    .people-section-two__pane--impact {
        padding: 0;
    }

    .people-section-two__pane--impact .uk-container.uk-container-large {
        padding-left: 15px;
        padding-right: 15px;
    }

    .people-impact__intro {
        margin-bottom: 32px;
    }

    .people-impact {
        gap: 28px;
    }

    .people-impact__media,
    .people-impact__image {
        width: 100%;
        height: auto;
        max-width: 100%;
        aspect-ratio: 624 / 350;
    }

    .people-impact__body {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .people-section-two__pane--impact {
        padding: 0;
    }

    .people-impact__intro {
        margin-bottom: 28px;
    }

    .people-impact {
        gap: 40px;
    }

    .people-impact__media,
    .people-impact__image {
        width: 100%;
        height: auto;
        max-width: 100%;
        aspect-ratio: 624 / 350;
    }

    .people-impact__heading {
        margin-bottom: 16px;
        font-size: 20px;
        line-height: 135%;
    }
}

@media (max-width: 414px) {
    .people-section-two__pane--impact {
        padding: 0;
    }

    .people-impact__intro {
        margin-bottom: 24px;
    }

    .people-impact__media,
    .people-impact__image {
        width: 100%;
        height: auto;
        min-height: 300px;
        max-width: 100%;
        aspect-ratio: auto;
    }
}

@media (max-width: 390px) {
    .people-impact__intro {
        margin-bottom: 22px;
    }
}

@media (max-width: 360px) {
    .people-impact__intro {
        margin-bottom: 20px;
    }

    .people-section-two__pane--impact .uk-container.uk-container-large {
        padding-left: 14px;
        padding-right: 14px;
    }

    .people-impact__media,
    .people-impact__image {
        width: 100%;
        height: auto;
        max-width: 100%;
        aspect-ratio: 624 / 350;
    }
}

@media (max-width: 320px) {
    .people-section-two__pane--impact {
        padding: 0;
    }

    .people-impact__intro {
        margin-bottom: 18px;
    }

    .people-impact {
        gap: 20px;
    }

    .people-impact__media,
    .people-impact__image {
        width: 100%;
        height: auto;
        max-width: 100%;
        aspect-ratio: 624 / 350;
    }
}

@media (min-width: 1536px) {
    .people-section-two__pane--impact {
        padding: 0;
    }

    .people-impact__intro {
        margin-bottom: 64px;
    }

    .people-impact {
        gap: 72px;
    }

    .people-impact__media,
    .people-impact__image {
        width: 624px;
        height: 350px;
        max-width: 100%;
    }
}

@media (min-width: 1920px) {
    .people-section-two__pane--impact {
        padding: 0;
    }

    .people-impact__intro {
        margin-bottom: 72px;
    }

    .people-impact {
        gap: 80px;
    }

    .people-impact__media,
    .people-impact__image {
        width: 624px;
        height: 350px;
        max-width: 100%;
    }
}

/* Why Us pane – no heading; spacing from container padding (responsive) */
/* Exclude --below-banner so its margin-top creates space between live banner and focus block */
.people-section-two__pane--why-us .people-why-us:not(.people-why-us--below-banner) {
    margin-top: 0;
}

/* EVP block — same two-column pattern as Corporate & Community Impact (.people-impact) */
.people-why-us-evp.people-impact {
    align-items: center;
    max-width: 1288px;
    margin-left: auto;
    margin-right: auto;
}

/*
 * EVP banner (21301×12901, ~1.65:1) — wider/taller than default people-impact media (624×350).
 * Default .people-impact__img uses object-fit: cover inside a 624/350 box, which crops left/right on mobile.
 * Scoped overrides show the full banner at every breakpoint without affecting Impact tab media.
 */
.people-why-us-evp .people-impact__media {
    width: 100%;
    max-width: 624px;
    height: auto;
    min-height: 0;
    aspect-ratio: auto;
    overflow: hidden;
    align-self: center;
}

.people-why-us-evp .people-impact__image-wrap {
    position: relative;
    inset: auto;
    width: 100%;
    height: auto;
}

.people-why-us-evp .people-impact__img {
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center;
}

.people-why-us__evp-title {
    margin-bottom: 20px;
    color: var(--dbs-red);
    font-weight: 700;
}

.people-why-us__videos-section {
    margin-top: 48px;
    max-width: 1288px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 0;
    padding-right: 0;
    box-sizing: border-box;
}

.people-why-us__videos-heading {
    margin: 0 0 24px 0;
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    font-size: 23px;
    line-height: 135%;
    letter-spacing: 0;
    color: #000000;
    text-align: left;
}

/* Why Us – Live fulfilled banner + 5 columns (design: dark bg, white text, Explore more) */
.people-why-us-live {
    position: relative;
    background-color: #1a1a1a;
    border-radius: 4px;
    overflow: visible;
    margin-top: 0;
    margin-bottom: 60px;
}

.people-why-us-live__bg {
    position: absolute;
    inset: 0;
    background-image: url('../images/people/people-why-us-live-bg.png');
    background-size: cover;
    background-position: center;
    border-radius: 4px;
    pointer-events: none;
}

.people-why-us-live__inner {
    position: relative;
    z-index: 1;
    padding: 44px 62px 0;
}

.people-why-us-live__header {
    text-align: left;
    margin-bottom: 47px;
}

/*
 * people-why-us-live__header-img — design size 371×100, aspect ~3.71:1.
 * Responsive: 1280(320×86), 1024(280×75), 992(260×70), 768(220×59), 576(200×54),
 * 480(180×48), 414(160×43), 390(150×40), 380(145×39), 360(140×38), 320(120×32),
 * 1440(385×104), 1536(400×108), 1920(431×116). object-fit: contain shows full image.
 */
.people-why-us-live__header-img {
    display: block;
    width: 371px;
    height: 100px;
    max-width: 100%;
    object-fit: contain;
    object-position: left center;
}

/* Responsive-only card: blurred bg + "Live fulfilled" text or image (visible only in @media below) */
.people-why-us-live__header-card {
    display: none;
}

/* Image inside card – hidden on desktop, shown on responsive in place of text */
.people-why-us-live__header-card-img {
    display: none;
}

.people-why-us-live__title {
    font-family: 'Open Sans', sans-serif;
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    color: var(--dbs-white, #fff);
    margin: 0 0 12px 0;
    line-height: 1.2;
}

.people-why-us-live__title-accent {
    font-family: 'Great Vibes', cursive;
    font-style: normal;
    font-weight: 400;
    color: #CC0000;
    display: inline;
    vertical-align: baseline;
    letter-spacing: 0.02em;
}

.people-why-us-live__subtitle {
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    line-height: 1.5;
}

.people-why-us-live__cols {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
    min-height: 233px;
    overflow: visible;
}

.people-why-us-live__col {
    padding: 16px 20px 16px 20px;
    display: flex;
    flex-direction: column;
    border-right: 1px solid rgba(255, 255, 255, 0.5);
}

.people-why-us-live__col:first-child {
    border-left: 1px solid rgba(255, 255, 255, 0.5);
}

.people-why-us-live__col:last-child {
    border-right: none;
}

/*
 * people-why-us-live__col-title — Open Sans Semibold; font-size/line-height match people-impact scale (135%).
 * Responsive: same breakpoints as people-impact (1280, 992, 768, 576, 480, 414, 360, 320, 1536, 1920).
 */
.people-why-us-live__col-title {
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    font-style: normal;
    font-size: 23px;
    line-height: 135%;
    letter-spacing: 0;
    /* leading-trim: none (default); use text-box-trim when supported */
    color: var(--dbs-white, #fff);
    margin: 0 0 12px 0;
}

/*
 * people-why-us-live__col-desc — Open Sans Regular; font-size/line-height match people-impact body (135%).
 */
.people-why-us-live__col-desc {
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
    line-height: 135%;
    letter-spacing: 0;
    color: #ffffff;
    margin: 0 0 16px 0;
    flex-grow: 1;
}

/*
 * people-why-us-live__cta — Open Sans Bold; font-size/line-height match people-impact body (135%).
 * Now a button that toggles the Explore more tooltip.
 */
.people-why-us-live__cta {
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 16px;
    line-height: 135%;
    letter-spacing: 0;
    color: #ffffff;
    text-decoration: none;
    transition: color 0.2s ease;
    display: inline-block;
    border: none;
    background: transparent;
    cursor: pointer;
    padding: 0;
    margin: 0;
}

/* Explore more tooltip: wrapper tightly around button so tooltip attaches to text */
.people-why-us-live__cta-wrap {
    position: relative;
    display: inline-block;
    width: fit-content;
}

/* Allow tooltip to extend outside column without being clipped */
.people-why-us-live__col {
    overflow: visible;
}

/* Tooltip panel: white box right beside Explore more (attached, no gap) */
.people-why-us-live__tooltip {
    display: none;
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
    margin-left: 20px;
    min-width: 280px;
    max-width: 320px;
    padding: 16px;
    background: #fafafa;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    box-sizing: border-box;
}

/* Last column: show tooltip to the left of the button so it isn’t cut off by the viewport */
.people-why-us-live__col:last-child .people-why-us-live__tooltip {
    left: auto;
    right: 100%;
    margin-left: 0;
    margin-right: 0;
}

.people-why-us-live__col:last-child .people-why-us-live__tooltip::before {
    left: auto;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
    border-width: 8px 0 8px 8px;
    border-style: solid;
    border-color: transparent transparent transparent #fafafa;
    filter: drop-shadow(2px 0 1px rgba(0, 0, 0, 0.08));
}

.people-why-us-live__cta-wrap:hover .people-why-us-live__tooltip {
    display: block;
}

/* Triangle pointer on the left edge of the tooltip (points at button) */
.people-why-us-live__tooltip::before {
    content: '';
    position: absolute;
    left: -8px;
    top: 50%;
    transform: translateY(-50%);
    border-width: 8px 8px 8px 0;
    border-style: solid;
    border-color: transparent #fafafa transparent transparent;
    filter: drop-shadow(-2px 0 1px rgba(0, 0, 0, 0.08));
}

.people-why-us-live__tooltip-list {
    list-style: disc;
    margin: 0;
    padding-left: 20px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.5;
    color: #000000;
}

.people-why-us-live__tooltip-list li {
    margin-bottom: 6px;
}

.people-why-us-live__tooltip-list li:last-child {
    margin-bottom: 0;
}

/* Why Us – agile focus block below Live fulfilled banner (existing section kept) */
/* Responsive margin-top + padding-left/right aligned with people-why-us-live__inner */
.people-why-us--below-banner {
    margin-top: 48px;
    padding-left: 0;
    padding-right: 0;
    box-sizing: border-box;
}

/* Why Us – body copy below banner (replaces intro + focus cards) */
.people-why-us.people-why-us--text-only {
    display: block;
}

/* EVP intro → body: same 24px gap as between body paragraphs (no extra --below-banner margin-top) */
.people-why-us.people-why-us--below-banner.people-why-us--text-only {
    margin-top: 0;
}

.people-why-us--text-only .people-why-us__body {
    max-width: 1288px;
    margin: 0 auto;
    text-align: left;
    min-width: 0;
}

.people-why-us--text-only .people-why-us__body p {
    margin: 0 0 24px 0;
}

.people-why-us--text-only .people-why-us__body p:last-child {
    margin-bottom: 0;
}

/* She Lives Fulfilled videos below EVP block (moved from Our PRIDE tab) */
.people-section-two__pane--why-us .people-why-us__videos-section .people-why-us__videos {
    margin-top: 0;
}

@media (max-width: 768px) {
    .people-why-us__evp-title,
    .people-why-us__videos-heading {
        font-size: 1.125rem;
    }

    .people-why-us__videos-section {
        margin-top: 40px;
    }
}

@media (max-width: 480px) {
    .people-why-us__evp-title,
    .people-why-us__videos-heading {
        font-size: 1rem;
    }
}

@media (max-width: 1280px) {
    .people-why-us-live__tooltip {
        min-width: 260px;
        max-width: 300px;
    }

    .people-why-us-live {
        margin-bottom: 56px;
    }

    .people-why-us-live__header {
        margin-bottom: 44px;
    }

    .people-why-us-live__inner {
        padding: 40px 54px 0;
    }

    .people-why-us-live__cols {
        min-height: 220px;
    }

    .people-why-us-live__col {
        padding-top: 14px;
        padding-bottom: 14px;
    }

    .people-why-us-live__header-img {
        width: 320px;
        height: 86px;
        max-width: 100%;
        object-fit: contain;
        object-position: left center;
    }

    .people-why-us-live__col-title {
        font-size: 23px;
        line-height: 135%;
    }

    .people-why-us-live__col-desc {
        font-size: 16px;
        line-height: 135%;
    }

    .people-why-us-live__cta {
        font-size: 16px;
        line-height: 135%;
    }
}

@media (max-width: 1024px) {
    .people-why-us-live__tooltip {
        min-width: 240px;
        max-width: 280px;
    }

    .people-why-us-live {
        margin-bottom: 52px;
    }

    .people-why-us-live__header {
        margin-bottom: 40px;
    }

    .people-why-us-live__inner {
        padding: 36px 48px 0;
    }

    .people-why-us-live__col {
        padding-top: 12px;
        padding-bottom: 12px;
    }

    .people-why-us-live__header-img {
        width: 280px;
        height: 75px;
        max-width: 100%;
        object-fit: contain;
        object-position: left center;
    }

    .people-why-us-live__col-title {
        font-size: 23px;
        line-height: 135%;
    }

    .people-why-us-live__col-desc {
        font-size: 16px;
        line-height: 135%;
    }

    .people-why-us-live__cta {
        font-size: 16px;
        line-height: 135%;
    }

    .people-why-us-live__cols {
        grid-template-columns: repeat(3, 1fr);
        min-height: 205px;
    }

    .people-why-us-live__col:first-child {
        border-left: none;
    }

    .people-why-us-live__col:nth-child(3) {
        border-right: none;
    }

    .people-why-us-live__col:nth-child(4),
    .people-why-us-live__col:nth-child(5) {
        border-top: 1px solid rgba(255, 255, 255, 0.5);
    }

    .people-why-us-live__col:nth-child(4) {
        border-right: none;
    }

    .people-why-us-live__col:nth-child(5) {
        border-right: none;
    }
}

@media (max-width: 992px) {
    .people-why-us-live {
        margin-bottom: 48px;
    }

    .people-why-us-live__header {
        margin-bottom: 36px;
    }

    .people-why-us-live__inner {
        padding: 34px 44px 0;
    }

    .people-why-us-live__cols {
        min-height: 195px;
    }

    .people-why-us-live__col {
        padding-top: 12px;
        padding-bottom: 12px;
    }

    .people-why-us-live__header-img {
        width: 260px;
        height: 70px;
        max-width: 100%;
        object-fit: contain;
        object-position: left center;
    }

    .people-why-us-live__col-title {
        font-size: 23px;
        line-height: 135%;
    }

    .people-why-us-live__col-desc {
        font-size: 16px;
        line-height: 135%;
    }

    .people-why-us-live__cta {
        font-size: 16px;
        line-height: 135%;
    }
}

@media (max-width: 768px) {
    .people-why-us-live {
        margin-bottom: 44px;
        background-color: #e8e8e8;
    }

    .people-why-us-live__bg {
        display: none;
    }

    .people-why-us-live__inner {
        padding: 24px 16px 32px;
    }

    .people-why-us-live__header {
        margin-bottom: 24px;
    }

    .people-why-us-live__header-img {
        display: none;
    }

    /* Responsive card: blurred bg + "Live" + "fulfilled" in white box + tagline */
    .people-why-us-live__header-card {
        display: block;
        position: relative;
        border-radius: 4px;
        overflow: hidden;
        box-shadow: 0px 4px 28px 0px #0000001A;
        min-height: 170px;
        padding: 49px 24px;
        box-sizing: border-box;
    }

    /* Responsive card BG: mobile-specific image, no translucent overlay */
    .people-why-us-live__header-card-bg {
        position: absolute;
        inset: 0;
        background-image: url('../images/people/people-why-us-live-bg-mobile.png');
        background-size: cover;
        background-position: center;
    }

    /* Soft white overlay on top of mobile header image */
    .people-why-us-live__header-card-bg::after {
        content: '';
        position: absolute;
        inset: 0;
        background: rgba(255, 255, 255, 0.4);
    }

    .people-why-us-live__header-card-content {
        position: relative;
        z-index: 1;
        text-align: left;
    }

    /* Responsive: show image, hide text – same design, image replaces "Live fulfilled" */
    .people-why-us-live__header-card-img {
        display: block;
        width: 100%;
        max-width: 100%;
        height: auto;
        object-fit: contain;
        object-position: left center;
        margin: 0 auto;
    }

    .people-why-us-live__header-card-title,
    .people-why-us-live__header-card-subtitle {
        display: none !important;
    }

    .people-why-us-live__header-card-title {
        font-family: 'Open Sans', sans-serif;
        font-weight: 700;
        font-size: 2.2rem;
        line-height: 1.2;
        color: #000000;
        margin: 0 0 8px 0;
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        gap: 8px;
    }

    .people-why-us-live__header-card-accent-wrap {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background: #ffffff;
        padding: 4px 16px;
        border-radius: 0;
        box-shadow: none;
    }

    .people-why-us-live__header-card-accent {
        font-family: 'Great Vibes', cursive;
        font-weight: 400;
        font-size: 2rem;
        line-height: 1;
        color: #CC0000;
        letter-spacing: 0.02em;
    }

    .people-why-us-live__header-card-subtitle {
        font-family: 'Open Sans', sans-serif;
        font-weight: 400;
        font-size: 0.9375rem;
        line-height: 1.4;
        color: #171717;
        margin: 0;
    }

    /* Values list: red vertical line + stacked blocks + dark text + red Explore more */
    .people-why-us-live__cols {
        grid-template-columns: 1fr;
        min-height: 0;
        border-left: 1px solid #CC0000;
        padding-left: 16px;
        background: transparent;
        gap: 0;
    }

    .people-why-us-live__col {
        padding: 24px 0;
        border-top: none;
        border-right: none;
        border-left: none;
    }

    .people-why-us-live__col:first-child {
        border-left: none;
    }

    .people-why-us-live__col:nth-child(4),
    .people-why-us-live__col:nth-child(5) {
        border-top: none;
    }

    .people-why-us-live__col:last-child {
        border-bottom: none;
    }

    .people-why-us-live__col-title {
        font-size: 1.125rem;
        line-height: 135%;
        color: #171717;
    }

    .people-why-us-live__col-desc {
        font-size: 0.9375rem;
        line-height: 135%;
        color: #171717;
    }

    .people-why-us-live__cta {
        font-size: 0.9375rem;
        line-height: 135%;
        color: #CC0000;
        text-decoration: underline;
    }

    .people-why-us-live__cta:hover {
        color: #a30000;
    }

    /* Tooltip below button on narrow screens so it doesn’t overflow right */
    .people-why-us-live__tooltip {
        left: 0;
        right: auto;
        top: 100%;
        transform: none;
        margin-left: 0;
        margin-right: 0;
        margin-top: 4px;
        min-width: 240px;
        max-width: min(280px, calc(100vw - 48px));
    }

    .people-why-us-live__col:last-child .people-why-us-live__tooltip {
        left: 0;
        right: auto;
        margin-right: 0;
    }

    .people-why-us-live__tooltip::before {
        left: 24px;
        right: auto;
        top: -8px;
        transform: none;
        border-width: 0 8px 8px 8px;
        border-color: transparent transparent #fafafa transparent;
        filter: drop-shadow(0 -2px 1px rgba(0, 0, 0, 0.08));
    }

    .people-why-us-live__col:last-child .people-why-us-live__tooltip::before {
        left: 24px;
        right: auto;
    }
}

@media (max-width: 576px) {
    .people-why-us-live__tooltip {
        min-width: 220px;
        max-width: min(260px, calc(100vw - 40px));
    }

    .people-why-us-live {
        margin-bottom: 40px;
    }

    .people-why-us-live__header {
        margin-bottom: 24px;
    }

    .people-why-us-live__inner {
        padding: 28px 32px 0;
    }

    .people-why-us-live__header-img {
        width: 200px;
        height: 54px;
        max-width: 100%;
        object-fit: contain;
        object-position: left center;
    }

    .people-why-us-live__col-title {
        font-size: 21px;
        line-height: 135%;
    }

    .people-why-us-live__col-desc {
        font-size: 0.9375rem;
        line-height: 135%;
    }

    .people-why-us-live__cta {
        font-size: 0.9375rem;
        line-height: 135%;
    }
}

@media (max-width: 480px) {
    .people-why-us-live__tooltip {
        min-width: 200px;
        max-width: min(240px, calc(100vw - 32px));
    }

    .people-why-us-live {
        margin-bottom: 36px;
    }

    .people-why-us-live__header {
        margin-bottom: 20px;
    }

    .people-why-us-live__inner {
        padding: 26px 28px 0;
    }

    .people-why-us-live__header-img {
        width: 180px;
        height: 48px;
        max-width: 100%;
        object-fit: contain;
        object-position: left center;
    }

    .people-why-us-live__col-title {
        font-size: 18px;
        line-height: 135%;
    }

    .people-why-us-live__col-desc {
        font-size: 0.9375rem;
        line-height: 135%;
    }

    .people-why-us-live__cta {
        font-size: 0.9375rem;
        line-height: 135%;
    }
}

@media (max-width: 414px) {
    .people-why-us-live__tooltip {
        min-width: 307px;
        max-width: min(307px, calc(100vw - 28px));
    }

    .people-why-us-live {
        margin-bottom: 24px;
    }

    .people-why-us-live__header {
        margin-bottom: 18px;
    }

    .people-why-us-live__inner {
        padding: 24px 24px 0;
    }

    .people-why-us-live__header-img {
        width: 160px;
        height: 43px;
        max-width: 100%;
        object-fit: contain;
        object-position: left center;
    }

    .people-why-us-live__col-title {
        font-size: 18px;
        line-height: 135%;
    }

    .people-why-us-live__col-desc {
        font-size: 0.9375rem;
        line-height: 135%;
    }

    .people-why-us-live__cta {
        font-size: 0.9375rem;
        line-height: 135%;
    }
}

@media (max-width: 390px) {
    .people-why-us-live__header {
        margin-bottom: 16px;
    }

    .people-why-us-live__inner {
        padding: 22px 24px 0;
    }

    .people-why-us-live__header-img {
        width: 150px;
        height: 40px;
        max-width: 100%;
        object-fit: contain;
        object-position: left center;
    }

    .people-why-us-live__col-title {
        font-size: 18px;
        line-height: 135%;
    }

    .people-why-us-live__col-desc {
        font-size: 0.9375rem;
        line-height: 135%;
    }

    .people-why-us-live__cta {
        font-size: 0.9375rem;
        line-height: 135%;
    }
}

@media (max-width: 380px) {
    .people-why-us-live__header {
        margin-bottom: 24px;
    }

    .people-why-us-live__inner {
        padding: 0 15px;
        background: #F8F8F8;
    }

    .people-why-us-live__header-img {
        width: 145px;
        height: 39px;
        max-width: 100%;
        object-fit: contain;
        object-position: left center;
    }

    .people-why-us-live__col-title {
        font-size: 20px;
        line-height: 135%;
        margin-bottom: 8px;
    }

    .people-why-us-live__col-desc {
        font-size: 16px;
        line-height: 24px;
        margin-bottom: 8px;
    }

    .people-why-us-live__cta {
        text-decoration: none;
        font-weight: 700;
        font-size: 16px;
        line-height: 24px;
        letter-spacing: 0;
        color: #cc0000;
    }

    .people-why-us-live__cta:hover {
        color: #a30000;
    }
}

@media (max-width: 360px) {
    .people-why-us-live__tooltip {
        min-width: 160px;
        max-width: min(200px, calc(100vw - 24px));
    }

    .people-why-us-live {
        margin-bottom: 30px;
    }

    .people-why-us-live__header {
        margin-bottom: 14px;
    }

    .people-why-us-live__inner {
        padding: 20px 22px 0;
    }

    .people-why-us-live__header-img {
        width: 140px;
        height: 38px;
        max-width: 100%;
        object-fit: contain;
        object-position: left center;
    }

    .people-why-us-live__col-title {
        font-size: 18px;
        line-height: 135%;
    }

    .people-why-us-live__col-desc {
        font-size: 0.9375rem;
        line-height: 135%;
    }

    .people-why-us-live__cta {
        font-size: 0.9375rem;
        line-height: 135%;
    }
}

@media (max-width: 320px) {
    .people-why-us-live__tooltip {
        min-width: 140px;
        max-width: min(180px, calc(100vw - 20px));
    }

    .people-why-us-live {
        margin-bottom: 28px;
    }

    .people-why-us-live__header {
        margin-bottom: 12px;
    }

    .people-why-us-live__inner {
        padding: 18px 20px 0;
    }

    .people-why-us-live__header-img {
        width: 100%;
        height: auto;
        max-width: 100%;
        object-fit: contain;
        object-position: left center;
    }

    .people-why-us-live__col-title {
        font-size: 18px;
        line-height: 135%;
    }

    .people-why-us-live__col-desc {
        font-size: 0.9375rem;
        line-height: 135%;
    }

    .people-why-us-live__cta {
        font-size: 0.9375rem;
        line-height: 135%;
    }
}

@media (min-width: 1440px) {
    .people-why-us-live__inner {
        padding: 44px 62px 0;
    }

    .people-why-us-live__cols {
        min-height: 248px;
    }

    .people-why-us-live__col {
        padding-top: 18px;
        padding-bottom: 18px;
    }

    .people-why-us-live__header-img {
        width: 385px;
        height: 104px;
        max-width: 100%;
        object-fit: contain;
        object-position: left center;
    }

    .people-why-us-live__col-title {
        font-size: 23px;
        line-height: 135%;
    }

    .people-why-us-live__col-desc {
        font-size: 16px;
        line-height: 135%;
    }

    .people-why-us-live__cta {
        font-size: 16px;
        line-height: 135%;
    }
}

@media (min-width: 1536px) {
    .people-why-us-live {
        margin-bottom: 72px;
    }

    .people-why-us-live__inner {
        padding: 52px 72px 0;
    }

    .people-why-us-live__cols {
        min-height: 262px;
    }

    .people-why-us-live__col {
        padding-top: 20px;
        padding-bottom: 20px;
    }

    .people-why-us-live__header-img {
        width: 400px;
        height: 108px;
        max-width: 100%;
        object-fit: contain;
        object-position: left center;
    }

    .people-why-us-live__col-title {
        font-size: 23px;
        line-height: 135%;
    }

    .people-why-us-live__col-desc {
        font-size: 16px;
        line-height: 135%;
    }

    .people-why-us-live__cta {
        font-size: 16px;
        line-height: 135%;
    }
}

@media (min-width: 1920px) {
    .people-why-us-live {
        margin-bottom: 80px;
    }

    .people-why-us-live__inner {
        padding: 56px 80px 0;
    }

    .people-why-us-live__cols {
        min-height: 278px;
    }

    .people-why-us-live__col {
        padding-top: 22px;
        padding-bottom: 22px;
    }

    .people-why-us-live__header-img {
        width: 431px;
        height: 116px;
        max-width: 100%;
        object-fit: contain;
        object-position: left center;
    }

    .people-why-us-live__col-title {
        font-size: 23px;
        line-height: 135%;
    }

    .people-why-us-live__col-desc {
        font-size: 16px;
        line-height: 135%;
    }

    .people-why-us-live__cta {
        font-size: 16px;
        line-height: 135%;
    }
}

@media (min-width: 2560px) {
    .people-why-us-live__inner {
        padding: 60px 88px 0;
    }

    .people-why-us-live__cols {
        min-height: 295px;
    }
}

/* Why Us – two-column layout: intro left, three focus cards right (legacy/fallback) */
.people-why-us {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 2fr);
    gap: 60px;
    align-items: start;
    max-width: 100%;
    min-width: 0;
}

.people-why-us__intro {
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    font-style: normal;
    font-size: 23px;
    line-height: 135%;
    letter-spacing: 0;
    color: #000000;
    margin: 0;
    text-align: left;
    max-width: 22em;
}

.people-why-us__cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(160px, 1fr));
    row-gap: 24px;
    column-gap: 24px;
    gap: 24px;
    min-width: 0;
}

/* Card: light peach background, rounded corners, title top, graphic bottom centre */
.people-why-us__card {
    background: #FEEEE5;
    border-radius: 12px;
    padding: 24px 24px 24px 24px;
    width: 100%;
    max-width: 100%;
    height: auto;
    min-height: 71px;
    min-width: 0;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    border: 0;
    text-align: left;
    overflow: hidden;
}

.people-why-us__card--video {
    cursor: pointer;
}

.people-why-us__card--video:focus-visible {
    outline: 2px solid #CC0000;
    outline-offset: 3px;
}

.people-why-us__card-title {
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    font-style: normal;
    font-size: 23px;
    line-height: 30px;
    letter-spacing: 0;
    color: #171717;
    margin: 0 0 auto 0;
    text-align: left;
    word-wrap: normal;
    overflow-wrap: normal;
    min-width: 0;
    flex-shrink: 1;
}

.people-why-us__card-graphic {
    margin-top: auto;
    padding-top: 16px;
    height: 125px;
    min-height: 80px;
    overflow: visible;
    flex-shrink: 0;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    position: relative;
}

/* Graphic: lighter peach / cupped hands design, centered at bottom, visible */
.people-why-us__card-graphic img {
    width: auto;
    height: 100%;
    max-width: 125px;
    max-height: 125px;
    object-fit: contain;
    object-position: bottom center;
    display: block;
    vertical-align: bottom;
    filter: brightness(0.92) saturate(1.1);
}

@media (max-width: 1280px) {
    .people-why-us {
        gap: 56px;
    }

    .people-why-us--below-banner {
        margin-top: 44px;
        padding-left: 0;
        padding-right: 0;
    }

    .people-why-us__cards {
        row-gap: 24px;
        column-gap: 24px;
        gap: 24px;
    }

    .people-why-us__card {
        width: 100%;
        height: 256px;
        min-height: 71px;
        padding: 24px 24px 0px 24px;
    }

    .people-why-us__intro {
        font-size: 22px;
        line-height: 135%;
        letter-spacing: 0;
        color: #000000;
        font-weight: 600;
        max-width: 20em;
    }

    .people-why-us__card-title {
        font-size: 24px;
        line-height: 31px;
        letter-spacing: 0;
        color: #171717;
        font-weight: 600;
    }

    .people-why-us__card-graphic {
        height: 165px;
        min-height: 110px;
    }

    .people-why-us__card-graphic img {
        max-width: 165px;
        max-height: 165px;
    }
}

/* 1024px: small laptops / tablets landscape — smooth step between 1280 and 992 */
@media (max-width: 1024px) {
    .people-why-us {
        gap: 52px;
    }

    .people-why-us--below-banner {
        margin-top: 40px;
        padding-left: 0;
        padding-right: 0;
    }

    .people-why-us__cards {
        row-gap: 22px;
        column-gap: 22px;
        gap: 22px;
    }

    .people-why-us__card {
        width: 100%;
        height: 246px;
        min-height: 71px;
        padding: 24px;
    }

    .people-why-us__card-graphic {
        height: 145px;
        min-height: 95px;
    }

    .people-why-us__card-graphic img {
        max-width: 145px;
        max-height: 145px;
    }

    .people-why-us__intro {
        font-family: 'Open Sans', sans-serif;
        font-weight: 600;
        font-style: normal;
        font-size: 20px;
        line-height: 135%;
        letter-spacing: 0;
        color: #000000;
    }

    .people-why-us__card-title {
        font-size: 23px;
        line-height: 30px;
        letter-spacing: 0;
        color: #171717;
        font-weight: 600;
    }

    .people-why-us__card-graphic {
        height: 160px;
        min-height: 105px;
    }

    .people-why-us__card-graphic img {
        max-width: 160px;
        max-height: 160px;
    }
}

@media (max-width: 992px) {
    .people-why-us {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .people-why-us--below-banner {
        margin-top: 36px;
        padding-left: 0;
        padding-right: 0;
    }

    .people-why-us__intro {
        font-family: 'Open Sans', sans-serif;
        font-weight: 600;
        font-style: normal;
        font-size: 20px;
        line-height: 135%;
        letter-spacing: 0;
        color: #000000;
        max-width: 100%;
    }

    .people-why-us__cards {
        row-gap: 20px;
        column-gap: 20px;
        gap: 20px;
    }

    .people-why-us__card {
        width: 100%;
        height: auto;
        min-height: 71px;
        padding: 24px;
    }

    .people-why-us__card-title {
        font-size: 22px;
        line-height: 29px;
        letter-spacing: 0;
        color: #171717;
        font-weight: 600;
    }

    .people-why-us__card-graphic {
        height: 155px;
        min-height: 100px;
    }

    .people-why-us__card-graphic img {
        max-width: 155px;
        max-height: 155px;
    }
}

@media (max-width: 768px) {
    .people-why-us {
        gap: 44px;
    }

    .people-why-us--below-banner {
        margin-top: 32px;
        padding-left: 0;
        padding-right: 0;
    }

    .people-why-us__intro {
        font-family: 'Open Sans', sans-serif;
        font-weight: 600;
        font-style: normal;
        font-size: 20px;
        line-height: 135%;
        letter-spacing: 0;
        color: #000000;
    }

    .people-why-us__cards {
        row-gap: 20px;
        column-gap: 20px;
        gap: 20px;
    }

    .people-why-us__card {
        width: 100%;
        height: auto;
        min-height: 71px;
        padding: 16px 20px;
        box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
        display: flex;
        flex-direction: row;
        align-items: center;
    }

    .people-why-us__card-title {
        font-family: 'Open Sans', sans-serif;
        font-weight: 600;
        font-style: normal;
        font-size: 18px;
        line-height: 125%;
        letter-spacing: 0;
        color: #171717;
        margin: 0;
    }

    /* Hide graphic block on responsive (tablet & below) to simplify cards */
    .people-why-us__card-graphic {
        display: none;
    }
}

@media (max-width: 576px) {
    .people-why-us__card {
        padding: 14px 18px;
        border-radius: 10px;
        min-height: 71px;
    }

    .people-why-us__card-title {
        font-family: 'Open Sans', sans-serif;
        font-weight: 600;
        font-style: normal;
        font-size: 18px;
        line-height: 125%;
        letter-spacing: 0;
        color: #171717;
        margin: 0;
    }
}

/* 640px: tablets portrait / large phones landscape — smooth step between 768 and 576 */
@media (max-width: 640px) {
    .people-why-us {
        gap: 42px;
    }

    .people-why-us--below-banner {
        margin-top: 30px;
        padding-left: 0;
        padding-right: 0;
    }

    .people-why-us__intro {
        font-size: 20px;
        line-height: 135%;
    }

    .people-why-us__cards {
        row-gap: 18px;
        column-gap: 18px;
        gap: 18px;
    }

    .people-why-us__card {
        min-height: 71px;
        padding: 24px;
    }

    .people-why-us__card-title {
        font-size: 20px;
        line-height: 26px;
    }

    .people-why-us__card-graphic {
        height: 135px;
        min-height: 92px;
    }

    .people-why-us__card-graphic img {
        max-width: 135px;
        max-height: 135px;
    }
}

@media (max-width: 576px) {
    .people-why-us {
        gap: 40px;
    }

    .people-why-us--below-banner {
        margin-top: 28px;
        padding-left: 0;
        padding-right: 0;
    }

    .people-why-us__intro {
        font-size: 20px;
        line-height: 135%;
        letter-spacing: 0;
        color: #000000;
        font-weight: 600;
    }

    .people-why-us__cards {
        grid-template-columns: 1fr;
        row-gap: 20px;
        column-gap: 20px;
        gap: 20px;
    }

    .people-why-us__card {
        width: 100%;
        height: auto;
        min-height: 71px;
        padding: 24px;
    }

    .people-why-us__card-title {
        font-size: 21px;
        line-height: 27px;
        letter-spacing: 0;
        color: #171717;
        font-weight: 600;
    }

    .people-why-us__card-graphic {
        height: 140px;
        min-height: 95px;
    }

    .people-why-us__card-graphic img {
        max-width: 140px;
        max-height: 140px;
    }
}

@media (max-width: 480px) {
    .people-why-us {
        gap: 36px;
    }

    .people-why-us--below-banner {
        margin-top: 24px;
        padding-left: 0;
        padding-right: 0;
    }

    .people-why-us__cards {
        row-gap: 18px;
        column-gap: 18px;
        gap: 18px;
    }

    .people-why-us__intro {
        font-size: 20px;
        line-height: 135%;
        letter-spacing: 0;
        color: #000000;
        font-weight: 600;
    }

    .people-why-us__card {
        width: 100%;
        height: auto;
        min-height: 71px;
        padding: 24px;
    }

    .people-why-us__card-title {
        font-size: 20px;
        line-height: 25px;
        letter-spacing: 0;
        color: #171717;
        font-weight: 600;
    }

    .people-why-us__card-graphic {
        height: 125px;
        min-height: 85px;
    }

    .people-why-us__card-graphic img {
        max-width: 125px;
        max-height: 125px;
    }
}

@media (max-width: 414px) {
    .people-why-us {
        gap: 32px;
    }

    .people-why-us--below-banner {
        margin-top: 22px;
        padding-left: 0;
        padding-right: 0;
    }

    .people-why-us__cards {
        row-gap: 16px;
        column-gap: 16px;
        gap: 16px;
    }

    .people-why-us__intro {
        font-size: 20px;
        line-height: 135%;
        letter-spacing: 0;
        color: #000000;
        font-weight: 600;
    }

    .people-why-us__card-title {
        font-size: 18px;
        line-height: 24px;
        letter-spacing: 0;
        color: #171717;
        font-weight: 600;
    }

    .people-why-us__card {
        width: 100%;
        height: auto;
        min-height: 71px;
        padding: 24px;
    }

    .people-why-us__card-graphic {
        height: 120px;
        min-height: 72px;
    }

    .people-why-us__card-graphic img {
        max-width: 120px;
        max-height: 120px;
    }
}

/* 390px: iPhone 14 / small phones — smooth step between 414 and 380 */
@media (max-width: 390px) {
    .people-why-us {
        gap: 30px;
    }

    .people-why-us--below-banner {
        margin-top: 20px;
        padding-left: 0;
        padding-right: 0;
    }

    .people-why-us__cards {
        row-gap: 16px;
        column-gap: 16px;
        gap: 16px;
    }

    .people-why-us__intro {
        font-size: 20px;
        line-height: 135%;
        letter-spacing: 0;
        color: #000000;
        font-weight: 600;
    }

    .people-why-us__card-title {
        font-size: 17px;
        line-height: 22px;
        letter-spacing: 0;
        color: #171717;
        font-weight: 600;
    }

    .people-why-us__card {
        width: 100%;
        height: auto;
        min-height: 71px;
        padding: 24px;
    }

    .people-why-us__card-graphic {
        height: 100px;
        min-height: 68px;
    }

    .people-why-us__card-graphic img {
        max-width: 100px;
        max-height: 100px;
    }
}

@media (max-width: 380px) {
    .people-why-us {
        gap: 24px;
    }

    .people-why-us--below-banner {
        margin-top: 24px;
        padding-left: 0;
        padding-right: 0;
    }

    .people-why-us__cards {
        row-gap: 14px;
        column-gap: 14px;
        gap: 16px;
    }

    .people-why-us__intro {
        font-size: 20px;
        line-height: 135%;
        letter-spacing: 0;
        color: #000000;
        font-weight: 600;
    }

    .people-why-us__card-title {
        font-size: 18px;
        line-height: 21px;
        letter-spacing: 0;
        color: #171717;
        font-weight: 600;
    }

    .people-why-us__card {
        width: 100%;
        height: auto;
        min-height: 71px;
        padding: 24px;
    }

    .people-why-us__card-graphic {
        height: 110px;
        min-height: 72px;
    }

    .people-why-us__card-graphic img {
        max-width: 110px;
        max-height: 110px;
    }
}

@media (max-width: 360px) {
    .people-why-us {
        gap: 24px;
    }

    .people-why-us--below-banner {
        margin-top: 16px;
        padding-left: 0;
        padding-right: 0;
    }

    .people-why-us__cards {
        row-gap: 14px;
        column-gap: 14px;
        gap: 14px;
    }

    .people-why-us__intro {
        font-size: 20px;
        line-height: 135%;
        letter-spacing: 0;
        color: #000000;
        font-weight: 600;
    }

    .people-why-us__card {
        width: 100%;
        height: auto;
        min-height: 71px;
        padding: 24px;
    }

    .people-why-us__card-title {
        font-size: 17px;
        line-height: 22px;
        letter-spacing: 0;
        color: #171717;
        font-weight: 600;
    }

    .people-why-us__card-graphic {
        height: 105px;
        min-height: 60px;
    }

    .people-why-us__card-graphic img {
        max-width: 90px;
        max-height: 90px;
    }
}

@media (max-width: 320px) {
    .people-why-us {
        gap: 20px;
    }

    .people-why-us--below-banner {
        margin-top: 14px;
        padding-left: 0;
        padding-right: 0;
    }

    .people-why-us__cards {
        row-gap: 14px;
        column-gap: 14px;
        gap: 14px;
    }

    .people-why-us__intro {
        font-size: 20px;
        line-height: 135%;
        letter-spacing: 0;
        color: #000000;
        font-weight: 600;
    }

    .people-why-us__card {
        width: 100%;
        height: auto;
        min-height: 71px;
        padding: 24px;
        border-radius: 8px;
    }

    .people-why-us__card-title {
        font-size: 18px;
        line-height: 20px;
        letter-spacing: 0;
        color: #171717;
        font-weight: 600;
    }

    .people-why-us__card-graphic {
        height: 95px;
        min-height: 56px;
    }

    .people-why-us__card-graphic img {
        max-width: 95px;
        max-height: 95px;
    }
}

/* 1440px: large laptops / small desktops — smooth step between default and 1536 */
@media (min-width: 1440px) {
    .people-why-us {
        gap: 60px;
    }

    .people-why-us--below-banner {
        margin-top: 52px;
    }

    .people-why-us__cards {
        row-gap: 26px;
        column-gap: 26px;
        gap: 26px;
    }

    .people-why-us__card {
        width: 100%;
        height: 256px;
        min-height: 256px;
        padding: 24px 24px 0px 24px;
    }

    .people-why-us__card-graphic {
        height: 125px;
        min-height: 84px;
    }

    .people-why-us__card-graphic img {
        max-width: 125px;
        max-height: 125px;
    }

    .people-why-us__card-title {
        font-size: 23px;
        line-height: 30px;
        letter-spacing: 0;
        color: #171717;
        font-weight: 600;
    }
}

@media (min-width: 1536px) {
    .people-why-us {
        gap: 64px;
    }

    .people-why-us--below-banner {
        margin-top: 56px;
        padding-left: 0;
        padding-right: 0;
    }

    .people-why-us__intro {
        font-size: 24px;
        line-height: 135%;
        letter-spacing: 0;
        color: #000000;
        font-weight: 600;
        max-width: 24em;
    }

    .people-why-us__cards {
        row-gap: 28px;
        column-gap: 28px;
        gap: 28px;
    }

    .people-why-us__card {
        width: 100%;
        height: 266px;
        min-height: 266px;
        padding: 26px 26px 0px 26px;
    }

    .people-why-us__card-title {
        font-size: 24px;
        line-height: 32px;
        letter-spacing: 0;
        color: #171717;
        font-weight: 600;
    }

    .people-why-us__card-graphic {
        height: 130px;
        min-height: 88px;
    }

    .people-why-us__card-graphic img {
        max-width: 130px;
        max-height: 130px;
    }
}

@media (min-width: 1920px) {
    .people-why-us {
        gap: 72px;
    }

    .people-why-us--below-banner {
        margin-top: 60px;
        padding-left: 0;
        padding-right: 0;
    }

    .people-why-us__intro {
        font-size: 25px;
        line-height: 135%;
        letter-spacing: 0;
        color: #000000;
        font-weight: 600;
        max-width: 26em;
    }

    .people-why-us__cards {
        row-gap: 32px;
        column-gap: 32px;
        gap: 32px;
    }

    .people-why-us__card {
        width: 100%;
        height: 276px;
        min-height: 276px;
        padding: 28px 28px 0px 28px;
    }

    .people-why-us__card-title {
        font-size: 25px;
        line-height: 34px;
        letter-spacing: 0;
        color: #171717;
        font-weight: 600;
    }

    .people-why-us__card-graphic {
        height: 140px;
        min-height: 96px;
    }

    .people-why-us__card-graphic img {
        max-width: 140px;
        max-height: 140px;
    }
}

@media (min-width: 2560px) {
    .people-why-us {
        gap: 80px;
    }

    .people-why-us--below-banner {
        margin-top: 64px;
        padding-left: 0;
        padding-right: 0;
    }

    .people-why-us__intro {
        font-size: 26px;
        line-height: 135%;
        max-width: 28em;
    }

    .people-why-us__cards {
        row-gap: 36px;
        column-gap: 36px;
        gap: 36px;
    }

    .people-why-us__card {
        width: 100%;
        height: 286px;
        min-height: 286px;
        padding: 30px 30px 0px 30px;
    }

    .people-why-us__card-title {
        font-size: 26px;
        line-height: 34px;
    }

    .people-why-us__card-graphic {
        height: 145px;
        min-height: 100px;
    }

    .people-why-us__card-graphic img {
        max-width: 145px;
        max-height: 145px;
    }
}

@media (max-width: 992px) and (orientation: landscape) {
    .people-why-us__cards {
        grid-template-columns: repeat(3, 1fr);
        row-gap: 18px;
        column-gap: 18px;
        gap: 18px;
    }

    .people-why-us__card {
        width: 100%;
        height: auto;
        min-height: 160px;
        padding: 14px 14px 0px 14px;
    }

    .people-why-us__card-graphic {
        height: 120px;
        min-height: 80px;
    }

    .people-why-us__card-graphic img {
        max-width: 120px;
        max-height: 120px;
    }
}

@media (max-width: 768px) and (orientation: landscape) {
    .people-why-us__cards {
        grid-template-columns: repeat(3, 1fr);
        row-gap: 16px;
        column-gap: 16px;
        gap: 16px;
    }

    .people-why-us__card {
        width: 100%;
        height: auto;
        min-height: 150px;
        padding: 12px 12px 0px 12px;
    }
}

@media (max-width: 1280px) {
    .people-section-two__btn {
        padding: 18px 20px;
        font-size: 17px;
        line-height: 135%;
    }

    .people-section-two__btn.is-active {
        font-size: 17px;
        line-height: 135%;
    }

    .people-section-two > .people-section-two__container {
        padding: 52px 32px;
    }

    .people-section-two > .people-section-two__container.uk-container {
        padding-left: 32px;
        padding-right: 32px;
    }
}

@media (max-width: 1024px) {
    .people-section-two > .people-section-two__container {
        padding: 48px 28px;
    }

    .people-section-two > .people-section-two__container.uk-container {
        padding-left: 28px;
        padding-right: 28px;
    }
}

@media (max-width: 992px) {
    .people-section-two__nav {
        flex-direction: row;
    }

    .people-section-two__btn {
        flex: 1 1 calc(33.333% - 4px);
        padding: 16px 16px;
        font-size: 16px;
        line-height: 135%;
    }

    .people-section-two__btn.is-active {
        font-size: 16px;
        line-height: 135%;
    }

    .people-section-two > .people-section-two__container {
        padding: 44px 24px;
    }

    .people-section-two > .people-section-two__container.uk-container {
        padding-left: 24px;
        padding-right: 24px;
    }
}

@media (max-width: 768px) {
    .people-section-two__nav-wrapper {
        width: 100%;
        left: 0;
        right: auto;
        margin-left: 0;
        margin-right: 0;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
    }

    .people-section-two__nav-wrapper .uk-container {
        padding-left: 0px;
        padding-right: 0px;
    }

    .people-section-two__nav {
        flex-wrap: nowrap;
        min-width: max-content;
    }

    .people-section-two__btn {
        flex: 0 0 auto;
        padding: 16px 20px;
        font-size: 16px;
        line-height: 135%;
        white-space: nowrap;
    }

    .people-section-two__btn.is-active {
        font-size: 16px;
        line-height: 135%;
    }

    .people-section-two > .people-section-two__container {
        padding: 40px 20px;
    }

    .people-section-two > .people-section-two__container.uk-container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .people-section-two__heading {
        font-size: 1.375rem;
        margin-bottom: 16px;
    }

    .people-section-two__body {
        font-size: 0.9375rem;
    }
}

@media (max-width: 576px) {
    .people-section-two__btn {
        padding: 14px 16px;
        font-size: 15px;
        line-height: 135%;
    }

    .people-section-two__btn.is-active {
        font-size: 15px;
        line-height: 135%;
    }

    .people-section-two > .people-section-two__container {
        padding: 36px 16px;
    }

    .people-section-two > .people-section-two__container.uk-container {
        padding-left: 16px;
        padding-right: 16px;
    }
}

@media (max-width: 480px) {
    .people-section-two > .people-section-two__container {
        padding: 32px 16px;
    }

    .people-section-two > .people-section-two__container.uk-container {
        padding-left: 16px;
        padding-right: 16px;
    }

    .people-section-two__btn {
        padding: 14px 12px;
        font-size: 14px;
        line-height: 135%;
    }

    .people-section-two__btn.is-active {
        font-size: 14px;
        line-height: 135%;
    }

    .people-section-two__heading {
        font-size: 1.25rem;
        margin-bottom: 14px;
    }

    .people-section-two__body {
        font-size: 0.875rem;
    }
}

@media (max-width: 414px) {
    .people-section-two__btn {
        padding: 16px 24px;
        font-size: 13px;
        line-height: 135%;
    }

    .people-section-two__btn.is-active {
        font-size: 13px;
        line-height: 135%;
    }

    .people-section-two > .people-section-two__container {
        padding: 40px 14px;
    }

    .people-section-two > .people-section-two__container.uk-container {
        padding-left: 14px;
        padding-right: 14px;
    }
}

@media (max-width: 360px) {
    .people-section-two__btn {
        font-size: 12px;
        line-height: 135%;
    }

    .people-section-two__btn.is-active {
        font-size: 12px;
        line-height: 135%;
    }

    .people-section-two > .people-section-two__container {
        padding: 26px 12px;
    }

    .people-section-two > .people-section-two__container.uk-container {
        padding-left: 12px;
        padding-right: 12px;
    }
}

@media (max-width: 320px) {
    .people-section-two__btn {
        padding: 12px 10px;
        font-size: 11px;
        line-height: 135%;
    }

    .people-section-two__btn.is-active {
        font-size: 11px;
        line-height: 135%;
    }

    .people-section-two > .people-section-two__container {
        padding: 24px 12px;
    }

    .people-section-two > .people-section-two__container.uk-container {
        padding-left: 12px;
        padding-right: 12px;
    }
}

@media (min-width: 1536px) {
    .people-section-two__btn {
        padding: 22px 28px;
        font-size: 19px;
        line-height: 135%;
    }

    .people-section-two__btn.is-active {
        font-size: 19px;
        line-height: 135%;
    }

    .people-section-two__container {
        padding: 72px 0;
    }

    .people-section-two__heading {
        font-size: 1.625rem;
        margin-bottom: 24px;
    }

    .people-section-two__body {
        font-size: 1.0625rem;
    }
}

@media (min-width: 1920px) {
    .people-section-two__btn {
        font-size: 20px;
        line-height: 135%;
    }

    .people-section-two__btn.is-active {
        font-size: 20px;
        line-height: 135%;
    }

    .people-section-two__container {
        padding: 80px 0;
    }
}

/* ===== Our PRIDE Design (PRIDE cards + video grid) – design match ===== */
.people-section-two__pane--our-pride {
    margin: 0;
    padding: 0;
}

.people-section-two__pane--our-pride .people-section-two__container {
    padding: 0;
}

/* people-pride gap scale: base 60px. Responsive: 52(1280) → 48(1024) → 44(992) → 36(768) → 32(640) → 30(576) → 26(480) → 24(414) → 22(390/380) → 20(360) → 18(320). Large: 68(1536) → 76(1920) → 84(2560). Landscape: 36(992), 32(768), 28(576). */
.people-pride {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

/* Learning & Growth: reuse Our Capabilities card grid (capabilities.css) */
.people-section-two__pane--our-pride .people-pride__learning.cap-grid-wrap {
    padding: 0;
    max-width: 1288px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
}

.people-section-two__pane--our-pride .people-pride__learning .cap-grid {
    max-width: none;
    margin: 0;
}

/* Role-specific upskilling: zoom top crop hides neutral lower band in source asset */
.people-section-two__pane--our-pride .people-pride__learning .card-image--upskilling {
    object-fit: cover;
    object-position: top center;
    width: 100%;
    height: 130%;
    top: 0;
    left: 0;
}

@media (max-width: 768px) {
    .people-section-two__pane--our-pride .people-pride__learning.cap-grid-wrap {
        padding: 0;
    }

    .people-section-two__pane--our-pride .people-pride__learning .card-image--upskilling {
        height: 125%;
    }
}

/* PRIDE cards: 5 in a row, unique dark red/black patterns, rounded, white letter + phrase
 * Responsive: 5col(base) → 3col(992) → 2col(576). Gap: 24 → 20(1280) → 18(1024/992) → 16(768) → 14(640/576) → 12(480/414) → 11(390) → 10(380/360/320). Large: 28(1536) → 32(1920) → 36(2560). Padding L/R on mobile. */
.people-pride__cards {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 24px;
}

/* people-pride-card: design size 245×270, aspect 245/270. Responsive width scale, max-width:100% prevents overflow. */
.people-pride-card {
    width: 245px;
    max-width: 100%;
    aspect-ratio: 245 / 270;
    border-radius: 8px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-width: 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

/* P – red/black diagonal bands */
.people-pride-card--bg1 {
    background-color: #1a0505;
    background-image: url('../images/people/pride/pride-card-bg1.png');
}

/* R – diagonal geometric red */
.people-pride-card--bg2 {
    background-color: #0d0202;
    background-image: url('../images/people/pride/pride-card-bg2.png');
}

/* I – curved red satin ribbon */
.people-pride-card--bg3 {
    background-color: #1a0505;
    background-image: url('../images/people/pride/pride-card-bg3.png');
}

/* D – close-up red curved abstract */
.people-pride-card--bg4 {
    background-color: #0a0202;
    background-image: url('../images/people/pride/pride-card-bg4.png');
}

/* E! – red conical / 3d abstract composition */
.people-pride-card--bg5 {
    background-color: #1a0505;
    background-image: url('../images/people/pride/pride-card-bg5.png');
}

/* people-pride-card__letter: Open Sans Bold 700, base 48px, line-height 125%, responsive font-size. */
.people-pride-card__letter {
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 48px;
    line-height: 125%;
    letter-spacing: 0;
    color: #ffffff;
}

/* people-pride-card__phrase: Open Sans Bold 700, base 16px, line-height 135%, responsive font-size. */
.people-pride-card__phrase {
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 16px;
    line-height: 135%;
    letter-spacing: 0;
    color: #ffffff;
    opacity: 0.98;
}

.people-pride__videos {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 24px;
    align-items: start;
}

/* Single video card: rounded corners, subtle card shadow, thumbnail + play + green placeholder */
.people-pride-video {
    position: relative;
    display: block;
    border-radius: 4px;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    text-decoration: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07), 0 10px 24px rgba(0, 0, 0, 0.1);
    background: #e8e8e8;
}

.people-pride-video__thumb {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #e8e8e8;
}

.people-pride-video__thumb-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    background-color: #e8e8e8;
}

.people-pride-video__thumb--fallback {
    background-color: #f0f0f0;
    background-image: url('../images/circle-play-icon.svg');
    background-size: 56px 56px;
    background-position: center 42%;
    background-repeat: no-repeat;
}

.people-pride-video__caption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    margin: 0;
    padding: 28px 12px 12px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    font-size: 14px;
    line-height: 135%;
    color: #ffffff;
    text-align: left;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.72) 100%);
    box-sizing: border-box;
}

@media (prefers-reduced-motion: reduce) {
    .people-pride-video {
        transition: none;
    }
}

/* Play button: custom SVG (white circle, triangle, drop shadow) */
.people-pride-video__play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    width: 56px;
    height: 56px;
    background-image: url('../images/people/play-button.png');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

/* Placeholder: bright green, two lines, bottom half of thumbnail */
.people-pride-video__placeholder {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    font-family: 'Open Sans', sans-serif;
    font-size: clamp(0.75rem, 1.5vw, 0.9375rem);
    font-weight: 700;
    color: #16a34a;
    text-transform: uppercase;
    text-align: center;
    line-height: 1.4;
    padding: 0;
    width: max-content;
    max-width: calc(100% - 24px);
}

.people-pride-video__placeholder-note {
    display: block;
    font-weight: 400;
    font-size: 0.75em;
    text-transform: none;
    margin-top: 4px;
    color: #16a34a;
}

/* Our PRIDE responsive */
@media (max-width: 1280px) {
    .people-section-two__pane--our-pride {
        padding: 0;
    }

    .people-pride {
        gap: 52px;
    }

    .people-pride__cards {
        gap: 20px;
        padding-left: 24px;
        padding-right: 24px;
    }

    .people-pride-card {
        width: 100%;
        padding: 20px;
    }

    .people-pride-card__letter {
        font-size: 44px;
    }

    .people-pride-card__phrase {
        font-size: 15px;
    }

    .people-pride-card--bg1,
    .people-pride-card--bg2,
    .people-pride-card--bg3,
    .people-pride-card--bg4,
    .people-pride-card--bg5 {
        background-size: cover;
        background-position: center;
    }

    .people-pride__videos {
        gap: 20px;
        padding-left: 24px;
        padding-right: 24px;
    }

    .people-pride-video__play {
        width: 48px;
        height: 48px;
    }

    .people-pride-video__placeholder {
        bottom: 14px;
        padding: 5px 10px;
    }

    .people-pride-video__thumb {
        background-size: cover;
        background-position: center;
    }
}

@media (max-width: 1024px) {
    .people-pride {
        gap: 48px;
    }

    .people-pride__cards {
        gap: 18px;
        padding-left: 0;
        padding-right: 0;
    }

    .people-pride__videos {
        padding-left: 0;
        padding-right: 0;
    }

    .people-pride-card__letter {
        font-size: 40px;
    }

    .people-pride-card__phrase {
        font-size: 15px;
    }

    .people-pride-card {
        width: 100%;
    }
}

@media (max-width: 992px) {
    .people-section-two__pane--our-pride {
        padding: 0;
    }

    .people-pride {
        gap: 44px;
    }

    .people-pride__cards {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        grid-template-rows: auto auto;
        grid-template-areas: 'c1 c2 c3''c4 c5 .';
        gap: 18px;
        padding-left: 0;
        padding-right: 0;
    }

    .people-pride__cards>*:nth-child(1) {
        grid-area: c1;
    }

    .people-pride__cards>*:nth-child(2) {
        grid-area: c2;
    }

    .people-pride__cards>*:nth-child(3) {
        grid-area: c3;
    }

    .people-pride__cards>*:nth-child(4) {
        grid-area: c4;
    }

    .people-pride__cards>*:nth-child(5) {
        grid-area: c5;
    }

    .people-pride-card__letter {
        font-size: 36px;
    }

    .people-pride-card__phrase {
        font-size: 14px;
    }

    .people-pride-card {
        width: 100%;
    }

    .people-pride__videos {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 18px;
        padding-left: 0;
        padding-right: 0;
    }
}

@media (min-width: 1024px) {
    .people-pride__videos {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 24px;
        padding-left: 24px;
        padding-right: 24px;
    }
}

@media (max-width: 768px) {
    .people-section-two__pane--our-pride {
        padding: 0;
    }

    .people-pride {
        gap: 36px;
    }

    .people-pride__cards {
        gap: 16px;
        padding-left: 0;
        padding-right: 0;
    }

    .people-pride-card {
        width: 100%;
        padding: 18px;
    }

    .people-pride-card__letter {
        font-size: 32px;
    }

    .people-pride-card__phrase {
        font-size: 14px;
    }

    .people-pride-card--bg1,
    .people-pride-card--bg2,
    .people-pride-card--bg3,
    .people-pride-card--bg4,
    .people-pride-card--bg5 {
        background-size: cover;
        background-position: center;
    }

    /* Mobile-specific background images for PRIDE cards */
    .people-pride-card--bg1 {
        background-image: url('../images/people/pride/pride-card-bg1-mobile.png');
    }

    .people-pride-card--bg2 {
        background-image: url('../images/people/pride/pride-card-bg2-mobile.png');
    }

    .people-pride-card--bg3 {
        background-image: url('../images/people/pride/pride-card-bg3-mobile.png');
    }

    .people-pride-card--bg4 {
        background-image: url('../images/people/pride/pride-card-bg4-mobile.png');
    }

    .people-pride-card--bg5 {
        background-image: url('../images/people/pride/pride-card-bg5-mobile.png');
    }

    .people-pride__videos {
        gap: 16px;
        padding-left: 0;
        padding-right: 0;
    }

    .people-pride-video__play {
        width: 44px;
        height: 44px;
    }

    .people-pride-video__placeholder {
        bottom: 12px;
        padding: 4px 8px;
    }

    .people-pride-video__thumb {
        background-size: cover;
        background-position: center;
    }
}

@media (max-width: 640px) {
    .people-pride {
        gap: 32px;
    }

    .people-pride__cards {
        gap: 14px;
        padding-left: 0;
        padding-right: 0;
    }

    .people-pride__videos {
        padding-left: 0;
        padding-right: 0;
    }

    .people-pride-card__letter {
        font-size: 30px;
    }

    .people-pride-card__phrase {
        font-size: 13px;
    }

    .people-pride-card {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .people-section-two__pane--our-pride {
        padding: 0;
    }

    .people-pride {
        gap: 30px;
    }

    .people-pride__cards {
        grid-template-columns: 1fr;
        grid-template-areas:
            'c1'
            'c2'
            'c3'
            'c4'
            'c5';
        gap: 14px;
        padding-left: 0;
        padding-right: 0;
    }

    .people-pride__cards>*:nth-child(1) {
        grid-area: c1;
    }

    .people-pride__cards>*:nth-child(2) {
        grid-area: c2;
    }

    .people-pride__cards>*:nth-child(3) {
        grid-area: c3;
    }

    .people-pride__cards>*:nth-child(4) {
        grid-area: c4;
    }

    .people-pride__cards>*:nth-child(5) {
        grid-area: c5;
    }

    .people-pride-card {
        width: 100%;
        height: 120px;
        aspect-ratio: auto;
        padding: 16px;
    }

    .people-pride-card__letter {
        font-size: 28px;
    }

    .people-pride-card__phrase {
        font-size: 13px;
    }

    .people-pride-card--bg1,
    .people-pride-card--bg2,
    .people-pride-card--bg3,
    .people-pride-card--bg4,
    .people-pride-card--bg5 {
        background-size: cover;
        background-position: center center;
    }

    .people-pride__videos {
        grid-template-columns: 1fr;
        grid-template-areas: 'v1''v2''v3''v4''v5''v6';
        gap: 14px;
        padding-left: 0;
        padding-right: 0;
    }

    .people-pride-video {
        aspect-ratio: 16 / 9;
    }

    .people-pride__videos>*:nth-child(1) {
        grid-area: v1;
    }

    .people-pride__videos>*:nth-child(2) {
        grid-area: v2;
    }

    .people-pride__videos>*:nth-child(3) {
        grid-area: v3;
    }

    .people-pride__videos>*:nth-child(4) {
        grid-area: v4;
    }

    .people-pride__videos>*:nth-child(5) {
        grid-area: v5;
    }

    .people-pride__videos>*:nth-child(6) {
        grid-area: v6;
    }

    .people-pride-video__placeholder {
        bottom: 10px;
        padding: 4px 8px;
    }

    .people-pride-video__thumb {
        background-size: cover;
        background-position: center;
    }
}

@media (max-width: 480px) {
    .people-section-two__pane--our-pride {
        padding: 0;
    }

    .people-pride {
        gap: 26px;
    }

    .people-pride__cards {
        gap: 12px;
        padding-left: 0;
        padding-right: 0;
    }

    .people-pride-card {
        width: 100%;
        padding: 14px;
    }

    .people-pride-card__letter {
        font-size: 26px;
    }

    .people-pride-card__phrase {
        font-size: 12px;
    }

    .people-pride-card--bg1,
    .people-pride-card--bg2,
    .people-pride-card--bg3,
    .people-pride-card--bg4,
    .people-pride-card--bg5 {
        background-size: cover;
        background-position: center;
    }

    .people-pride__videos {
        gap: 24px;
        padding-left: 0;
        padding-right: 0;
    }

    .people-pride-video {
        aspect-ratio: 16 / 9;
    }

    .people-pride-video__play {
        width: 53.33px;
        height: 53.33px;
    }

    .people-pride-video__placeholder {
        bottom: 10px;
    }

    .people-pride-video__thumb {
        background-size: cover;
        background-position: center;
    }
}

@media (max-width: 414px) {
    .people-section-two__pane--our-pride {
        padding: 0;
    }

    .people-pride {
        gap: 24px;
    }

    .people-pride-card {
        width: 100%;
    }

    .people-pride-card__letter {
        font-size: 24px;
    }

    .people-pride-card__phrase {
        font-size: 12px;
    }

    .people-pride__cards {
        gap: 12px;
        padding-left: 0;
        padding-right: 0;
    }

    .people-pride__videos {
        padding-left: 0;
        padding-right: 0;
    }

    .people-pride-card--bg1,
    .people-pride-card--bg2,
    .people-pride-card--bg3,
    .people-pride-card--bg4,
    .people-pride-card--bg5 {
        background-size: cover;
        background-position: center;
    }

    .people-pride-video__thumb {
        background-size: cover;
        background-position: center 38%;
    }
}

@media (max-width: 390px) {
    .people-pride {
        gap: 22px;
    }

    .people-pride__cards {
        gap: 11px;
        padding-left: 12px;
        padding-right: 12px;
    }

    .people-pride__videos {
        padding-left: 12px;
        padding-right: 12px;
    }

    .people-pride-card__letter {
        font-size: 23px;
    }

    .people-pride-card {
        width: 100%;
    }

    .people-pride-card__phrase {
        font-size: 11px;
    }
}

@media (max-width: 380px) {
    .people-pride {
        gap: 24px;
    }

    .people-pride__cards {
        gap: 10px;
        padding-left: 0;
        padding-right: 0;
    }

    .people-pride__videos {
        padding-left: 12px;
        padding-right: 12px;
    }

    .people-pride-card {
        width: 100%;
        padding: 14px 0px 24px 24px;
    }

    .people-pride-card__letter {
        font-size: 48px;
    }

    .people-pride-card__phrase {
        font-size: 16px;
    }

    .people-pride-card--bg1,
    .people-pride-card--bg2,
    .people-pride-card--bg3,
    .people-pride-card--bg4,
    .people-pride-card--bg5 {
        background-size: cover;
        background-position: center;
    }

    .people-pride-video__thumb {
        background-size: cover;
        background-position: center 36%;
    }
}

@media (max-width: 360px) {
    .people-section-two__pane--our-pride {
        padding: 0;
    }

    .people-pride {
        gap: 20px;
    }

    .people-pride__cards {
        gap: 10px;
        padding-left: 12px;
        padding-right: 12px;
    }

    .people-pride__videos {
        gap: 10px;
        padding-left: 12px;
        padding-right: 12px;
    }

    .people-pride-card__letter {
        font-size: 21px;
    }

    .people-pride-card {
        width: 100%;
    }

    .people-pride-card__phrase {
        font-size: 11px;
    }

    .people-pride-video__thumb {
        background-size: cover;
        background-position: center 35%;
    }
}

@media (max-width: 320px) {
    .people-section-two__pane--our-pride {
        padding: 0;
    }

    .people-pride {
        gap: 18px;
    }

    .people-pride__cards {
        gap: 10px;
        padding-left: 12px;
        padding-right: 12px;
    }

    .people-pride__videos {
        padding-left: 12px;
        padding-right: 12px;
    }

    .people-pride-card {
        width: 100%;
        padding: 10px;
    }

    .people-pride-card__letter {
        font-size: 20px;
    }

    .people-pride-card__phrase {
        font-size: 10px;
    }

    .people-pride-card--bg1,
    .people-pride-card--bg2,
    .people-pride-card--bg3,
    .people-pride-card--bg4,
    .people-pride-card--bg5 {
        background-size: cover;
        background-position: center;
    }

    .people-pride-video__play {
        width: 36px;
        height: 36px;
    }

    .people-pride-video__placeholder {
        bottom: 8px;
        padding: 3px 6px;
        font-size: 0.65rem;
    }

    .people-pride-video__thumb {
        background-size: cover;
        background-position: center 35%;
    }
}

@media (min-width: 1536px) {
    .people-section-two__pane--our-pride {
        padding: 0;
    }

    .people-pride {
        gap: 68px;
    }

    .people-pride__cards {
        gap: 28px;
    }

    .people-pride-card {
        width: 100%;
        padding: 28px;
    }

    .people-pride-card__letter {
        font-size: 52px;
    }

    .people-pride-card__phrase {
        font-size: 17px;
    }

    .people-pride-card--bg1,
    .people-pride-card--bg2,
    .people-pride-card--bg3,
    .people-pride-card--bg4,
    .people-pride-card--bg5 {
        background-size: cover;
        background-position: center;
    }

    .people-pride__videos {
        gap: 28px;
    }

    .people-pride-video__play {
        width: 64px;
        height: 64px;
    }

    .people-pride-video__placeholder {
        bottom: 20px;
    }

    .people-pride-video__thumb {
        background-size: cover;
        background-position: center;
    }
}

@media (min-width: 1920px) {
    .people-section-two__pane--our-pride {
        padding: 0;
    }

    .people-pride {
        gap: 76px;
    }

    .people-pride__cards {
        gap: 32px;
    }

    .people-pride-card {
        width: 100%;
        padding: 32px;
    }

    .people-pride-card__letter {
        font-size: 56px;
    }

    .people-pride-card__phrase {
        font-size: 18px;
    }

    .people-pride-card--bg1,
    .people-pride-card--bg2,
    .people-pride-card--bg3,
    .people-pride-card--bg4,
    .people-pride-card--bg5 {
        background-size: cover;
        background-position: center;
    }

    .people-pride__videos {
        gap: 32px;
    }

    .people-pride-video__thumb {
        background-size: cover;
        background-position: center;
    }
}

@media (min-width: 2560px) {
    .people-pride {
        gap: 84px;
    }

    .people-pride__cards {
        gap: 36px;
    }

    .people-pride-card__letter {
        font-size: 60px;
    }

    .people-pride-card {
        width: 100%;
    }

    .people-pride-card__phrase {
        font-size: 19px;
    }
}

@media (max-width: 992px) and (orientation: landscape) {
    .people-pride {
        gap: 36px;
    }

    .people-pride-card__letter {
        font-size: 32px;
    }

    .people-pride-card {
        width: 100%;
    }

    .people-pride-card__phrase {
        font-size: 14px;
    }

    .people-pride__cards {
        grid-template-columns: repeat(5, minmax(0, 1fr));
        grid-template-areas: unset;
        gap: 12px;
        padding-left: 0;
        padding-right: 0;
    }

    .people-pride__cards>* {
        grid-area: unset !important;
    }

    .people-pride__videos {
        padding-left: 0;
        padding-right: 0;
    }

    .people-pride-card--bg1,
    .people-pride-card--bg2,
    .people-pride-card--bg3,
    .people-pride-card--bg4,
    .people-pride-card--bg5 {
        background-size: cover;
        background-position: center;
    }

    .people-pride-video__thumb {
        background-size: cover;
        background-position: center;
    }
}

@media (max-width: 768px) and (orientation: landscape) {
    .people-pride {
        gap: 32px;
    }

    .people-pride-card {
        width: 100%;
    }

    .people-pride-card__letter {
        font-size: 28px;
    }

    .people-pride-card__phrase {
        font-size: 13px;
    }

    .people-pride__cards {
        padding-left: 0;
        padding-right: 0;
    }

    .people-pride__videos {
        padding-left: 0;
        padding-right: 0;
    }
}

@media (max-width: 576px) and (orientation: landscape) {
    .people-pride {
        gap: 28px;
    }

    .people-pride__cards {
        padding-left: 0;
        padding-right: 0;
    }

    .people-pride__videos {
        padding-left: 0;
        padding-right: 0;
    }

    .people-pride-card {
        width: 100%;
    }

    .people-pride-card__letter {
        font-size: 26px;
    }

    .people-pride-card__phrase {
        font-size: 12px;
    }
}

/* ----- UIKit grid + DBS: ensure consistent spacing on all breakpoints ----- */
.people-about.uk-grid {
    gap: 60px;
}

@media (max-width: 992px) {
    .people-about.uk-grid {
        gap: 40px;
    }
}

@media (max-width: 576px) {
    .people-about.uk-grid {
        gap: 28px;
    }
}

@media (max-width: 380px) {
    .people-about.uk-grid {
        gap: 24px;
    }
}

/* Pop-up embed video modal (Our PRIDE video cards) */
/* Pop-up embed video modal (Our PRIDE video cards) */
.people-video-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    box-sizing: border-box;
}

.people-video-modal.is-hidden {
    display: none;
}

.people-video-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    cursor: pointer;
}

.people-video-modal__box {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 900px;
    background: transparent;
    border-radius: 0;
    overflow: visible;
    padding: 0;
    box-sizing: border-box;
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.5);
}

.people-video-modal__close {
    position: absolute;
    top: -16px;
    right: -16px;
    z-index: 3;
    width: 40px;
    height: 40px;
    padding: 0;
    border: 2px solid #ffffff;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.85);
    color: #ffffff;
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
}

.people-video-modal__close:hover,
.people-video-modal__close:focus {
    background: rgba(0, 0, 0, 1);
}

.people-video-modal__content {
    position: relative;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    background: transparent;
}

@media (max-width: 600px) {
    .people-video-modal {
        padding: 16px;
    }

    .people-video-modal__close {
        top: 8px;
        right: 8px;
        width: 32px;
        height: 32px;
        font-size: 1.25rem;
    }
}

.people-video-modal__iframe {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    border: 0;
}

.people-video-modal__iframe.is-hidden,
.people-video-modal__placeholder.is-hidden {
    display: none;
}

.people-video-modal__placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 24px;
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
}

/* Utility Classes */
.w-100 {
    width: 100%;
}