/* ============================================================
   Responsible towards Stakeholders
   (Human Capital · Safety · CSR)  — pages 100–139
   ============================================================ */

:root {
    --sgfp-navy: #21409a;
    --stk-blue: #21409a;
    --stk-orange: #f15a29;
    --stk-cyan: #0f99d6;
    --stk-line: #c9cdd2;
    --stk-soft: #eeeef7;
    --stk-soft2: #e5e6eb;
    --sgfp-grey: #8e9092;
    --sgfp-line: #c9cdd2;
    --grey: #e6e7e8;
    --orange_2: #fee3d3;
    --orange_3: #fccdb4;
    --orange_4: #feebe0;
    --tabBg_orange_1: #fef1e2;
    --tabBg_orange_2: #fccaaf;
    --tabBg_orange_3: #f79a70;
    --tabBg_orange_4: #fef7f0;
    --tabBg_orange_5: #feede1;
    --fff6ed: #fff6ed;
    --fee2d3: #fee2d3;
    --fff0e7: #fff0e7;
    --blueDark: #194b6d;
    --cfd2db: #cfd2db;
}

.bg_fff0e7 {
    background-color: var(--fff0e7);
}

.bg_fee2d3 {
    background-color: var(--fee2d3);
}

.bg_fff6ed {
    background-color: var(--fff6ed);
}

.bg_fef1e2 {
    background-color: var(--tabBg_orange_1) !important;
}

.bg_fccaaf {
    background-color: var(--tabBg_orange_2) !important;
}

.bg_f79a70 {
    background-color: var(--tabBg_orange_3) !important;
}

.bg_fef7f0 {
    background-color: var(--tabBg_orange_4) !important;
}

.bg_feede1 {
    background-color: var(--tabBg_orange_5) !important;
}

.bg_e6e7e8 {
    background-color: var(--grey) !important;
}

.bg_feebe0 {
    background-color: var(--orange_4) !important;
}

/* ---------- Section divider hero (cover) ---------- */
.sgfp-hero {
    position: relative;
    padding: 0;
    background-color: var(--blue);
    overflow: hidden;
    min-height: 70vh;
    display: flex;
    align-items: stretch;
}

.sgfp-hero__inner {
    display: flex;
    width: 100%;
    align-items: stretch;
}

.sgfp-hero__bar {
    flex: 0 0 200px;
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    border-radius: 0 0 220px 0;
}

.sgfp-hero__mediaInner {
    padding: 30px 0 0 30px;
    position: relative;

    &:before {
        height: 270px;
        width: 100%;
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        border: 1px solid #fff;
        border-bottom: 0px;
        border-right: 0;
        border-radius: 125px 0 0 0;
    }

    figure {
        height: 700px;
        border-radius: 100px 0 0 0px;
        overflow: hidden;
        border: 5px solid #fff;
        border-right: none;
        border-bottom: none;
        position: relative;
        z-index: 1;

        img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center center;
        }
    }
}

.sgfp-hero__title {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    color: #fff;
    font-family: 'Helvetica Neue';
    font-weight: 700;
    font-size: 40px;
    line-height: 1.15;
    letter-spacing: .5px;
    text-align: left;
    padding: 60px 0;
}

.sgfp-hero__media {
    flex: 1;
    background-size: cover;
    background-position: center;
    min-height: auto;
    padding-top: 70px;
}

/* ---------- Index / contents (tabs with arrow) ---------- */
.sgfp-index {
    padding-top: 70px;
    padding-bottom: 70px;
}

.sgfp-index__list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    max-width: 1100px;
}

.idx-card {
    display: flex;
    align-items: center;
    gap: 22px;
    padding: 22px 26px;
    border: 1px solid var(--sgfp-line);
    border-radius: 0 0 26px 0;
    background: #fff;
    transition: all .3s ease;
}

.idx-card:hover {
    box-shadow: 0 14px 34px rgba(33, 64, 154, .12);
    transform: translateY(-3px);
}

.idx-card__icon {
    flex: 0 0 58px;
    width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.idx-card__icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.idx-card__body {
    flex: 1;
}

.idx-card__title {
    font-size: 20px;
    font-weight: 700;
    color: var(--orange);
    margin-bottom: 4px;
}

.idx-card__page {
    font-size: 15px;
    font-weight: 700;
    color: #000;
}

.idx-card__arrow {
    flex: 0 0 auto;
    color: var(--sgfp-cyan);
    font-size: 20px;
    transition: transform .3s ease;
}

.idx-card:hover .idx-card__arrow {
    transform: translate(4px, -4px);
}

/* ============================================================
   Sub-section layout : sticky wheel sidebar + content
   ============================================================ */
.gov-section {
    padding-top: 0;
    padding-bottom: 0;
}

.gov-section__row {
    display: block;
    padding-left: 0px;
}

.gov-main {
    min-width: 0;
    padding: 0;
}

/* ---------- single fixed rail (one sticky sidebar) ---------- */
.gov-rail {
    position: sticky;
    left: 30px;
    top: 90px;
    /* transform: translateY(-50%); */
    width: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 30;
    /* opacity: 0; */
    /* visibility: hidden; */
    transition: opacity .4s ease, visibility .4s ease;
}

.gov-rail.is-visible {
    opacity: 1;
    visibility: visible;
}

.gov-rail .gov-aside__label {
    transition: color .35s ease;
}

/* orange */
.gov-rail.is-visible.is-orange {
    .wheel--tr.is-orange {
        .wheel__active {
            background-color: var(--orange);
        }
    }
}

.gov-rail.is-orange .gov-aside__label {
    color: var(--orange);
}

/* blueDark */
.gov-rail.is-visible.is-blueDark {
    .wheel--tl.is-blueDark {
        .wheel__active {
            background-color: var(--blueDark);
        }
    }
}

.gov-rail.is-blueDark .gov-aside__label {
    color: var(--blueDark);
}

/* ---------- The navigation wheel ---------- */
.wheel {
    position: relative;
    width: 210px;
    height: 210px;
    flex: 0 0 auto;
}

.wheel__ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 1px solid var(--sgfp-line);
    overflow: hidden;
    background: #fff;
}

/* divider lines inside ring */
.wheel__ring::before,
.wheel__ring::after {
    content: '';
    position: absolute;
    background: var(--sgfp-line);
}

.wheel__ring::before {
    left: 50%;
    top: 0;
    bottom: 0;
    width: 1px;
    transform: translateX(-.5px);
}

.wheel__ring::after {
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    content: normal;
    transform: translateY(-.5px);
}

/* active quarter disc (pops slightly beyond the ring) */
.wheel__active {
    position: absolute;
    width: 120px;
    height: 250px;
    background: var(--orange);
    z-index: 2;
    transition: background-color .35s ease;
}

.wheel__pointer {
    transition: transform .4s ease;
}

.wheel.is-cyan .wheel__active {
    background: var(--sgfp-cyan);
}

.wheel--tl .wheel__active {
    right: 50%;
    bottom: 50%;
    top: -20px;
    border-radius: 120px 0 0 120px;
}

.wheel--tr .wheel__active {
    left: 50%;
    top: -20px;
    bottom: 50%;
    border-radius: 0 120px 120px 0;
}

.wheel--bl .wheel__active {
    right: 50%;
    top: 50%;
    border-radius: 0 0 0 96px;
}

.wheel--br .wheel__active {
    left: 50%;
    top: 50%;
    border-radius: 0 0 96px 0;
}

/* quadrant icons */
.wheel__icon {
    position: absolute;
    width: 38px;
    height: 38px;
    transform: translate(-50%, -50%);
    z-index: 3;
}

.wheel__icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: .62;
}

.wheel__icon--tl {
    left: 13%;
    top: 48%;
}

.wheel__icon--tr {
    left: 87%;
    top: 48%;
}

/* .wheel__icon--bl {
    left: 26%;
    top: 74%;
}

.wheel__icon--br {
    left: 74%;
    top: 74%;
} */

/* active icon becomes white */
.wheel--tl .wheel__icon--tl img,
.wheel--tr .wheel__icon--tr img,
.wheel--bl .wheel__icon--bl img,
.wheel--br .wheel__icon--br img {
    filter: brightness(0) invert(1);
    opacity: 1;
}

/* centre hub + pointer */
.wheel__center {
    position: absolute;
    width: 86px;
    height: 86px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    border: 1px solid var(--sgfp-line);
    border-radius: 50%;
    z-index: 4;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wheel__pointer {
    color: var(--blue);
    font-size: 30px;
    line-height: 1;
}

.wheel.is-cyan .wheel__pointer {
    color: var(--orange);
}

.wheel--tr .wheel__pointer {
    transform: rotate(45deg);
}

.wheel--br .wheel__pointer {
    transform: rotate(90deg);
}

.wheel--bl .wheel__pointer {
    transform: rotate(180deg);
}

.wheel--tl .wheel__pointer {
    transform: rotate(225deg);
}


/* stem + vertical label */
.gov-aside__stem {
    width: 1px;
    height: 44px;
    background: var(--sgfp-line);
    margin: 6px 0 4px;
}

.gov-aside__label {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    font-family: 'Helvetica Neue';
    font-weight: 700;
    font-size: 48px;
    letter-spacing: .5px;
    color: var(--orange);
    text-align: left;
    padding: 30px 10px 80px 10px;
    position: relative;
    margin-top: -10px;

    &:before {
        width: 1px;
        height: 100%;
        background-image: linear-gradient(to top, #c9cdd2 0 78%, #fff 100% 100%);
        content: "";
        position: absolute;
        top: 0;
        left: 0;
    }

    &:after {
        width: 1px;
        height: 100%;
        background-image: linear-gradient(to top, #c9cdd2 0 78%, #fff 100% 100%);
        content: "";
        position: absolute;
        top: 0;
        right: 0;
    }
}

.gov-aside.is-cyan .gov-aside__label {
    color: var(--sgfp-cyan);
}

.stk_page p,
.stk_page li {
    font-family: 'Helvetica Neue';
}

.stk_page section {
    padding-top: 0;
    padding-bottom: 0;
}

/* Contain decorative card break-outs (safetyList 112% width, staggered
   cards, etc.) so they never trigger a page-level horizontal scrollbar.
   overflow-x: clip (not hidden) keeps the sticky nav wheel working. */
.stk_page {
    overflow-x: clip;
}

/* ============================================================
   1 · COVER / SECTION DIVIDER
   ============================================================ */
.imageHeaderBox {
    padding: 30px;
    position: relative;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding-bottom: 600px;

    &:before {
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        content: '';
        position: absolute;
        background-image: linear-gradient(180deg, rgba(255, 255, 255, 1) 20%, rgba(255, 255, 255, 0) 60%);
    }

    .headerBox {
        z-index: 2;
        position: relative;
    }
}

#sec-people {
    .imageHeaderBox {
        .resView {
            display: none;
        }
    }
}

.section_1 {
    .snapBoxwrap {
        .imgBox {}
    }
}

.stk-hero {
    position: relative;
    background-color: var(--stk-blue);
    overflow: hidden;
    min-height: 78vh;
    display: flex;
    align-items: stretch;
}

.stk-hero__inner {
    display: flex;
    width: 100%;
    align-items: stretch;
}

.stk-hero__bar {
    flex: 0 0 210px;
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.stk-hero__kicker {
    position: absolute;
    top: 50px;
    left: 50px;
    z-index: 3;
    color: #fff;
    font-size: 16px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 700;
}

.stk-hero__title {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    color: #fff;
    font-family: 'Helvetica Neue';
    font-weight: 700;
    font-size: 44px;
    line-height: 1.12;
    letter-spacing: .5px;
    padding: 60px 0;
}

.stk-hero__media {
    flex: 1;
    padding-top: 150px;
}

.stk-hero__mediaInner {
    padding: 30px 0 0 30px;
    position: relative;
}

.stk-hero__mediaInner::before {
    height: 270px;
    width: 100%;
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    border: 1px solid rgba(255, 255, 255, .6);
    border-bottom: 0;
    border-right: 0;
    border-radius: 125px 0 0 0;
}

.stk-hero__mediaInner figure {
    height: 640px;
    border-radius: 100px 0 0 0;
    overflow: hidden;
    border: 5px solid #fff;
    border-right: none;
    border-bottom: none;
    position: relative;
    z-index: 1;
    margin: 0;
}

.stk-hero__mediaInner figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* ============================================================
   2 · CONTENTS / INDEX
   ============================================================ */
.stk-index {
    padding: 70px 0;
}

.stk-index__list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.stk-idx-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px 26px;
    border: 1px solid var(--stk-line);
    border-radius: 0 0 26px 0;
    background: #fff;
    transition: all .3s ease;
    text-decoration: none;
}

.stk-idx-card:hover {
    box-shadow: 0 14px 34px rgba(33, 64, 154, .14);
    transform: translateY(-3px);
    border-color: var(--stk-blue);
}

.stk-idx-card__no {
    flex: 0 0 56px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--stk-blue);
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stk-idx-card__body {
    flex: 1;
}

.stk-idx-card__title {
    font-size: 19px;
    font-weight: 700;
    color: var(--stk-blue);
    margin-bottom: 4px;
    line-height: 1.2;
}

.stk-idx-card__page {
    font-size: 14px;
    font-weight: 700;
    color: #555;
}

.stk-idx-card__arrow {
    flex: 0 0 auto;
    color: var(--stk-orange);
    font-size: 20px;
    transition: transform .3s ease;
}

.stk-idx-card:hover .stk-idx-card__arrow {
    transform: translate(4px, -4px);
}

/* ============================================================
   SUB-SECTION SHELL
   ============================================================ */
.stk-sub {
    padding: 70px 0;
}

.stk-sub--alt {
    background: #f6f8fd;
}

/* numbered divider band */
.stk-band {
    position: relative;
    padding: 46px 0;
    margin-bottom: 50px;
    background: var(--stk-blue);
    border-radius: 0 0 120px 0;
    overflow: hidden;
}

.stk-band__no {
    position: absolute;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 150px;
    font-weight: 900;
    line-height: 1;
    color: rgba(255, 255, 255, .12);
    font-family: 'Helvetica Neue';
}

.stk-band__eyebrow {
    color: #ffd2c2;
    font-size: 15px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 8px;
}

.stk-band__title {
    color: #fff;
    font-size: 40px;
    font-weight: 700;
    line-height: 1.08;
    margin: 0;
    position: relative;
    z-index: 1;
}

/* ============================================================
   SHARED HEADINGS / BOXES
   ============================================================ */
.stk-h2 {
    font-size: 28px;
    font-weight: 700;
    /* color: var(--stk-blue); */
    line-height: 1.15;
    margin-bottom: 16px;
}

.stk-h3 {
    font-weight: 700;
    margin-bottom: 10px;
}

.stk-h4 {
    font-size: 18px;
    font-weight: 700;
    color: #111;
    margin-bottom: 8px;
}

.stk-lead {
    font-size: 19px;
    font-weight: 300;
    line-height: 1.6;
    font-family: 'Helvetica Neue';
    margin-bottom: 0;
}

.stk-block {
    margin-bottom: 50px;
}

.stk-pill {
    display: inline-block;
    background: var(--stk-orange);
    color: #fff;
    font-size: 20px;
    font-weight: 400;
    padding: 10px 30px;
    border-radius: 0 0 16px 0;
    margin-bottom: 22px;
}

.stk-box {
    border: 1px solid var(--stk-line);
}

.stk_block_112 {
    .stk-meta__card {
        position: relative;

        &:before {
            left: 15px;
            right: 15px;
            height: 1px;
            content: '';
            bottom: -15px;
            position: absolute;
            background-color: var(--orange);
        }

        &:after {
            top: 0;
            right: 0;
            bottom: 0;
            width: 1px;
            content: '';
            position: absolute;
            background-color: var(--orange);
        }

        &:nth-child(3n) {
            &:after {
                content: normal;
            }
        }

        &:nth-last-child(1),
        &:nth-last-child(2),
        &:nth-last-child(3) {
            &:before {
                content: normal;
            }
        }
    }

    &.stk_block_212 {
        .stk-meta__card {
            &:before {
                background-color: var(--blueDark);
            }

            &:after {
                background-color: var(--blueDark);
            }
        }
    }
}

.stk_block_116 {
    .row_1 {
        .col_1 {
            padding-top: 20px;

            .stk-box {
                height: 264px;
            }

        }
    }
}

.top_min_25 {
    margin-top: -25px;
}

.stk_block_119 {
    .pillar-grid {
        .pillar-card {
            &:not(:last-child) {
                border-right: 1px solid var(--orange);
            }

            .pillar-card__head {
                min-height: 65px;
            }
        }
    }
}

.stk_block_121 {

    .col_1,
    .col_2 {
        margin-top: 30px;
        padding-left: 15px;
        padding-right: 50px;

        .col_inner {
            margin-top: -20px;
            position: relative;
            padding-left: 20px;
            border-radius: 0 0 0 20px;
            border-left: 1px solid #000;
            border-bottom: 1px solid #000;

            .col_inner_cont {
                top: 20px;
                position: relative;
            }
        }

        .stk-h3 {
            top: -35px;
            left: -55px;
        }
    }

    .genList {
        position: relative;
        margin-top: 20px;
        display: flex;
        flex-direction: column;

        &:after {
            right: 140px;
            bottom: 30px;
            content: '';
            width: 260px;
            height: 120px;
            position: absolute;
            background-size: contain;
            background-repeat: no-repeat;
            background-image: url(../images/stakeholders/brAbs.png);
        }

        li {
            width: 70%;
            max-width: 320px;
            position: relative;
            display: inline-flex;

            &:nth-child(1) {
                z-index: 3;
            }

            &:nth-child(2) {
                z-index: 2;
                margin-top: -30px;
                padding-top: 30px !important;
                margin-left: 15%;
            }

            &:nth-child(3) {
                z-index: 1;
                margin-top: -30px;
                padding-top: 30px !important;
                margin-left: 30%;
            }
        }
    }
}

.stk_block_122 {
    .pillarList {
        display: flex;
        gap: 30px;

        li {
            width: 33.33%;

            .pillarBlock {
                height: 160px;
                padding: 30px;
                display: flex;
                border: 1px solid var(--orange);
                border-left: 0;
                position: relative;
                align-items: center;
                border-radius: 0 30px 30px 0;

                &:after {
                    top: 30px;
                    bottom: 30px;
                    width: 7px;
                    right: -4px;
                    content: '';
                    margin: auto;
                    position: absolute;
                    background-color: var(--orange);
                }
            }
        }
    }
}

.stk_block_123 {
    .vmRow {
        padding: 50px 0 30px;

        .vm-card {
            position: relative;

            &:after {
                left: 20px;
                top: -20px;
                height: 2px;
                width: 200px;
                content: '';
                margin: auto;
                position: absolute;
                background-color: var(--orange);
            }

            figure {
                width: 80px;
                padding: 10px;
                display: flex;
                align-items: center;
                justify-content: center;

                img {
                    display: inline-block;
                }
            }

            .cardCont {
                width: calc(100% - 80px);
                padding-left: 20px;
            }
        }
    }
}

.stk_block_128 {

    .col_1,
    .col_2 {
        .col_inner {
            position: relative;
            padding-left: 20px;
            padding-right: 20px;
            border-radius: 0 0 0 20px;

            .col_inner_cont {
                top: 20px;
                position: relative;

                .stk-h3 {
                    top: -25px;
                    left: -50px;
                }
            }
        }
    }

    .safetyList {
        position: relative;
        margin-top: 20px;

        li {
            padding: 30px;
            width: 112%;
            position: relative;
            margin-bottom: 0 !important;
            border: 1px solid var(--orange);

            &:nth-child(2) {
                top: -1px;
            }

            &:nth-child(3) {
                top: -2px;
            }

            &:nth-child(odd) {
                left: -40px;
                border-right: 0;
                border-radius: 30px 0 0 30px;
            }

            &:nth-child(even) {
                right: 10px;
                border-left: 0;
                border-radius: 0 30px 30px 0;
            }
        }
    }
}

.stk_block_129 {
    .stk-box {
        border-radius: 0 0 30px 30px;
    }
}

.stk_block_130 {
    .pillarList {
        li {
            .pillarBlock {
                padding: 30px;
                display: flex;
                flex-wrap: wrap;
                border: 1px solid var(--orange);
                border-left: 0;
                position: relative;
                align-items: center;
                border-radius: 0 30px 30px 0;

                &::after {
                    top: 30px;
                    bottom: 30px;
                    width: 7px;
                    right: -4px;
                    content: "";
                    margin: auto;
                    position: absolute;
                    background-color: var(--orange);
                }

                h4 {
                    &.mb-0 {
                        top: -30px;
                        left: -30px;
                        position: relative;
                    }
                }

                ul {
                    width: 100%;
                }
            }
        }
    }
}

.stk_block_131 {
    .pillarBlock {
        padding: 30px;
        display: flex;
        flex-wrap: wrap;
        border: 1px solid var(--orange);
        border-left: 0;
        position: relative;
        align-items: center;
        border-radius: 0 30px 30px 0;

        &::after {
            top: 30px;
            bottom: 30px;
            width: 7px;
            right: -4px;
            content: "";
            margin: auto;
            position: absolute;
            background-color: var(--orange);
        }

        h4 {
            &.mb-0 {
                top: -30px;
                left: -30px;
                position: relative;
            }
        }

        ul {
            width: 100%;
        }
    }
}

.stk_block_132,
.stk_block_133 {
    .row_1 {
        .col_2 {
            .col_2_inner {
                overflow: hidden;
                border-radius: 20px 20px;

                .col_2_inner_box {
                    overflow: hidden;
                    margin-bottom: 30px;
                    border-radius: 0 0 20px 20px;
                }
            }
        }
    }
}

.stk_block_134 {
    .row_2_wrap {
        margin-left: 20px;

        .stk-h3 {
            left: -60px;
            position: relative;
        }
    }
}

.stk_block_135 {
    .col_2_inner {
        .eachBox {
            &:not(:last-child) {
                margin-bottom: 15px;
                padding-bottom: 5px;
                border-bottom: 1px solid #fff;
            }
        }
    }
}

.stk_block_136 {
    .numBox {
        padding: 15px 15px 15px 0;
    }
}

/* --------------------------- */
.blueTextDk {
    color: var(--blueDark);
}

.blueBgDk {
    background-color: var(--blueDark);
}

.bg_f47c4b {
    background-color: #f47c4b;
}

.bg_f69267 {
    background-color: #f69267;
}

.bg_f9a983 {
    background-color: #f9a983;
}

.stk_block_137 {
    .col_inner {
        min-height: 200px;
    }

    .row_2 {
        z-index: 1;
        position: relative;

        .commCol {
            width: 33.33%;
            padding: 30px;
            position: relative;
            border: 1px solid #000;

            &:nth-child(1) {
                border-left: 0;
                border-bottom: 0;
                padding-left: 0;
                border-radius: 0 30px 0 0;
            }

            &:nth-child(2) {
                left: -1px;
                bottom: -40px;
                border-top: 0;
                border-radius: 0 0 30px 30px;
            }

            &:nth-child(3) {
                left: -2px;
                border-right: 0;
                border-bottom: 0;
                padding-right: 0;
                border-radius: 30px 0 0 0;
            }
        }

        .col_inner_wrap {
            left: -40px;
            border-right: 0;
        }
    }

    .row_3 {
        z-index: 0;
        ;
        position: relative;
    }
}

.stk_block_138 {
    & .safetyList {
        & li {
            &:nth-child(odd) {
                left: -50px;
            }

            &:nth-child(even) {
                right: 20px;
                border-left: 0;
                border-radius: 0 30px 30px 0;
            }
        }
    }
}


#sec-csr {
    .stk-pill {
        background-color: var(--blueDark);
    }

    .snap-card__num {
        color: var(--blueDark);
    }

    .snap-card__icon img.arrowIcon {
        background-color: var(--blueDark);
    }

    .bg_cfd2db {
        background-color: var(--cfd2db);
    }

    .stk_block_213 {
        .row_2 {
            width: 100%;

            .eachBoxWrap {
                width: 100%;
                display: flex;
                align-items: flex-start;

                .eachBox {
                    width: 20%;
                    display: flex;
                    align-items: center;
                    flex-direction: column;

                    .imgBox {
                        figure {
                            width: 80px;
                            height: 80px;
                            display: flex;
                            padding: 14px;
                            border-radius: 8px;
                            align-items: center;
                            justify-content: center;
                            background-color: var(--white);
                            border: 1px solid var(--blueDark);

                            img {
                                width: auto;
                                height: auto;
                                object-fit: contain;
                            }
                        }

                        figure+img {
                            width: 20px;
                            display: block;
                            margin: 2px auto 0;
                        }
                    }

                    .imgCont {
                        padding: 8px;
                        font-size: 18px;
                        font-weight: 400;
                        line-height: 1.2;
                        text-align: center;
                    }
                }
            }
        }

    }

    .stk_block_215 {
        .row_2 {
            .numBox {
                padding-top: 0;
                padding-bottom: 0;
            }

            .subRow_2 {
                padding-bottom: 20px;
                border-bottom: 1px solid #8ca5b6;
            }
        }

        .row_3 {
            .col_2 {
                .iconBoxWrap {
                    .iconBox {
                        width: calc(25% - 10px);
                        margin-right: 10px;
                        margin-bottom: 15px;

                        figure {
                            width: 100%;
                            display: flex;
                            padding: 10px;
                            align-items: center;
                            justify-content: center;

                            img {
                                width: 100%;
                                height: 100%;
                            }
                        }
                    }
                }
            }
        }

        .row_4 {
            .commCol {
                &:after {
                    top: 0;
                    right: 0;
                    content: '';
                    width: 40px;
                    z-index: -1;
                    height: 200px;
                    position: absolute;
                    transform: rotate(135deg);
                    background-color: #adb2c3;
                }

                .bg_e0e0f1 {
                    display: flex;
                    height: 240px;
                    position: relative;
                    margin-bottom: 30px;
                    align-items: center;
                    justify-content: center;
                }

                &:nth-child(3n) {
                    &:after {
                        content: normal;
                    }
                }
            }
        }

        .row_5,
        .row_6,
        .row_7,
        .row_8,
        .row_9,
        .row_10,
        .row_11 {
            .col_1 {
                .numBlock {
                    padding: 30px;
                    position: relative;
                    border-radius: 20px;
                    border: 1px solid #194b6d;

                    span.arrBox {
                        top: -25px;
                        left: 50%;
                        margin: auto;
                        border-radius: 8px;
                        padding: 8px 15px;
                        position: absolute;
                        background-color: #adb2c3;
                        transform: translateX(-50%);
                    }

                    .numBlockWrap {
                        .numList {
                            display: flex;
                            flex-wrap: wrap;
                            justify-content: space-between;

                            li {
                                width: calc(50% - 30px);
                                margin-bottom: 20px;

                                &.brBtm_1_194b6d {
                                    padding-bottom: 20px;
                                    border-bottom: 1px solid #194b6d;
                                }
                            }
                        }
                    }
                }
            }
        }

        .row_12,
        .row_13 {
            .case-card__tag {
                background-color: var(--blueDark);

                &:before {
                    background-image: url(../images/stakeholders/absClamp_2.png) !important;
                }
            }
        }
    }

    .stk_block_216 {

        .row_1,
        .row_2 {
            .col_1 {
                .numBlock {
                    padding: 30px;
                    position: relative;
                    border-radius: 20px;
                    border: 1px solid #194b6d;

                    span.arrBox {
                        top: -25px;
                        left: 50%;
                        margin: auto;
                        border-radius: 8px;
                        padding: 8px 15px;
                        position: absolute;
                        background-color: #adb2c3;
                        transform: translateX(-50%);
                    }

                    .numBlockWrap {
                        .numList {
                            display: flex;
                            flex-wrap: wrap;
                            justify-content: space-between;

                            li {
                                width: calc(50% - 30px);
                                margin-bottom: 20px;

                                &.brBtm_1_194b6d {
                                    padding-bottom: 20px;
                                    border-bottom: 1px solid #194b6d;
                                }
                            }
                        }
                    }
                }
            }
        }
    }

    .stk_block_217 {

        .row_1,
        .row_2,
        .row_3 {
            .col_1 {
                .numBlock {
                    padding: 30px;
                    position: relative;
                    border-radius: 20px;
                    border: 1px solid #194b6d;

                    span.arrBox {
                        top: -25px;
                        left: 50%;
                        margin: auto;
                        border-radius: 8px;
                        padding: 8px 15px;
                        position: absolute;
                        background-color: #adb2c3;
                        transform: translateX(-50%);
                    }

                    .numBlockWrap {
                        .numList {
                            display: flex;
                            flex-wrap: wrap;
                            justify-content: space-between;

                            li {
                                width: calc(50% - 30px);
                                margin-bottom: 20px;

                                &.brBtm_1_194b6d {
                                    padding-bottom: 20px;
                                    border-bottom: 1px solid #194b6d;
                                }
                            }
                        }
                    }
                }
            }
        }
    }

    .stk_block_217 {

        .row_1,
        .row_2,
        .row_3 {
            .col_1 {
                .numBlock {
                    .numBlockWrap {
                        .numList {
                            li {
                                &:nth-child(7) {
                                    border-bottom: none !important;
                                }
                            }
                        }
                    }
                }
            }
        }
    }

    .numBlock {
        .numBlockWrap {
            .numList {
                li {
                    position: relative;

                    &:nth-child(odd) {
                        &:after {
                            top: 0;
                            right: -30px;
                            bottom: 0;
                            content: '';
                            width: 1px;
                            position: absolute;
                            background-color: #194b6d;
                        }
                    }
                }
            }
        }
    }
}

.borderTextBox {
    padding: 20px;
    border-radius: 0 30px 30px 0;
    border: 1px solid #fff;
    border-left: none;
}

.bg_abb1c1 {
    background-color: #abb1c1;
}

.bg_959db2 {
    background-color: #959db2;
}

.bg_ececef {
    background-color: #ececef;
}

.bg_c3c6d2 {
    background-color: #c3c6d2;
}

.bg_6e7c96 {
    background-color: #6e7c96;
}

.bg_adb2c3 {
    background-color: #adb2c3;
}


.bg_e0e0f1 {
    background-color: #e0e0f1;
}

.bg_fce1d1 {
    background-color: #fce1d1;
}

.bg_fac8ae {
    background-color: #fac8ae;
}

.bg_f7a882 {
    background-color: #f7a882;
}

.stk-box--blue {
    background: var(--stk-blue);
    border-color: var(--stk-blue);
    color: #fff;
}

.stk-box--soft {
    background: var(--stk-soft);
    border-color: transparent;
}

.stk-box--blue p,
.stk-box--blue li,
.stk-box--blue h2,
.stk-box--blue h3,
.stk-box--blue h4,
.stk-box--blue h5,
.stk-box--blue h6,
.stk-box--blue strong {
    color: #fff !important;
}

/* white bullets inside blue boxes (project whiteLi.png asset is absent) */
.stk-box--blue .customList li::before,
.customList.whiteList li::before {
    background: #fff !important;
}

/* keep nested impact cards readable even on a blue panel */
.stk-box--blue .impact-card {
    background: #fff;
}

.stk-box--blue .impact-card b {
    color: var(--stk-blue) !important;
}

.stk-box--blue .impact-card span {
    color: #333 !important;
}

/* intro on image background */
.stk-introBox {
    padding: 36px;
    position: relative;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding-bottom: 360px;
    border-radius: 0 0 40px 0;
    overflow: hidden;
    margin-bottom: 40px;
}

.stk-introBox::before {
    inset: 0;
    content: '';
    position: absolute;
    background-image: linear-gradient(180deg, #fff 24%, rgba(255, 255, 255, 0) 70%);
}

.stk-introBox__inner {
    position: relative;
    z-index: 2;
    max-width: 920px;
}

.stk-introBox__inner .stk-h2 {
    font-size: 40px;
    margin-bottom: 18px;
}

/* ============================================================
   LEADERSHIP QUOTE
   ============================================================ */
/* .stk-quote {
    border-radius: 0 0 30px 0;
    overflow: hidden;
    margin-bottom: 50px;
    border: 1px solid var(--stk-line);
}

.stk-quote__text {
    padding: 40px;
    position: relative;
}


.stk-quote__text p {
    font-weight: 400;
    font-size: 22px;
    line-height: 1.55;
    font-family: 'Helvetica Neue';
    position: relative;
    z-index: 1;
    color: var(--blue);
}

.stk-quote__who {
    background: var(--stk-blue);
    color: #fff;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.stk-quote__who b {
    font-size: 22px;
    display: block;
    margin-bottom: 6px;
}

.stk-quote__who span {
    font-size: 15px;
    color: #cfe0ff;
} */
.quoteText {
    padding: 40px;
    background-color: #e6e7e8;
    border-radius: 20px 20px 0 20px;
    position: relative;
    margin-bottom: 40px;

    &:after {
        width: 140px;
        height: 115px;
        position: absolute;
        right: -1px;
        top: 100%;
        content: "";
        background: url(../images/stakeholders/quote-icon.png) no-repeat center center;
        background-size: 100%;
    }

    p {
        color: var(--sgfp-navy) !important;

        &.blackText {
            color: #000 !important;
        }
    }
}

/* ============================================================
   PERFORMANCE SNAPSHOT
   ============================================================ */
.snap-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.snap-grid--3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.snapNumWrap {
    .snapNum {
        margin-bottom: 15px;
        padding-bottom: 15px;
        border-bottom: 1px solid #000;
    }
}

.snap-card {
    background: #fff;
    transition: all .3s ease;
}

.snap-card:hover {
    padding: 20px;
    box-shadow: 0 12px 28px rgba(33, 64, 154, .1);
}

.snap-card__icon {
    width: 80px;
    height: 80px;
    padding: 16px;
    position: relative;
    border-radius: 10px;
    border: 1px solid #000;
    margin-bottom: 16px;
}

.snap-card__icon figure {
    display: flex;
    align-items: center;
    justify-content: center;
}

.snap-card__icon figure img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.snap-card__icon img.arrowIcon {
    left: 0;
    right: 0;
    bottom: -6px;
    width: 20px;
    padding: 5px;
    display: block;
    margin: 0 auto;
    position: absolute;
    border-radius: 4px;
    background-color: var(--stk-orange);
}

.snap-card__num {
    color: var(--stk-orange);
    line-height: 1;
    margin-bottom: 5px;
}

/* .snap-card__label {
    font-size: 15px;
    line-height: 1.45;
    color: #222;
    margin: 0;
} */

.snap-group__head {
    font-size: 16px;
    font-weight: 700;
    color: var(--stk-blue);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 26px 0 14px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--stk-soft);
}

/* ============================================================
   META PANEL  (Capital / Material Issues / Risks / SDG …)
   ============================================================ */
.stk-meta {
    margin-top: 14px;
}

.stk-meta__card {
    margin-bottom: 30px;
}

.fz_18_box {
    * {
        font-size: 18px !important;
    }
}

.stk-meta__card h5 {
    letter-spacing: .5px;
    color: var(--blueDark);
    margin-bottom: 12px;
}

.stk-meta__card ul li {
    position: relative;
    padding-left: 16px;
    font-size: 14.5px;
    line-height: 1.4;
    margin-bottom: 8px;
}

.stk-meta__card ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 7px;
    height: 7px;
    border-radius: 2px;
    background: var(--stk-blue);
}

.stk-meta__card p {
    font-size: 15px;
    margin: 0;
}

.sdg-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.sdg-row img {
    width: 52px;
    height: 52px;
    border-radius: 6px;
}

/* ============================================================
   PILLARS / NUMBERED CARDS
   ============================================================ */
.pillar-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0px;
    margin-top: 10px;
}

.pillar-grid--3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.pillar-grid--2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.pillar-card {
    border-radius: 15px;
    overflow: hidden;
    display: flex;
    flex-direction: column;

    &:nth-child(odd) {
        background-color: var(--orange_2);
    }

    &:nth-child(even) {
        background-color: var(--orange_3);
    }
}

.pillar-card__head {
    color: #000;
    /* min-height: 85px; */
    padding: 16px 18px 10px;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.25;
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.pillar-card__head .n {
    flex: 0 0 28px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--stk-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.pillar-card__body {
    padding: 0 15px 15px;
    line-height: 1.5;
    flex: 1;
}

.pillar-card__body p {
    font-size: 15px;
}

.figT {
    right: 20px;
    bottom: 20px;
    padding: 8px 15px;
    color: var(--black);
    border-radius: 25px;
    position: absolute;
    background-color: var(--white);
}

.imgBox {
    &.wid_60 {
        width: 60%;
        margin: 0 auto;
    }
}

.pillar-grid-2 {
    .pillar-card {
        position: relative;
        background-color: transparent !important;
        border: 1px solid var(--orange);

        &:not(:first-child) {
            margin-left: -1px;
        }

        &:nth-child(odd) {
            margin-top: 8px;
            border-top: 0;
            border-radius: 0 0 10px 10px;

            .pillar-card__head {
                top: -0px;
                position: relative;
            }
        }

        &:nth-child(even) {
            margin-bottom: 8px;
            border-bottom: 0;
            border-radius: 10px 10px 0 0;

            .pillar-card__head {
                bottom: -8px;
                position: relative;
            }

            .pillar-card__body {
                bottom: -8px;
                position: relative;
            }
        }
    }
}

/* icon-led feature cards (digital HR, etc.) */
.feat-card {
    border-radius: 15px;
    padding: 24px;
    height: 100%;
    display: flex;
    align-items: flex-start;
    margin-bottom: 0;
}

.feat-card__ico {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 16px;
}

.feat-card__cont {
    width: calc(100% - 60px);
    padding-left: 15px;
}

/* ============================================================
   TABLES
   ============================================================ */
.stk-table {
    width: 100%;
    overflow: hidden;
    border-collapse: collapse;
}

.stk-table thead th {
    font-size: 14.5px;
    font-weight: 400;
    padding: 14px 16px;
    text-align: left;
    vertical-align: top;
}

.stk-table thead th:not(:first-child) {
    text-align: center;
    width: 130px;
}

.stk-table tbody td {
    padding: 13px 16px;
    font-size: 14.5px;
    vertical-align: middle;
}

.stk-table tbody td:not(:first-child) {
    text-align: center;
    font-weight: 400;
}

.stk-table tbody tr:nth-child(even) {}

.stk-table__cap {
    font-weight: 700;
    margin-bottom: 12px;
}

.stk-note {
    font-size: 15px;
    font-style: italic;
    margin-top: 10px;
    line-height: 1.4;
}

/* ============================================================
   IMPACT STAT LISTS (CSR numbers)
   ============================================================ */
.impact-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-top: 10px;
}

.impact-grid--2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.impact-card {
    border-left: 4px solid var(--stk-orange);
    background: #fff;
    border-radius: 0 12px 12px 0;
    padding: 18px 20px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, .04);
}

.impact-card b {
    display: block;
    font-size: 24px;
    color: var(--stk-blue);
    line-height: 1.1;
    margin-bottom: 6px;
}

.impact-card span {
    font-size: 14.5px;
    line-height: 1.45;
    color: #333;
}

/* big footprint stats */
.footprint {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    margin: 10px 0 30px;
}

.footprint__item {
    text-align: center;
    padding: 26px 18px;
    background: var(--stk-blue);
    color: #fff;
    border-radius: 0 0 22px 0;
}

.footprint__item b {
    display: block;
    font-size: 40px;
    line-height: 1;
    margin-bottom: 8px;
    color: #fff;
}

.footprint__item span {
    font-size: 15px;
    color: #dfe6f6;
}

/* ============================================================
   CSR FOCUS AREAS
   ============================================================ */
.focus-row {}

.focus-card {
    border-radius: 0 0 22px 0;
    overflow: hidden;
    background: #fff;
}

.focus-card__head {
    display: block;
    padding-top: 50px;
    align-items: center;
    position: relative;

    .titleNum {
        left: 50%;
        top: -20px;
        margin: auto;
        color: #c3c6d2;
        position: absolute;
        transform: translateX(-50%);
    }
}

.focus-card__head i {
    font-size: 22px;
}

.bg_dddee4 {
    background-color: #dddee4;
}

.focus-card__body {
    height: 180px;
    padding: 20px 40px;
    position: relative;

    &:before {
        top: 0;
        bottom: 0;
        left: 20px;
        right: 20px;
        content: "";
        position: absolute;
        background-color: #dddee4;
        border-radius: 0 0 20px 20px;
    }
}

.focus-card__body ul li {
    position: relative;
    padding-left: 18px;
    font-size: 15px;
    margin-bottom: 10px;
    line-height: 1.45;
}

.focus-card__body ul li::before {}

/* ============================================================
   CASE STUDY / STORY CARDS
   ============================================================ */
.case-card {
    border-radius: 0 0 24px 0;
    /* padding: 28px; */
    background: #fff;
    position: relative;
    height: 100%;

    .caseCont {
        margin-bottom: 15px;
    }

    .caseImg {
        display: flex;
        border-radius: 15px;
        padding: 20px 20px 0;
        background: #ff0000;
        justify-content: center;
        background: linear-gradient(135deg, #f15a29 0%, #fddac7 100%);
    }
}

.case-card__tag {
    top: 81px;
    left: -110px;
    display: inline-block;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 18px;
    position: relative;
    padding: 8px 100px;
    transform: rotate(-90deg);
    background-color: var(--tabBg_orange_3);

    &:before {
        right: 1px;
        top: -27px;
        content: '';
        width: 27px;
        height: 29px;
        transform: rotate(90deg);
        position: absolute;
        background-size: contain;
        background-repeat: no-repeat;
        background-image: url(../images/stakeholders/absClamp.png);
    }
}

.tagCont {
    padding-left: 80px;
}

.case-card__name {
    font-size: 20px;
    font-weight: 700;
    color: var(--stk-blue);
    margin-bottom: 4px;
}

.case-card__role {
    font-size: 14px;
    color: var(--stk-orange);
    font-weight: 700;
    margin-bottom: 14px;
}

.case-card__earn {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px dashed var(--stk-line);
    font-size: 15px;
}

.case-card__earn b {
    color: var(--stk-blue);
}

.story-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
    margin-top: 10px;
}

/* generation legacy strip */
.legacy {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    margin: 10px 0 24px;
}

.legacy__chip {
    flex: 1 1 auto;
    min-width: 150px;
    text-align: center;
    border: 1px solid var(--stk-line);
    border-radius: 14px;
    padding: 18px;
}

.legacy__chip b {
    display: block;
    font-size: 30px;
    color: var(--stk-orange);
    line-height: 1;
}

.legacy__chip span {
    font-size: 14px;
    color: var(--stk-blue);
    font-weight: 700;
}

/* ============================================================
   SAFETY-SPECIFIC
   ============================================================ */
.vm-row {
    margin-bottom: 30px;
}

.tri-pillar {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-top: 10px;
}

.tri-pillar__item {
    text-align: center;
    padding: 28px 22px;
    border: 1px solid var(--stk-line);
    border-radius: 0 0 20px 0;
    background: #fff;
}

.tri-pillar__item i {
    font-size: 32px;
    color: var(--stk-orange);
    margin-bottom: 16px;
    display: block;
}

.tri-pillar__item p {
    font-size: 16px;
    line-height: 1.45;
    margin: 0;
}

/* OH&S governance hierarchy */
.gov-tier {
    border: 1px solid var(--stk-line);
    border-radius: 0 0 18px 0;
    padding: 22px;
    margin-bottom: 14px;
}

.gov-tier__label {
    display: inline-block;
    background: var(--stk-orange);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 5px 14px;
    border-radius: 4px;
    margin-bottom: 14px;
}

.gov-tier__nodes {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 12px;
}

.gov-node {
    flex: 1 1 200px;
    background: var(--stk-blue);
    color: #fff;
    border-radius: 10px;
    padding: 14px 16px;
    font-size: 14.5px;
    font-weight: 700;
}

.gov-node span {
    display: block;
    font-weight: 400;
    font-size: 13px;
    color: #cfe0ff;
    margin-top: 4px;
}

.gov-arrow {
    text-align: center;
    color: var(--stk-orange);
    font-size: 20px;
    margin: 4px 0;
}

/* three-up list cards (what changed / outcome) */
.list-cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-top: 10px;
}

.list-card {
    border: 1px solid var(--stk-line);
    border-radius: 0 0 18px 0;
    overflow: hidden;
    background: #fff;
}

.list-card__head {
    background: var(--stk-soft);
    color: var(--stk-blue);
    font-size: 16px;
    font-weight: 700;
    padding: 14px 18px;
    border-bottom: 2px solid var(--stk-orange);
}

.list-card__body {
    padding: 16px 18px;
}

.list-card__body ul li {
    position: relative;
    padding-left: 18px;
    font-size: 14.5px;
    margin-bottom: 9px;
    line-height: 1.4;
}

.list-card__body ul li::before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 1px;
    font-size: 11px;
    color: var(--stk-orange);
}

/* big safety performance dashboard */
.safety-dash {
    border-radius: 0 0 24px 0;
    background: var(--stk-blue);
    padding: 30px;
    color: #fff;
}

.safety-dash__head {
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 6px;
}

.dash-group {
    margin-top: 22px;
}

.dash-group__t {
    color: #ffd2c2;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, .25);
    padding-bottom: 6px;
}

.dash-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.dash-cell {
    background: rgba(255, 255, 255, .08);
    border-radius: 0 0 12px 0;
    padding: 16px;
}

.dash-cell b {
    display: block;
    color: #fff;
    font-size: 26px;
    line-height: 1;
    margin-bottom: 8px;
}

.dash-cell span {
    font-size: 13px;
    color: #dfe6f6;
    line-height: 1.35;
}

/* awards */
.award-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    margin-top: 10px;
}

.award-card {
    border: 1px solid var(--stk-line);
    border-radius: 0 0 20px 0;
    padding: 26px;
    background: #fff;
    position: relative;
}

.award-card i {
    font-size: 30px;
    color: var(--stk-orange);
    margin-bottom: 14px;
    display: block;
}

.award-card p {
    font-size: 15px;
    line-height: 1.5;
    margin: 0;
}

/* way-forward priorities */
.wf-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 10px;
}

.wf-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 20px;
    border: 1px solid var(--stk-line);
    border-radius: 0 0 14px 0;
    background: #fff;
    font-size: 15.5px;
    font-weight: 500;
}

.wf-item i {
    flex: 0 0 auto;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--stk-soft);
    color: var(--stk-blue);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* partners / MoU grid */
.mou-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-top: 10px;
}

.mou-card {
    border: 1px solid var(--stk-line);
    border-radius: 0 0 16px 0;
    padding: 20px;
    background: #fff;
}

.mou-card h5 {
    font-size: 16px;
    font-weight: 700;
    color: var(--stk-blue);
    margin-bottom: 8px;
}

.mou-card p {
    font-size: 14px;
    line-height: 1.45;
    margin: 0;
}

/* simple states columns list */
.states-cols {
    column-count: 4;
    column-gap: 26px;
}

.states-cols .st-block {
    break-inside: avoid;
    margin-bottom: 16px;
}

.states-cols h6 {
    font-size: 15px;
    font-weight: 700;
    color: var(--stk-orange);
    margin-bottom: 6px;
}

.states-cols ul li {
    font-size: 14px;
    margin-bottom: 4px;
    padding-left: 14px;
    position: relative;
}

.states-cols ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--stk-blue);
}

/* KPI table emphasis */
.kpi-table tbody td:last-child {
    color: var(--stk-orange);
    font-weight: 700;
}

/* wide table (recognised unions) — keep second column left-aligned */
.union-table thead th:nth-child(2),
.union-table tbody td:nth-child(2) {
    text-align: left;
    width: auto;
    font-weight: 400;
    color: #222;
}

.union-table thead th:nth-child(n+3) {
    width: 90px;
}

/* CSR intervention icon strip */
.csr-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin: 10px 0 6px;
}

.csr-icons__item {
    flex: 1 1 150px;
    text-align: center;
    border: 1px solid var(--stk-line);
    border-radius: 0 0 16px 0;
    padding: 20px 14px;
    background: #fff;
}

.csr-icons__item i {
    font-size: 28px;
    color: var(--stk-orange);
    margin-bottom: 10px;
    display: block;
}

.csr-icons__item span {
    font-size: 14.5px;
    font-weight: 700;
    color: var(--stk-blue);
}

/* divider rule */
.stk-rule {
    border: 0;
    border-top: 1px solid var(--stk-line);
    margin: 40px 0;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width:1780px) {
    .stk_block_121 {
        .genList {
            &:after {
                right: 115px;
            }
        }
    }
}

@media (max-width:1366px) {
    .pillar-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 1199px) {

    .snap-grid,
    .dash-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .pillar-grid,
    .stk-band__title {
        font-size: 34px;
    }

    .states-cols {
        column-count: 3;
    }
}

@media (max-width: 1100px) {
    .stk_block_137 {
        .row_2 {
            .commCol {
                width: 33.33%;
                padding: 15px;
            }
        }
    }
}

@media (max-width: 991px) {
    .stk-hero__title {
        font-size: 30px;
    }

    .stk-hero__bar {
        flex-basis: 130px;
    }

    .stk-hero__mediaInner figure {
        height: 440px;
    }

    .stk-index__list,
    .snap-grid,
    .snap-grid--3,
    .stk-meta,
    .pillar-grid,
    .pillar-grid--3,
    .pillar-grid--4,
    .impact-grid,
    .footprint,
    .focus-row,
    .tri-pillar,
    .list-cards,
    .award-grid,
    .mou-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .stk-quote {
        grid-template-columns: 1fr;
    }

    .story-grid,
    .vm-row,
    .wf-grid {
        grid-template-columns: 1fr;
    }

    .stk-h2,
    .stk-introBox__inner .stk-h2 {
        font-size: 28px;
    }

    .stk-band__title {
        font-size: 30px;
    }

    .states-cols {
        column-count: 2;
    }

    .gov-rail-wrap {
        overflow: hidden;
    }

    .row_gap20 {
        margin-left: 0px;
        margin-right: 0px;
    }

    .supp_block_8 {
        .row_gap20 {
            margin-left: -15px;
            margin-right: -15px;
        }
    }

    #sec_suppliers {
        .supp_block_3 {
            .commCol {
                .bg_e0e0f1 {
                    display: flex;
                    height: 140px;
                    position: relative;
                    margin-bottom: 30px;
                    align-items: center;
                    justify-content: center;
                }
            }
        }
    }

    #sec_suppliers {
        .supp_block_3 {
            .commCol {
                &:after {
                    top: auto !important;
                    right: auto !important;
                    content: '' !important;
                    width: 40px !important;
                    z-index: -1 !important;
                    height: 170px !important;
                    position: absolute !important;
                    transform: rotate(135deg) translateX(-50%) !important;
                    background-color: #b0b1d9 !important;
                    left: 50% !important;
                    bottom: -100px !important;
                }

                &:last-child {
                    &::after {
                        display: none;
                    }
                }

                .bg_e0e0f1 {
                    height: auto !important;
                    min-height: 180px !important;
                }
            }
        }
    }

    .stk_block_137 {
        .row_2 {
            .commCol {
                width: 100%;
                padding: 15px;
                border: none;
                padding: 0px;
                margin-bottom: 20px;

                &:nth-child(2) {
                    left: 0px;
                    bottom: 0px;
                }
            }
        }

        .col_inner {
            min-height: auto;
        }
    }

    .stk_block_128 {
        .safetyList {
            margin-top: 0px;

            li {
                margin-bottom: 20px !important;
                width: 100% !important;

                &:nth-child(even) {
                    right: 0;
                    border-left: 0;
                    border-radius: 0 30px 30px 0;
                }

                &:nth-child(odd) {
                    left: 0;
                    border-right: 0;
                    border-radius: 30px 0 0 30px;
                }

                &:last-child {
                    margin-bottom: 20px !important;
                }
            }
        }
    }

    .stk-box {
        margin-bottom: 20px;
        padding-bottom: 20px;
    }

    .mb_40 {
        margin-bottom: 20px !important;
    }

    .mb_50 {
        margin-bottom: 30px !important;
    }

    .stk-box {
        .numBox {
            padding-left: 0px;
        }

        .mobLeft_20 {
            .numBox {
                padding-left: 20px;
            }
        }
    }

    .stk_block_128 {

        .col_1,
        .col_2 {
            .col_inner {
                position: relative;
                padding-left: 0;
                padding-right: 20px;
                border-radius: 0 0 0 20px;
            }
        }
    }

    .stk_block_128 {

        .col_1,
        .col_2 {
            .col_inner {
                .col_inner_cont {
                    .stk-h3 {
                        top: -25px;
                        left: -30px;
                    }
                }
            }
        }
    }

}

@media (max-width: 767px) {
    .imageHeaderBox {
        padding: 30px;
        background-size: 100%;
        background-position: center bottom;
        padding-bottom: 350px;
    }

    .borderBoxWrapInner {
        padding-bottom: 20px;

        &::after {
            width: 100%;
            height: 1px;
            position: absolute;
            left: 0;
            bottom: 0;
            content: "";
            background-color: #c7c7c7;
            display: block;
            top: auto;
        }
    }

    .borderBoxInner {
        margin-bottom: 20px;
    }

    #sec-people {
        .imageHeaderBox {
            background-image: none !important;
            padding-bottom: 15px !important;

            .figT {
                display: none;
            }

            .resView {
                display: block;
                position: relative;
                width: 100%;
                height: auto;

                img {
                    width: 100%;
                    height: 100%;
                    object-fit: cover;
                }

                .figT {
                    display: block;
                    position: absolute;
                    bottom: 10px;
                    right: 10px;
                }
            }
        }
    }
}

@media (max-width: 575px) {

    .stk-index__list,
    .snap-grid,
    .snap-grid--3,
    .stk-meta,
    .pillar-grid,
    .impact-grid,
    .impact-grid--2,
    .footprint,
    .focus-row,
    .tri-pillar,
    .list-cards,
    .award-grid,
    .mou-grid,
    .dash-grid {
        grid-template-columns: 1fr;
    }

    .states-cols {
        column-count: 1;
    }

    .stk-band__no {
        font-size: 90px;
    }

    .stk-introBox {
        padding: 22px;
        padding-bottom: 200px;
    }

    .imageHeaderBox {
        padding: 0px;
        background-size: 100%;
        background-position: center bottom;
        padding-bottom: 290px;
    }

    .row_gap20 {
        .col-lg-12 {
            padding: 0 0px;
        }

    }
}

@media (max-width: 575px) {

    .imageHeaderBox {
        padding-bottom: 225px;
    }
}

/* ============================================================
   RESPONSIVE — shell (hero + sticky wheel rail)
   Appended last so it wins the cascade over the base .sgfp-hero /
   .gov-rail rules above. Mirrors smart-manufacturing-for-strong-bharat.
   ============================================================ */
@media (max-width: 1600px) {
    .sgfp-hero__title {
        font-size: 34px;
    }

    .gov-aside__label {
        font-size: 40px;
    }
}

/* Give the wheel rail column a fixed width so the 210px wheel never
   overlaps the heading on narrow-desktop widths. Mirrors governance.css.
   Overridden by the 991px block below, where the rail is hidden. */
@media (max-width: 1440px) {
    .gov-rail-wrap .col-lg-2 {
        -ms-flex: 0 0 250px;
        flex: 0 0 250px;
        max-width: 250px;
    }

    .gov-rail-wrap .col-lg-10 {
        -ms-flex: 0 0 calc(100% - 250px);
        flex: 0 0 calc(100% - 250px);
        max-width: calc(100% - 250px);
    }
}

@media (max-width: 1199px) {
    .sgfp-hero__mediaInner figure {
        height: 540px;
    }

    .gov-aside__label {
        font-size: 34px;
    }

    .stk_block_121 {
        .genList {
            &:after {
                right: 250px;
            }
        }
    }
}

@media (max-width: 991px) {

    /* hide the sticky wheel rail; content takes the full width */
    .gov-rail {
        display: none;
    }

    .gov-rail-wrap .col-lg-2 {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }

    .gov-rail-wrap .col-lg-10 {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }

    /* release sticky boxes once columns stack */
    .stk_page .sticky,
    .stk_page .stickyBox {
        position: static;
    }

    /* hero: smaller vertical bar + shorter image */
    .sgfp-hero {
        min-height: auto;
    }

    .sgfp-hero__bar {
        flex: 0 0 110px;
    }

    .sgfp-hero__title {
        font-size: 28px;
        padding: 40px 0;
    }

    .sgfp-hero__media {
        padding-top: 40px;
    }

    .sgfp-hero__mediaInner {
        padding: 20px 0 0 20px;
    }

    .sgfp-hero__mediaInner:before {
        height: 200px;
    }

    .sgfp-hero__mediaInner figure {
        height: 440px;
    }

    .stk_block_121 {
        .genList {
            &:after {
                right: 290px;
            }
        }
    }

    .stk_block_130 {
        .pillarList {
            .mb_50 {
                margin-bottom: 50px !important;
            }
        }
    }
}

@media (max-width: 768px) {
    .stk_block_121 {
        .genList {
            &:after {
                right: 130px;
            }
        }
    }
}

@media (max-width: 767px) {

    .gov-section {
        overflow: hidden;
    }

    /* hero: switch to a stacked, horizontal layout */
    .sgfp-hero__inner {
        flex-direction: column;
    }

    .sgfp-hero__bar {
        flex: none;
        width: 100%;
        align-items: center;
        padding: 20px;
        border-radius: 0;
    }

    .sgfp-hero__title {
        writing-mode: horizontal-tb;
        transform: none;
        text-align: center;
        font-size: 24px;
        padding: 0;
    }

    .sgfp-hero__media {
        padding-top: 0;
    }

    .sgfp-hero__mediaInner {
        padding: 0 0 0 15px;
    }

    .sgfp-hero__mediaInner:before {
        display: none;
    }

    .sgfp-hero__mediaInner figure {
        height: 300px;
        border-radius: 30px 0 0 0;
    }
}

@media (max-width: 575px) {
    .sgfp-hero__mediaInner figure {
        height: 240px;
    }

    .quoteText {
        padding: 20px;
    }

    .stk_block_121 {
        .genList {
            &:after {
                right: 0;
            }
        }
    }

    .stk_block_122 {
        .pillarList {
            flex-wrap: wrap;
            gap: 15px;

            li {
                width: 100%;

                .pillarBlock {
                    height: auto;
                    padding: 30px 15px 30px 0px;
                }
            }
        }
    }

    .quoteText {
        &:after {
            width: 50px;
            height: 35px;
        }
    }

    #sec-csr {
        .stk_block_215 {
            .row_3 {
                .col_2 {
                    .iconBoxWrap {
                        .iconBox {
                            width: calc(34% - 10px);
                            margin-right: 5px;
                            margin-bottom: 5px;
                        }
                    }
                }
            }
        }
    }
}

/* ============================================================
   RESPONSIVE — wide data tables
   Let the wide multi-column tables scroll horizontally inside their
   box instead of overflowing the viewport / crushing the columns.
   Mirrors the pattern used in resilient-tomorrow.css.
   ============================================================ */
@media (max-width: 1024px) {
    .stk_page .tableWrap.layFixed .tableInner table .wid_20 {
        width: auto !important;
    }
}

@media (max-width: 991px) {
    .stk_page .tableWrap .tableInner {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    /* "Recognised Union Name" (6 cols) and "Key Performance Indicators"
       (4 cols) need a minimum width so columns stay readable; the rest
       scrolls. table-layout: fixed on .layFixed still honours min-width. */
    .stk_page .tableWrap.layFixed .tableInner table {
        min-width: 850px;
    }

    .stk_page .tableWrap.tableBr_blue .tableInner table {
        min-width: 560px;
    }
}

@media (max-width: 480px) {
    #sec-csr {
        .stk_block_215 {
            .row_3 {
                .col_2 {
                    .iconBoxWrap {
                        .iconBox {
                            width: calc(50% - 10px);

                            figure {
                                padding: 5px;
                            }
                        }
                    }
                }
            }
        }
    }

    .stk_block_116 {
        .row_1 {
            .col_1 {
                .stk-box {
                    height: auto;
                }
            }
        }
    }
}