.custom-container {
    width: 100%;
    padding: 0px 80px;
}

@media (max-width: 768px) {
    .custom-container {
        width: 100%;
        padding: 0px 20px;
    }
}


/* ==========================================================================
   ESG Secondary Navigation (Sticky Tab Bar)
   ========================================================================== */

.esg-secondary-nav {
    position: relative;
    width: 100%;
    background: #fff;
    border-bottom: 1px solid #E0E0E0;
    z-index: 9998;
    transition: box-shadow 0.3s ease;
}

.esg-secondary-nav__list {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 0;
    justify-content: space-between;
}

.esg-secondary-nav__item {
    position: relative;
}

.esg-secondary-nav__link {
    display: inline-block;
    padding: 25px 28px;
    font-family: 'Manrope', sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: #555;
    text-decoration: none;
    white-space: nowrap;
    letter-spacing: 0.2px;
    transition: color 0.3s ease;
    position: relative;
}

.esg-secondary-nav__link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: #F47920;
    border-radius: 2px 2px 0 0;
    transition: width 0.3s ease, left 0.3s ease;
}

.esg-secondary-nav__link:hover {
    color: #F47920;
    text-decoration: none;
}

.esg-secondary-nav__link.active {
    color: #1A1A1A;
    font-weight: 600;
}

.esg-secondary-nav__link.active::after {
    width: 100%;
    left: 0;
}

.esg-secondary-nav.is-phase2 {
    z-index: 9998;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    left: 0;
    right: 0;
}

.esg-secondary-nav.is-sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9998;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}


.esg-header.esg-header--hidden {
    pointer-events: none;
    visibility: hidden;
}

.esg-secondary-nav-placeholder {
    display: none;
    width: 100%;
}

.esg-secondary-nav-placeholder.is-active {
    display: block;
}


@media (max-width: 991px) {
    .esg-secondary-nav .custom-container {
        overflow: hidden;
    }

    .esg-secondary-nav__list {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
        margin: 0;
        padding: 0;
        width: 100%;
    }

    .esg-secondary-nav__list::-webkit-scrollbar {
        display: none;
    }

    .esg-secondary-nav__item {
        flex: 0 0 auto;
        /* prevents items from shrinking */
    }

    .esg-secondary-nav__link {
        display: block;
        padding: 14px 18px;
        font-size: 14px;
        white-space: nowrap;
    }
}

@media (max-width: 480px) {
    .esg-secondary-nav__link {
        padding: 12px 16px;
        font-size: 13px;
    }
}


/* ==========================================================================
   ESG Overview New - Hero Banner Slider
   ========================================================================== */

.esg-hero-banner-section {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
}

.esg-hero-swiper {
    width: 100%;
    height: 100%;
}

.esg-hero-slide {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.esg-hero-slide__bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.esg-hero-slide__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: scale(1.05);
    transition: transform 6s ease-out;
}

.swiper-slide-active .esg-hero-slide__bg img {
    transform: scale(1);
}

.esg-hero-slide__overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(90deg,
            rgba(0, 0, 0, 0.65) 0%,
            rgba(0, 0, 0, 0.35) 50%,
            rgba(0, 0, 0, 0.1) 100%);
}

.esg-hero-slide__content {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    max-width: 620px;
    padding: 0 5% 80px;
}

.esg-hero-slide__label {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    color: #F36633;
    font-family: 'Manrope', sans-serif;
    line-height: 22px;
    margin-bottom: 10px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease 0.3s, transform 0.6s ease 0.3s;
}

.swiper-slide-active .esg-hero-slide__label {
    opacity: 1;
    transform: translateY(0);
}

.esg-hero-slide__title {
    font-size: clamp(32px, 4.5vw, 56px);
    font-weight: 400;
    line-height: 1.15;
    color: #ffffff;
    margin: 0 0 22px;
    font-style: normal;
    font-family: 'Alexandria', sans-serif;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease 0.45s, transform 0.7s ease 0.45s;
}

.swiper-slide-active .esg-hero-slide__title {
    opacity: 1;
    transform: translateY(0);
}

.esg-hero-slide__desc {
    font-size: 15px;
    font-weight: 400;
    font-family: 'Manrope', sans-serif;
    line-height: 1.7;
    color: #fff;
    margin: 0 0 32px;
    max-width: 480px;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease 0.6s, transform 0.7s ease 0.6s;
}

.swiper-slide-active .esg-hero-slide__desc {
    opacity: 1;
    transform: translateY(0);
}

.esg-hero-slide__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 32px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: #ffffff;
    border-radius: 4px;
    background: linear-gradient(106deg, #CE5600 0.12%, #EA8033 114%);
    text-decoration: none;
    width: fit-content;
    cursor: pointer;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease 0.75s, transform 0.7s ease 0.75s,
        background 0.3s ease;
}

.swiper-slide-active .esg-hero-slide__cta {
    opacity: 1;
    transform: translateY(0);
}

.esg-hero-slide__cta:hover {
    background-color: #d06a1c;
    text-decoration: none;
    color: #ffffff;
}


/* ==========================================================================
   Hero Bottom Bar & Custom Pagination
   ========================================================================== */

.esg-hero-bottom-bar {
    position: absolute;
    bottom: 30px;
    left: 0;
    right: 0;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5%;
}

/* Hide Swiper's default pagination — we use our own */
.esg-hero-pagination.swiper-pagination {
    display: none !important;
}

/* Hide old counter */
.esg-hero-slide-counter {
    display: none;
}

/* ---- Custom Pagination Component ---- */
.esg-custom-pagination {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* Each pagination item is a flex row: dot + (line + number) */
.esg-pag-item {
    display: flex;
    align-items: center;
    cursor: pointer;
    gap: 0;
    position: relative;
}

/* The dot */
.esg-pag-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid transparent;
    flex-shrink: 0;
    transition: background 0.35s ease, border-color 0.35s ease, width 0.35s ease, height 0.35s ease;
    box-sizing: border-box;
    position: relative;
}

.esg-pag-item:hover .esg-pag-dot {
    background: rgba(255, 255, 255, 0.75);
}

/* Active dot — orange ring outline */
.esg-pag-item.active .esg-pag-dot {
    width: 10px;
    height: 10px;
    background: #F47920;
}

.esg-pag-item.active .esg-pag-dot::after {
    content: '';
    width: 24px;
    height: 24px;
    background: transparent;
    border: 2px solid #F47920;
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 50%;
    transform: translate(-50%, -48%);
}

.esg-pag-item.active:hover .esg-pag-dot {
    background: #F47920;
}

/* The line — hidden by default, expands when active */
.esg-pag-line {
    display: block;
    width: 0;
    height: 2px;
    background-color: #e87722;
    transition: width 0.4s ease, margin 0.4s ease;
    margin-left: 0;
    flex-shrink: 0;
}

.esg-pag-item.active .esg-pag-line {
    width: 28px;
    margin-left: 5px;
}

/* The number — hidden by default, fades in when active */
.esg-pag-num {
    font-size: 14px;
    font-weight: 400;
    color: #F47920;
    font-variant-numeric: tabular-nums;
    white-space: nowrap;
    width: 0;
    overflow: hidden;
    opacity: 0;
    transition: width 0.35s ease, opacity 0.35s ease 0.1s, margin 0.35s ease;
    margin-left: 0;
    flex-shrink: 0;
    font-family: 'Montserrat', sans-serif;
}

.esg-pag-item.active .esg-pag-num {
    width: 22px;
    opacity: 1;
    margin-left: 5px;
}

/* ---- Navigation Arrows ---- */
.esg-hero-nav {
    display: flex;
    align-items: center;
    gap: 12px;
}

.esg-hero-nav__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, 0.4);
    background: transparent;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    transition: border-color 0.3s ease, color 0.3s ease, background-color 0.3s ease;
}

.esg-hero-nav__btn:hover {
    border-color: #e87722;
    color: #e87722;
}

.esg-hero-nav__btn:active {
    background-color: rgba(232, 119, 34, 0.15);
}


/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 1024px) {
    .esg-hero-slide__content {
        max-width: 520px;
        padding-bottom: 100px;
    }

    .esg-hero-slide__title {
        font-size: clamp(28px, 4vw, 44px);
    }
}

@media (max-width: 768px) {
    .esg-hero-banner-section {
        height: 100vh;
        min-height: 550px;
    }

    .esg-hero-slide {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        height: 100%;
    }

    .esg-hero-slide__content {
        max-width: 100%;
        padding: 80px 6% 0px;
        justify-content: center;
        height: 80%;
        align-items: center;
        text-align: center;
    }

    .esg-hero-slide__overlay {
        background: linear-gradient(180deg,
                rgba(0, 0, 0, 0.2) 0%,
                rgba(0, 0, 0, 0.7) 100%);
    }

    .esg-hero-slide__title {
        font-size: clamp(26px, 6vw, 36px);
    }

    .esg-hero-slide__desc {
        font-size: 14px;
        line-height: 1.6;
    }

    .esg-hero-bottom-bar {
        bottom: 20px;
        padding: 0 6%;
    }

    .esg-custom-pagination {
        gap: 14px;
    }

    .esg-pag-dot {
        width: 8px;
        height: 8px;
    }

    .esg-pag-item.active .esg-pag-dot {
        width: 12px;
        height: 12px;
    }

    .esg-pag-item.active .esg-pag-line {
        width: 20px;
    }

    .esg-pag-num {
        font-size: 12px;
    }

    .esg-hero-nav__btn {
        width: 38px;
        height: 38px;
    }
}

@media (max-width: 480px) {
    .esg-hero-slide__label {
        font-size: 14px;
        letter-spacing: 1.4px;
    }

    .esg-hero-slide__title {
        font-size: 32px;
        margin-bottom: 16px;
        line-height: 44px;
    }

    .esg-hero-slide__desc {
        font-size: 15px;
        line-height: 140%;
        margin-bottom: 24px;
    }

    .esg-hero-slide__cta {
        padding: 10px 20px;
        font-size: 14px;
        line-height: 28px;
    }

    .esg-pag-item.active .esg-pag-line {
        width: 16px;
    }

    .esg-pag-num {
        font-size: 14px;
    }

    .esg-pag-item.active .esg-pag-num {
        width: 18px;
    }
}

/* ==========================================================================
   Leader Testimonial Slider
   ========================================================================== */

.esg-leader-testimonial-section {
    padding: 80px 0 0;
    background: #FFF9F4;
    position: relative;
    overflow: hidden;
    background-image: url('../images/ESG/leader-testimonial-bg-image.png');
    background-repeat: no-repeat;
    background-size: 100% 100%;
}

.esg-leader-header {
    position: relative;
    width: 100%;
    height: 100%;
}

.esg-leader-header__right {
    position: absolute;
    top: 50%;
    right: 0;
    max-width: 650px;
}

.esg-leader-header__desc {
    color: var(--Black, #000);
    font-family: 'Manrope', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 170%;
}

.esg-leader__label {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    color: #F47920;
    font-family: 'Manrope', sans-serif;
    margin: 0 0 10px;
}

.esg-leader__heading {
    font-family: 'Alexandria', sans-serif;
    font-size: 36px;
    font-weight: 400;
    line-height: 130%;
    color: #1A1A1A;
    margin: 0 0 50px;
}

/* Slider wrapper */
.esg-leader-slider {
    position: relative;
    padding: 0 10px 40px;
    margin-top: 8rem;
}

/* Static orange background behind the leader image */
.esg-leader-slider__orange-bg {
    position: absolute;
    left: 0;
    bottom: 154px;
    width: 50%;
    height: 260px;
    z-index: 1;
    overflow: hidden;
}

.esg-leader-slider__orange-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Decorative quote icon */
.esg-leader-slider__quote-icon {
    position: absolute;
    top: -40%;
    left: 30%;
    z-index: 1;
    opacity: 0.6;
    pointer-events: none;
    transform: translate(-50%, 66%);
}

/* Slide layout */
.esg-leader-slides {
    position: relative;
    z-index: 2;
}

.esg-leader-slide {
    display: none;
    align-items: flex-end;
    gap: 0;
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.esg-leader-slide.active {
    display: flex;
    opacity: 1;
    transform: translateY(0);
}

/* Left: Image + nameplate */
.esg-leader-slide__left {
    position: relative;
    width: 42%;
    flex-shrink: 0;
    z-index: 3;
    display: flex;
    align-items: center;
}

.esg-leader-slide__image {
    position: relative;
    width: 100%;
    max-width: 325px;
}

.esg-leader-slide__image img {
    width: 100%;
    height: auto;
    display: block;
    position: relative;
    z-index: 2;
}

/* Nameplate bar (over the orange bg) */
.esg-leader-slide__nameplate {
    position: relative;
    z-index: 4;
    padding: 0px 0 0 0px;
    margin-top: 106px;
    width: 50%;
}

.esg-leader-slide__name {
    font-family: 'Alexandria', sans-serif;
    font-size: 28px;
    font-weight: 400;
    color: #fff;
    margin: 0 0 4px;
    line-height: 1.3;
}

.esg-leader-slide__role {
    font-family: 'Manrope', sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.85);
    letter-spacing: 0.3px;
}

/* Right: Content card */
.esg-leader-slide__right {
    flex: 1;
    min-width: 0;
    z-index: 3;
    margin-top: 0rem;
    position: absolute;
    bottom: -45px;
    right: 35px;
    width: 55%;
}

.esg-leader-slide__card {
    background: #fff;
    border-radius: 0;
    padding: 40px 48px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06);
    position: relative;
}

.esg-leader-slide__quote {
    font-family: 'Alexandria', sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: #1A1A1A;
    line-height: 1.6;
    margin: 0 0 20px;
}

.esg-leader-slide__text {
    position: relative;
}

.esg-leader-slide__excerpt {
    font-family: 'Manrope', sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 175%;
    color: #444;
    margin: 0;
    letter-spacing: 0.2px;
}

.esg-leader-slide__full-text {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, opacity 0.4s ease;
    opacity: 0;
}

.esg-leader-slide__full-text.expanded {
    max-height: 600px;
    opacity: 1;
}

.esg-leader-slide__full-text p {
    font-family: 'Manrope', sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 175%;
    color: #444;
    margin: 16px 0 0;
    letter-spacing: 0.2px;
}

/* Read More / Read Less toggle */
.esg-leader-slide__toggle {
    background: none;
    border: none;
    padding: 0;
    margin-top: 20px;
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #1A1A1A;
    cursor: pointer;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.3s ease;
    display: inline-block;
}

.esg-leader-slide__toggle:hover {
    color: #F47920;
}

/* Bottom bar: Pagination + Nav */
.esg-leader-bottom-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 70px 80px 0;
    position: relative;
    z-index: 5;
}

/* Pagination — reuses hero esg-pag-* classes; only override colors for light bg */
.esg-leader-pagination .esg-pag-dot {
    background: #ccc;
}

.esg-leader-pagination .esg-pag-item:hover .esg-pag-dot {
    background: rgba(0, 0, 0, 0.35);
}

/* Nav arrows */
.esg-leader-nav {
    display: flex;
    align-items: center;
    gap: 12px;
}

.esg-leader-nav__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1.5px solid rgba(0, 0, 0, 0.2);
    background: transparent;
    color: rgba(0, 0, 0, 0.5);
    cursor: pointer;
    transition: border-color 0.3s ease, color 0.3s ease, background-color 0.3s ease;
}

.esg-leader-nav__btn:hover {
    border-color: #e87722;
    color: #e87722;
}

.esg-leader-nav__btn:active {
    background-color: rgba(232, 119, 34, 0.15);
}

/* ==========================================================================
   Leader Testimonial - Responsive
   ========================================================================== */

@media (max-width: 1200px) {
    .esg-leader-slider {
        padding: 0 50px 60px;
    }

    .esg-leader-bottom-bar {
        padding: 24px 50px 0;
    }

    .esg-leader-slide__card {
        padding: 32px 36px;
    }

    .esg-leader__heading {
        font-size: 30px;
    }
}

/* ---------- Tablet ---------- */
@media (max-width: 991px) {

    .esg-leader-testimonial-section {
        padding: 60px 0 0;
    }

    /* Header: stack heading + description vertically */
    .esg-leader-header {
        display: flex;
        flex-direction: column;
    }

    .esg-leader-header__right {
        position: static;
        max-width: 100%;
        margin-top: 0;
    }

    .esg-leader__heading {
        font-size: 28px;
        margin-bottom: 16px;
    }

    .esg-leader-header__desc {
        font-size: 15px;
    }

    /* Slider */
    .esg-leader-slider {
        padding: 0 20px 30px;
        margin-top: 3rem;
    }

    /* Hide the standalone orange bg; use pseudo-element on slide__left instead */
    .esg-leader-slider__orange-bg {
        display: none;
    }

    /* Slide: column layout */
    .esg-leader-slide.active {
        flex-direction: column;
        align-items: stretch;
        gap: 45px;
    }

    /* Left section: image + nameplate side-by-side on the orange strip */
    .esg-leader-slide__left {
        width: 100%;
        display: flex;
        flex-direction: row;
        align-items: flex-end;
        position: relative;
        z-index: 3;
    }

    /* Orange strip behind the bottom of the image area via pseudo-element */
    .esg-leader-slide__left::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: -20px;
        right: -20px;
        height: 150px;
        background-color: #F47920;
        background-image: url('../images/ESG/orange-bg.png');
        background-size: cover;
        background-position: center;
        z-index: 0;
    }

    .esg-leader-slide__image {
        max-width: 55%;
        margin: 0;
        position: relative;
        z-index: 3;
    }

    /* Nameplate sits to the right of the image, on the orange strip */
    .esg-leader-slide__nameplate {
        width: auto;
        margin-top: 0;
        padding: 0 20px;
        position: relative;
        z-index: 4;
        align-self: flex-end;
        margin-bottom: 30px;
    }

    .esg-leader-slide__name {
        font-size: 22px;
    }

    .esg-leader-slide__role {
        font-size: 13px;
    }

    /* Quote icon */
    .esg-leader-slider__quote-icon {
        top: -10%;
        left: 50%;
        transform: translate(-50%, 30%);
    }

    .esg-leader-slider__quote-icon svg {
        width: 160px;
        height: 160px;
    }

    /* Right: card below image, no absolute positioning */
    .esg-leader-slide__right {
        position: static;
        width: 100%;
        margin-top: 0;
    }

    .esg-leader-slide__card {
        padding: 28px 24px;
        margin-top: 0;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    }

    .esg-leader-slide__quote {
        font-size: 16px;
    }

    /* Bottom bar */
    .esg-leader-bottom-bar {
        padding: 24px 20px 0;
    }
}

/* ---------- Mobile ---------- */
@media (max-width: 768px) {

    .esg-leader-testimonial-section {
        padding: 40px 0 0;
    }

    .esg-leader__label {
        font-size: 13px;
        letter-spacing: 1.2px;
    }

    .esg-leader__heading {
        font-size: 24px;
        margin-bottom: 14px;
    }

    .esg-leader-header__desc {
        font-size: 14px;
        line-height: 165%;
    }

    .esg-leader-slider {
        padding: 0 16px 24px;
        margin-top: 2.5rem;
    }

    .esg-leader-slide__image {
        max-width: 58%;
    }

    .esg-leader-slide__nameplate {
        padding: 0 14px;
        margin-bottom: 24px;
    }

    .esg-leader-slide__name {
        font-size: 20px;
    }

    .esg-leader-slide__role {
        font-size: 12px;
    }

    .esg-leader-slider__orange-bg {
        display: none;
    }

    .esg-leader-slide__left::after {
        height: 130px;
        left: -16px;
        right: -16px;
    }

    .esg-leader-slide__card {
        padding: 24px 20px;
    }

    .esg-leader-slide__quote {
        font-size: 15px;
        margin-bottom: 16px;
    }

    .esg-leader-slide__excerpt {
        font-size: 14px;
        line-height: 170%;
    }

    .esg-leader-slide__full-text p {
        font-size: 14px;
        line-height: 170%;
    }

    .esg-leader-slider__quote-icon svg {
        width: 130px;
        height: 130px;
    }

    .esg-leader-nav__btn {
        width: 40px;
        height: 40px;
    }

    .esg-leader-bottom-bar {
        padding: 20px 16px 0;
    }
}

/* ---------- Small Mobile ---------- */
@media (max-width: 480px) {

    .esg-leader-testimonial-section {
        padding: 32px 0 0;
    }

    .esg-leader__heading {
        font-size: 22px;
        margin-bottom: 12px;
    }

    .esg-leader-header__desc {
        font-size: 13.5px;
    }

    .esg-leader-slider {
        padding: 0 12px 20px;
        margin-top: 2rem;
    }

    .esg-leader-slide__image {
        max-width: 55%;
    }

    .esg-leader-slide__nameplate {
        padding: 0 10px;
        margin-bottom: 18px;
    }

    .esg-leader-slide__name {
        font-size: 18px;
    }

    .esg-leader-slide__role {
        font-size: 11.5px;
    }

    .esg-leader-slide__left::after {
        height: 110px;
        left: -12px;
        right: -12px;
    }

    .esg-leader-slide__card {
        padding: 22px 16px;
    }

    .esg-leader-slide__quote {
        font-size: 14px;
        margin-bottom: 14px;
    }

    .esg-leader-slide__excerpt,
    .esg-leader-slide__full-text p {
        font-size: 13px;
    }

    .esg-leader-slider__quote-icon svg {
        width: 110px;
        height: 110px;
    }

    .esg-leader-nav__btn {
        width: 36px;
        height: 36px;
    }

    .esg-leader-bottom-bar {
        padding: 16px 12px 0;
    }
}


/* ==========================================================================
   Our Impact Css
   ========================================================================== */

.esg-impact-section {
    background: #853F00;
    min-height: 340px;
}

.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 60px 0;
}

.section-header h2 {
    font-family: 'Alexandria', sans-serif;
    font-weight: 400;
    font-size: 26px;
    line-height: 140%;
    text-transform: capitalize;
    color: #E6E7E8;
}

/* ==========================================================================
   ESG Impact - Tabs with Sliding Pill Indicator
   ========================================================================== */

.esg-impact-tabs {
    position: relative;
    display: flex;
    align-items: center;
    border-radius: 25px;
    background: rgba(245, 130, 32, 0.20);
    flex-shrink: 0;
    padding: 4px;
}

/* Sliding pill background */
.esg-impact-tabs__pill {
    position: absolute;
    top: 4px;
    bottom: 4px;
    left: 4px;
    border-radius: 50px;
    background: linear-gradient(106deg, #F47920 0.12%, #F47920 114%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 0;
    pointer-events: none;
}

.esg-impact-tab {
    position: relative;
    z-index: 1;
    padding: 8px 28px;
    font-family: 'Alexandria', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #FFF;
    background: transparent;
    border: none;
    cursor: pointer;
    white-space: nowrap;
    transition: color 0.35s ease;
    letter-spacing: 0.3px;
    line-height: 1.4;
}

/* Remove the old border-right dividers */
.esg-impact-tab:not(:last-child) {
    border-right: none;
}

.esg-impact-tab:hover {
    color: #fff;
}

.esg-impact-tab.active {
    color: #fff;
    font-weight: 400;
    background: transparent;
}

.esg-impact-panels {
    position: relative;
    overflow: hidden;
    padding-bottom: 60px;
}


.esg-impact-panel {
    display: none;
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.45s ease, transform 0.45s ease;
}

.esg-impact-panel.active {
    display: block;
}

.esg-impact-panel.visible {
    opacity: 1;
    transform: translateY(0);
}

.esg-marquee {
    overflow: hidden;
    width: 100%;
    mask-image: linear-gradient(to right,
            transparent 0%,
            black 4%,
            black 96%,
            transparent 100%);
    -webkit-mask-image: linear-gradient(to right,
            transparent 0%,
            black 4%,
            black 96%,
            transparent 100%);
}

.esg-marquee__track {
    display: flex;
    width: max-content;
    animation: esg-marquee-scroll 30s linear infinite;
}

.esg-marquee:hover .esg-marquee__track {
    animation-play-state: paused;
}

.esg-marquee__set {
    display: flex;
    flex-shrink: 0;
}

@keyframes esg-marquee-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.esg-stat-card {
    display: flex;
    align-items: stretch;
    min-width: 350px;
    padding: 0;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    border-right: 1px solid #FFF;
    gap: 20px;
}

.esg-stat-card__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.esg-stat-card__value {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 8px;
}

.esg-stat-card__number {
    color: var(--JSL-Orange, #F47920);
    text-align: center;
    font-family: 'Alexandria' sans-serif;
    font-size: 36px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
}

.esg-stat-card__unit {
    color: var(--JSL-Orange, #F47920);
    font-family: 'Alexandria' sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
}

.esg-stat-card__desc {
    color: var(--Color, #FFF);
    text-align: center;
    font-family: 'Manrope', sans-serif;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 170%;
}

@media (max-width: 991px) {
    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        padding: 40px 0;
        align-items: center;
    }
}

@media (max-width: 768px) {
    .esg-impact-tab {
        padding: 8px 18px;
        font-size: 13px;
    }

    .esg-stat-card {
        min-width: 240px;
        padding: 20px 28px;
    }

    .esg-stat-card__number {
        font-size: 28px;
    }

    .esg-stat-card__unit {
        font-size: 14px;
    }

    .esg-stat-card__desc {
        font-size: 13px;
    }

    .esg-impact-panels {
        padding-bottom: 40px;
    }
}

@media (max-width: 480px) {

    .esg-impact-section .section-header {
        padding: 32px 0 24px;
        gap: 16px;
    }

    .esg-impact-section .section-header h2 {
        font-size: 20px;
    }

    .esg-stat-card {
        min-width: calc(100vw - 40px);
        padding: 24px 20px;
        gap: 20px;
    }

    .esg-stat-card__number {
        font-size: 28px;
    }

    .esg-stat-card__unit {
        font-size: 16px;
    }

    .esg-stat-card__desc {
        font-size: 13px;
    }
}

/* Approach to Materiality Css  */

.esg-appraoch-to-materiality {
    background: #853F00;
    width: 100%;
    overflow: hidden;
}

.esg-materiality-wrapper {
    display: flex;
    align-items: stretch;
    min-height: 480px;
}

.esg-materiality-image {
    position: relative;
    width: 50%;
    flex-shrink: 0;
    display: flex;
    align-items: stretch;
}

.esg-materiality-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.esg-materiality-content {
    width: 50%;
    position: relative;
    display: flex;
    align-items: center;
    padding: 60px 80px;
}

.esg-materiality-content__inner {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 540px;
    position: relative;
    z-index: 2;
}

.esg-materiality-content__inner h3 {
    color: #E6E7E8;
    font-family: 'Alexandria', sans-serif;
    font-size: 36px;
    font-weight: 400;
    line-height: 130%;
    margin: 0;
}

.esg-materiality-content__inner .desc {
    color: rgba(255, 255, 255, 0.85);
    font-family: 'Manrope', sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 175%;
    letter-spacing: 0.3px;
    margin: 0;
}

/* CTA Button */
.esg-appraoch__cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 4px;
    background: linear-gradient(106deg, #CE5600 0.12%, #EA8033 114%);
    width: fit-content;
    cursor: pointer;
    transition: opacity 0.3s ease, transform 0.2s ease;
    text-decoration: none;
}

.esg-appraoch__cta:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

.esg-appraoch__cta a {
    color: #fff;
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: 0.3px;
    line-height: 1;
}

.esg-appraoch__cta svg {
    flex-shrink: 0;
}

/* ==========================================================================
   Responsive - Tablet
   ========================================================================== */
@media (max-width: 1200px) {
    .esg-materiality-content {
        padding: 50px 50px;
    }

    .esg-materiality-content__inner h3 {
        font-size: 30px;
    }
}

@media (max-width: 991px) {
    .esg-materiality-wrapper {
        flex-direction: column;
        min-height: auto;
    }

    .esg-materiality-image {
        width: 100%;
        height: 350px;
    }

    .esg-materiality-content {
        width: 100%;
        padding: 50px 40px 80px;
    }

    .esg-materiality-content__inner {
        max-width: 100%;
    }

    .esg-materiality-content__inner h3 {
        font-size: 28px;
    }
}


@media (max-width: 768px) {
    .esg-materiality-image {
        height: 280px;
    }

    .esg-materiality-content {
        padding: 40px 24px 70px;
    }

    .esg-materiality-content__inner h3 {
        font-size: 24px;
    }

    .esg-materiality-content__inner .desc {
        font-size: 14px;
        line-height: 165%;
    }
}

@media (max-width: 480px) {
    .esg-materiality-image {
        height: 220px;
    }

    .esg-materiality-content {
        padding: 32px 20px 60px;
    }

    .esg-materiality-content__inner h3 {
        font-size: 22px;
    }

    .esg-materiality-content__inner .desc {
        font-size: 14px;
    }

    .esg-appraoch__cta {
        padding: 12px 22px;
    }
}

.esg-pillars-section {
    background: #FFF9F4;
    padding: 80px 0 100px;
    overflow: hidden;
}

.esg-pillars__heading {
    font-family: 'Alexandria', sans-serif;
    font-size: 24px;
    font-weight: 400;
    line-height: 140%;
    color: #000;
    margin: 0 0 50px;
    font-style: normal;
}

/* Grid: 4 equal columns */
.esg-pillars-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    align-items: start;
}

/* --------------------------------------------------------------------------
   Card Base
   -------------------------------------------------------------------------- */
.esg-pillar-card {
    position: relative;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: box-shadow 0.4s ease, background 0.4s ease;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.esg-pillar-card:hover {
    box-shadow: 0 8px 32px rgba(232, 119, 34, 0.18);
}

/* --------------------------------------------------------------------------
   Card Header (always visible)
   -------------------------------------------------------------------------- */
.esg-pillar-card__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 24px;
    gap: 12px;
    min-height: 90px;
}

.esg-pillar-card__title {
    font-family: 'Alexandria', sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 140%;
    color: #853F00;
    margin: 0;
    transition: color 0.4s ease;
}

.esg-pillar-card__arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    color: #853F00;
    transition: color 0.4s ease, transform 0.3s ease;
    text-decoration: none;
    margin-top: 2px;
}

.esg-pillar-card:hover .esg-pillar-card__arrow {
    transform: translate(2px, -2px);
}

/* --------------------------------------------------------------------------
   Card Body (expandable on hover)
   -------------------------------------------------------------------------- */
.esg-pillar-card__body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1),
        padding 0.5s cubic-bezier(0.4, 0, 0.2, 1),
        opacity 0.4s ease;
    opacity: 0;
    padding: 0 24px;
}

.esg-pillar-card:hover .esg-pillar-card__body {
    max-height: 350px;
    opacity: 1;
    padding: 0 24px 28px;
}

/* --------------------------------------------------------------------------
   Orange gradient on hover
   -------------------------------------------------------------------------- */
.esg-pillar-card:hover {
    background: linear-gradient(106deg, #CE5600 0.12%, #EA8033 114%);
}

.esg-pillar-card:hover .esg-pillar-card__title {
    color: #fff;
}

.esg-pillar-card:hover .esg-pillar-card__arrow {
    color: #fff;
}

/* --------------------------------------------------------------------------
   2x2 Icon Grid inside body
   -------------------------------------------------------------------------- */
.esg-pillar-card__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px 20px;
}

.esg-pillar-card__item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.esg-pillar-card__icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.9);
}

.esg-pillar-card__icon svg {
    width: 36px;
    height: 36px;
}

.esg-pillar-card__label {
    font-family: 'Alexandria', sans-serif;
    font-size: 12px;
    font-weight: 400;
    line-height: 18px;
    color: #FFF;
}

/* --------------------------------------------------------------------------
   Responsive - Tablet
   -------------------------------------------------------------------------- */
@media (max-width: 1200px) {
    .esg-pillars-grid {
        gap: 16px;
    }

    .esg-pillar-card__header {
        padding: 24px 20px;
        min-height: 90px;
    }

    .esg-pillar-card__title {
        font-size: 16px;
    }

    .esg-pillar-card__body {
        padding: 0 20px;
    }

    .esg-pillar-card:hover .esg-pillar-card__body {
        padding: 0 20px 24px;
    }

    .esg-pillar-card__grid {
        gap: 20px 16px;
    }

    .esg-pillar-card__label {
        font-size: 12px;
    }
}

@media (max-width: 991px) {
    .esg-pillars-section {
        padding: 60px 0 80px;
    }

    .esg-pillars__heading {
        font-size: 30px;
        margin-bottom: 36px;
    }

    .esg-pillars-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .esg-pillar-card__header {
        min-height: 80px;
    }
}

@media (max-width: 768px) {
    .esg-pillars-section {
        padding: 50px 0 60px;
    }

    .esg-pillars__heading {
        font-size: 26px;
        margin-bottom: 28px;
    }

    .esg-pillars-grid {
        gap: 16px;
    }

    .esg-pillar-card__title {
        font-size: 15px;
    }
}

/* --------------------------------------------------------------------------
   Responsive - Mobile (always expanded orange state)
   -------------------------------------------------------------------------- */
@media (max-width: 480px) {
    .esg-pillars-section {
        padding: 36px 0 50px;
    }

    .esg-pillars__heading {
        font-size: 22px;
        margin-bottom: 24px;
    }

    .esg-pillars-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    /* Always show orange gradient on mobile */
    .esg-pillar-card {
        background: linear-gradient(106deg, #CE5600 0.12%, #EA8033 114%);
        box-shadow: none;
    }

    .esg-pillar-card:hover {
        box-shadow: none;
    }

    /* Title & arrow always white */
    .esg-pillar-card__title {
        font-size: 16px;
        color: #fff;
    }

    .esg-pillar-card__arrow {
        color: #fff;
    }

    /* Header adjustments */
    .esg-pillar-card__header {
        padding: 20px 20px 10px;
        min-height: auto;
    }

    /* Body always visible on mobile */
    .esg-pillar-card__body {
        max-height: none;
        opacity: 1;
        overflow: visible;
        padding: 0 20px 24px;
        transition: none;
    }

    .esg-pillar-card:hover .esg-pillar-card__body {
        max-height: none;
        padding: 0 20px 24px;
    }

    /* 2-column grid for most cards */
    .esg-pillar-card__grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px 16px;
    }

    /* 3-column grid for the "people" pillar (5 items) */
    .esg-pillar-card[data-pillar="people"] .esg-pillar-card__grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px 14px;
    }

    .esg-pillar-card__icon {
        width: 40px;
        height: 40px;
    }

    .esg-pillar-card__icon svg {
        width: 32px;
        height: 32px;
    }

    .esg-pillar-card__label {
        font-size: 11px;
        line-height: 16px;
    }
}

/* ==========================================================================
   ESG Certification - Proudly Green Section
   ========================================================================== */

.esg-certification-section {
    background: #fff;
    padding: 80px 0 90px;
    overflow: hidden;
}

/* Header: label + heading + description */
.esg-certification__header {
    text-align: center;
    max-width: 780px;
    margin: 0 auto 60px;
}

.esg-certification__label {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    color: #F47920;
    font-family: 'Manrope', sans-serif;
    line-height: 22px;
    margin-bottom: 12px;
}

.esg-certification__heading {
    font-family: 'Alexandria', sans-serif;
    font-size: 36px;
    font-weight: 400;
    line-height: 130%;
    color: #1A1A1A;
    margin: 0 0 20px;
}

.esg-certification__desc {
    font-family: 'Manrope', sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 175%;
    color: #555;
    margin: 0;
    letter-spacing: 0.2px;
}

/* --------------------------------------------------------------------------
   Swiper Slider
   -------------------------------------------------------------------------- */
.esg-certification-swiper {
    width: 100%;
    overflow: hidden;
}

.esg-certification__slide {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 0;
    height: auto;
}

.esg-certification__slide img {
    max-height: 70px;
    width: auto;
    display: block;
    object-fit: contain;
    transition: opacity 0.3s ease;
}

.esg-certification__slide:hover img {
    opacity: 0.75;
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 1200px) {
    .esg-certification__slide img {
        max-height: 62px;
    }
}

@media (max-width: 991px) {
    .esg-certification-section {
        padding: 60px 0 70px;
    }

    .esg-certification__heading {
        font-size: 30px;
    }

    .esg-certification__slide img {
        max-height: 58px;
    }
}

@media (max-width: 768px) {
    .esg-certification-section {
        padding: 50px 0 60px;
    }

    .esg-certification__header {
        margin-bottom: 40px;
    }

    .esg-certification__heading {
        font-size: 26px;
    }

    .esg-certification__desc {
        font-size: 14px;
        line-height: 165%;
    }

    .esg-certification__slide img {
        max-height: 55px;
    }
}

@media (max-width: 480px) {
    .esg-certification-section {
        padding: 36px 0 46px;
    }

    .esg-certification__header {
        margin-bottom: 32px;
    }

    .esg-certification__heading {
        font-size: 22px;
        margin-bottom: 16px;
    }

    .esg-certification__desc {
        font-size: 14px;
    }

    .esg-certification__slide img {
        max-height: 50px;
    }
}

/* ==========================================================================
   ESG Reports - Our ESG Priorities Section
   ========================================================================== */

.esg-reports-section {
    background: #fff;
    padding: 80px 0 0;
    position: relative;
    overflow: hidden;
}

.esg-reports__label {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    color: #F47920;
    font-family: 'Manrope', sans-serif;
    line-height: 22px;
    margin: 0 0 10px;
}

.esg-reports__heading {
    font-family: 'Alexandria', sans-serif;
    font-size: 36px;
    font-weight: 400;
    line-height: 130%;
    color: #1A1A1A;
    margin: 0 0 36px;
}

/* --------------------------------------------------------------------------
   Tabs + Navigation Row
   -------------------------------------------------------------------------- */
.esg-reports__top-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 40px;
    overflow: hidden;
}

/* Mobile tab-bar hidden by default (shown via media query) */
.esg-reports__top-bar--mobile {
    display: none !important;
}

.esg-reports__tabs-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    flex-wrap: nowrap;
    min-width: 0;
}

.esg-reports__tabs-wrap::-webkit-scrollbar {
    display: none;
}

.esg-reports__tab {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 24px;
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #555;
    background: transparent;
    border: 1.5px solid #D0D0D0;
    border-radius: 50px;
    cursor: pointer;
    white-space: nowrap;
    flex-shrink: 0;
    transition: color 0.3s ease, border-color 0.3s ease, background 0.3s ease;
    letter-spacing: 0.2px;
    line-height: 1.4;
}

.esg-reports__tab:hover {
    border-color: #F47920;
    color: #F47920;
}

.esg-reports__tab.active {
    border-color: #F47920;
    color: #F47920;
    background: rgba(244, 121, 32, 0.06);
    font-weight: 600;
}

/* Navigation Arrows */
.esg-reports__nav {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.esg-reports__nav-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1.5px solid rgba(0, 0, 0, 0.15);
    background: transparent;
    color: rgba(0, 0, 0, 0.4);
    cursor: pointer;
    transition: border-color 0.3s ease, color 0.3s ease, background-color 0.3s ease;
}

.esg-reports__nav-btn:hover {
    border-color: #F47920;
    color: #F47920;
}

.esg-reports__nav-btn:active {
    background-color: rgba(244, 121, 32, 0.1);
}

/* --------------------------------------------------------------------------
   Desktop: Swiper Report Cards
   -------------------------------------------------------------------------- */
.esg-reports-swiper {
    width: 100%;
    overflow: hidden;
    padding-bottom: 10px;
}

.esg-report-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.esg-report-card:hover {
    box-shadow: 0 6px 28px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.esg-report-card__meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px 12px;
}

.esg-report-card__date {
    font-family: 'Manrope', sans-serif;
    font-size: 13px;
    font-weight: 400;
    color: #888;
    letter-spacing: 0.2px;
}

.esg-report-card__file {
    font-family: 'Manrope', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: #888;
    letter-spacing: 0.2px;
}

.esg-report-card__image {
    width: 100%;
    aspect-ratio: 410 / 350;
    overflow: hidden;
    background: #f5f5f5;
}

.esg-report-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.esg-report-card:hover .esg-report-card__image img {
    transform: scale(1.04);
}

.esg-report-card__footer {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 16px 20px 20px;
    gap: 12px;
}

.esg-report-card__title {
    font-family: 'Alexandria', sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 145%;
    color: #1A1A1A;
    margin: 0;
}

.esg-report-card__download {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    color: #F47920;
    transition: color 0.3s ease, transform 0.2s ease;
    text-decoration: none;
}

.esg-report-card__download:hover {
    color: #CE5600;
    transform: translateY(2px);
}

/* --------------------------------------------------------------------------
   Mobile: List View
   -------------------------------------------------------------------------- */
.esg-reports-mobile-list {
    display: none;
}

.esg-report-item {
    border-top: 1px solid #E8E8E8;
    padding: 20px 0;
}

.esg-report-item:last-child {
    border-bottom: 1px solid #E8E8E8;
}

.esg-report-item__meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.esg-report-item__date {
    font-family: 'Manrope', sans-serif;
    font-size: 13px;
    font-weight: 400;
    color: #888;
}

.esg-report-item__file {
    font-family: 'Manrope', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: #888;
}

.esg-report-item__body {
    display: flex;
    align-items: center;
    gap: 16px;
}

.esg-report-item__thumb {
    width: 90px;
    height: 90px;
    flex-shrink: 0;
    border-radius: 6px;
    overflow: hidden;
    background: #f5f5f5;
}

.esg-report-item__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.esg-report-item__info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex: 1;
    min-width: 0;
    gap: 12px;
}

.esg-report-item__title {
    font-family: 'Alexandria', sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 150%;
    color: #1A1A1A;
    margin: 0;
}

.esg-report-item__download {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    text-decoration: none;
    transition: transform 0.2s ease;
}

.esg-report-item__download:hover {
    transform: translateY(2px);
}

/* --------------------------------------------------------------------------
   Show More Button (mobile only)
   -------------------------------------------------------------------------- */
.esg-reports__show-more-wrap {
    display: none;
    text-align: center;
    padding: 24px 0 0;
}

.esg-reports__show-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: none;
    border: none;
    padding: 10px 0;
    font-family: 'Manrope', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #1A1A1A;
    cursor: pointer;
    letter-spacing: 0.2px;
    transition: color 0.3s ease;
}

.esg-reports__show-more:hover {
    color: #F47920;
}

.esg-reports__show-more span {
    font-size: 18px;
    font-weight: 400;
    color: #F47920;
    line-height: 1;
}

/* --------------------------------------------------------------------------
   View All CTA
   -------------------------------------------------------------------------- */
.esg-reports__cta-wrap {
    text-align: center;
    padding: 40px 0 50px;
}

.esg-reports__view-all {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 4px;
    background: linear-gradient(106deg, #CE5600 0.12%, #EA8033 114%);
    color: #fff;
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: 0.3px;
    transition: opacity 0.3s ease, transform 0.2s ease;
}

.esg-reports__view-all:hover {
    opacity: 0.9;
    transform: translateY(-1px);
    color: #fff;
    text-decoration: none;
}

/* Dashed decorative line below CTA */
.esg-reports__dashed-line {
    width: 100%;
    border-bottom: 2px dashed #F47920;
    opacity: 0.5;
}

/* ==========================================================================
   ESG Reports - Responsive (Desktop ≥ 769px)
   ========================================================================== */

@media (max-width: 1200px) {
    .esg-reports__heading {
        font-size: 30px;
    }

    .esg-reports__tab {
        padding: 9px 20px;
        font-size: 13px;
    }

    .esg-report-card__title {
        font-size: 14px;
    }
}

@media (max-width: 991px) {
    .esg-reports-section {
        padding: 60px 0 0;
    }

    .esg-reports__heading {
        font-size: 28px;
        margin-bottom: 28px;
    }

    .esg-reports__top-bar--desktop {
        margin-bottom: 32px;
    }

    .esg-reports__tab {
        padding: 8px 18px;
        font-size: 13px;
    }
}

/* ==========================================================================
   ESG Reports - Mobile (≤ 768px)
   ========================================================================== */

@media (max-width: 768px) {

    /* Warm cream/peach background gradient */
    .esg-reports-section {
        padding: 44px 0 0;
        background: linear-gradient(180deg, #FEF3EB 0%, #FFF9F4 50%, #fff 100%);
    }

    /* Label */
    .esg-reports__label {
        font-size: 14px;
        letter-spacing: 1.4px;
        margin-bottom: 10px;
    }

    /* Heading - matches reference ~28px */
    .esg-reports__heading {
        font-size: 28px;
        font-weight: 400;
        margin-bottom: 24px;
        line-height: 130%;
    }

    /* Swap tab bars */
    .esg-reports__top-bar--desktop {
        display: none !important;
    }

    .esg-reports__top-bar--mobile {
        display: flex !important;
        margin-bottom: 28px;
        gap: 0;
        overflow: visible;
    }

    .esg-reports__top-bar--mobile .esg-reports__tabs-wrap {
        gap: 10px;
        padding-bottom: 4px;
        width: 100%;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        flex-wrap: nowrap;
    }

    .esg-reports__top-bar--mobile .esg-reports__tab {
        padding: 10px 22px;
        font-size: 14px;
        font-weight: 500;
        border-width: 1.5px;
        border-color: #D0D0D0;
        color: #555;
        flex-shrink: 0;
    }

    .esg-reports__top-bar--mobile .esg-reports__tab.active {
        border-color: #F47920;
        color: #F47920;
        background: rgba(244, 121, 32, 0.06);
        font-weight: 600;
    }

    /* Hide desktop swiper, show mobile list */
    .esg-reports-swiper {
        display: none;
    }

    .esg-reports-mobile-list {
        display: block;
    }

    /* List items */
    .esg-report-item {
        padding: 24px 0;
        border-color: #E0E0E0;
    }

    .esg-report-item__meta {
        margin-bottom: 18px;
    }

    .esg-report-item__date,
    .esg-report-item__file {
        font-size: 13px;
    }

    .esg-report-item__body {
        gap: 16px;
    }

    .esg-report-item__thumb {
        width: 100px;
        height: 100px;
        border-radius: 8px;
    }

    .esg-report-item__title {
        font-size: 16px;
        font-weight: 400;
        line-height: 145%;
    }

    .esg-report-item__download {
        width: 44px;
        height: 44px;
    }

    /* Show More button */
    .esg-reports__show-more-wrap {
        display: block;
        padding: 20px 0 0;
    }

    .esg-reports__show-more {
        font-size: 16px;
        font-weight: 600;
        gap: 10px;
    }

    .esg-reports__show-more span {
        font-size: 20px;
        font-weight: 500;
    }

    /* View All CTA */
    .esg-reports__cta-wrap {
        padding: 32px 0 44px;
    }

    .esg-reports__view-all {
        padding: 14px 36px;
        font-size: 15px;
        border-radius: 6px;
    }

    /* Hide dashed line on mobile */
    .esg-reports__dashed-line {
        display: none;
    }
}

@media (max-width: 480px) {
    .esg-reports-section {
        padding: 36px 0 0;
    }

    .esg-reports__heading {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .esg-reports__top-bar--mobile .esg-reports__tab {
        padding: 9px 18px;
        font-size: 13px;
    }

    .esg-report-item {
        padding: 20px 0;
    }

    .esg-report-item__thumb {
        width: 85px;
        height: 85px;
    }

    .esg-report-item__title {
        font-size: 15px;
    }

    .esg-reports__cta-wrap {
        padding: 24px 0 32px;
    }

    .esg-reports__view-all {
        padding: 12px 28px;
        font-size: 14px;
    }
}


/* ESG Strategy Css */

.esg-strategy-wheel-section {
    background: #FFF9F4;
    padding: 80px 0;
    position: relative;
}

.esg-strategy-main-container {
    display: flex;
    width: 100%;
    justify-content: space-between;
}

.esg-strategy-left-container {
    width: 38%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 25px;
}

.esg-strategy-subtitle {
    font-size: 13px;
    font-weight: 700;
    color: #e87722;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin: 0;
}

.esg-strategy-title-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.esg-strategy-title {
    font-size: clamp(28px, 2.5vw, 40px);
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.2;
    margin: 0;
}

.esg-strategy-desc {
    font-size: 15px;
    color: #555;
    line-height: 1.75;
    margin: 0;
}

.esg-strategy-learn-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #e87722;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    padding: 12px 24px;
    border-radius: 4px;
    text-decoration: none;
    align-self: flex-start;
    transition: background-color 0.2s ease;
}

.esg-strategy-learn-more-btn:hover {
    background-color: #c96918;
    color: #fff;
    text-decoration: none;
}

/* Right container — wheel image fills container without overflow */
.esg-strategy-right-container {
    width: 55%;
    flex-shrink: 0;
    min-width: 830px;
}

/* Wheel wrapper: position context for the content overlay */
.esg-wheel-wrapper {
    position: relative;
    width: 100%;
    line-height: 0;

    .desktop {
        display: block;
    }

    .mobile {
        display: none;
    }
}

.esg-wheel-bg {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
}

.esg-wheel-content-container {
    width: 78%;
    height: 80%;
    margin: 0 auto;
    position: absolute;
    top: 51%;
    left: 51%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    padding: 20px;
}

.wsg-wheel-sub-container {
    width: 100%;
    height: 100%;
    position: relative;
    border-radius: 50%;
    inset: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
}

.esg-wheel-tl-content {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    justify-content: flex-end;
    /* background: red; */

    .esg-tl-items1 {
        position: absolute;
        top: 20%;
        right: 0;
        display: flex;
        width: 80%;
        justify-content: flex-end;
        padding-right: 5px;

        .tl-item2 {
            margin-top: 5px;
        }

    }

    .esg-tl-items2 {
        position: absolute;
        top: 55%;
        left: 0%;
        display: flex;
        width: 80%;
        padding-right: 32px;
        margin-top: 2rem;
        justify-content: center;

        .tl-item4 {
            margin-top: 0px;
        }

    }
}

.esg-wheel-tr-content {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    justify-content: flex-start;

    .esg-tr-items1 {
        position: absolute;
        top: 20%;
        left: 0;
        display: flex;
        width: 80%;
        justify-content: flex-start;
    }

    .esg-tr-items2 {
        position: absolute;
        top: 55%;
        right: 0%;
        display: flex;
        width: 80%;
        padding-left: 28px;
        margin-top: 2rem;
    }
}

.esg-wheel-bl-content {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    justify-content: flex-start;

    .esg-bl-items1 {
        position: absolute;
        top: 28%;
        left: 5%;
        display: flex;
        width: 100%;
        justify-content: center;
        height: 90%;

        .bl-item1 {
            width: 60%;
            position: absolute;
            left: 5%;
            top: 0;
        }

        .bl-item2 {
            position: absolute;
            top: 35%;
            right: 6%;
        }
    }

    .esg-bl-items2 {
        position: absolute;
        top: 55%;
        right: 0%;
        display: flex;
        width: 80%;
        padding-right: 10px;
        margin-top: 2rem;
        justify-content: flex-end;
    }
}

.esg-wheel-br-content {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    justify-content: flex-end;

    .esg-br-items1 {
        position: absolute;
        top: 21%;
        right: 6%;
        display: flex;
        width: 75%;
        justify-content: flex-start;
    }

    .esg-br-items2 {
        position: absolute;
        top: 47%;
        right: 22%;
        display: flex;
        width: 80%;
        padding-left: 0;
        margin-top: 0.5rem;

        .esg-sub-items-contain1 {
            width: 45%;
            display: flex;
            flex-direction: column;
            gap: 10px;

            .bl-item1 {
                width: 90%;
            }

            .bl-item2 {
                width: 90%;
            }
        }

        .esg-sub-items-contain2 {
            width: 45%;

            .bl-item1 {
                margin-top: 1rem;
                width: 60%;
            }
        }
    }

    .esg-br-items3 {
        height: fit-content;
        position: absolute;
        bottom: 0%;
        right: 5%;
        display: flex;
        width: 100%;
        padding-left: 0;
        margin-top: 0.5rem;
    }

}

.esg-wq-heading {
    color: #853F00;
    font-family: 'Alexandria', sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 140%;
    width: 45%;
    cursor: pointer;
    position: relative;
}

.esg-head1 {
    text-align: right;
    padding-right: 10px;
}

.esg-head2 {
    padding-left: 10px;
}

.esg-head3 {
    padding-left: 8px;
    margin-top: 10px;
    margin-right: 0px;
    width: 65%;
}

.esg-head4 {
    padding-left: 27px;
    margin-top: 10px;
    margin-right: 0px;
    width: 65%;
}

.items a,
.items {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 50%;

    .esg-item-icon {
        width: 35px;
        height: 35px;
        color: #853F00;
    }

    span {
        color: #676666;
        text-align: center;
        font-family: 'Alexandria', sans-serif;
        font-size: 12px;
        font-style: normal;
        font-weight: 400;
        line-height: 140%;
        width: 90%;

    }
}

.esg-wheel-tl-content,
.esg-wheel-tr-content,
.esg-wheel-bl-content,
.esg-wheel-br-content {
    transition: 0.01s all ease-in-out;
}

.is-active {
    cursor: pointer;
}

.not-active {
    cursor: pointer;
    opacity: 0.9;
    background: #ffffff;

    &.esg-wheel-tl-content {
        border-top-left-radius: 94%;

        .esg-tl-items1 {
            opacity: 0.2;
        }

        .esg-tl-items2 {
            opacity: 0.2;
        }
    }

    &.esg-wheel-tr-content {
        border-top-right-radius: 94%;

        .esg-tr-items1 {
            opacity: 0.2;
        }

        .esg-tr-items2 {
            opacity: 0.2;
        }
    }

    &.esg-wheel-bl-content {
        border-bottom-left-radius: 94%;

        .esg-bl-items1 {
            opacity: 0.2;
        }

        .esg-bl-items2 {
            opacity: 0.2;
        }
    }

    &.esg-wheel-br-content {
        border-bottom-right-radius: 94%;

        .esg-br-items1 {
            opacity: 0.2;
        }

        .esg-br-items2 {
            opacity: 0.2;
        }
    }

    .esg-wq-heading {
        opacity: 0.2;
    }
}

/* Tooltip: hidden by default, positioned dynamically via JS */
.esg-item-tooltip {
    display: none;
    position: fixed;
    width: 320px;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    padding: 20px;
    box-shadow: 0 4px 24px 0 rgba(0, 0, 0, 0.10);
    z-index: 10000;
    line-height: normal;
    opacity: 0;
    transition: opacity 0.15s ease;
    pointer-events: none;
}

.esg-item-tooltip.is-visible {
    display: block;
    opacity: 1;
    pointer-events: auto;
}

.esg-item-tooltip h3 {
    font-family: 'Alexandria', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #e87722;
    margin: 0 0 12px;
    line-height: 1.3;
}

.esg-item-tooltip p {
    font-family: 'Alexandria', sans-serif;
    font-size: 14px;
    color: #444;
    line-height: 1.7;
    margin: 0 0 16px;
}

.esg-item-tooltip a {
    font-family: 'Alexandria', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #1a1a1a;
    text-decoration: underline;
}

.esg-item-tooltip a:hover {
    color: #e87722;
}

.is-active .items {
    transition: opacity 0.2s ease;
    cursor: pointer;
}

.is-active.has-item-hover .items.item-dimmed {
    opacity: 0.25;
}

.is-active.has-item-hover .items.item-hovered {
    opacity: 1;
}

@media screen and (min-width:1260px) and (max-width:1350px) {
    .esg-strategy-right-container {
        min-width: 730px;
    }

    .esg-head4 {
        padding-left: 20px;
        font-size: 13px;
    }

    .items a,
    .items {
        span {
            font-size: 11px;
        }
    }

    .esg-wq-heading {
        font-size: 13px;
    }

    .esg-head2 {
        padding-right: 10px;
    }
}

@media screen and (min-width:768px) and (max-width:1024px) {
    .custom-container {
        padding: 0 40px;
    }

    .esg-strategy-main-container {
        flex-direction: column;
    }

    .esg-strategy-left-container {
        width: 100%;
    }

    .esg-strategy-right-container {
        width: 100%;
        margin: 0 auto;
        min-width: 100%;
    }
}

@media screen and (max-width:767px) {
    .esg-strategy-wheel-section {
        padding: 40px 0;

        .custom-container {
            padding: 0 0 !important;
        }
    }

    .esg-strategy-main-container {
        flex-direction: column;
        gap: 5rem;
    }

    .esg-strategy-left-container {
        width: 100%;
        padding: 0 20px
    }

    .esg-strategy-title-container {
        align-items: center;
        text-align: center;
    }

    .esg-strategy-subtitle {
        font-size: 14px;
    }

    .esg-strategy-title {
        font-size: 26px;
    }

    .esg-strategy-desc {
        text-align: center;
    }

    .esg-strategy-learn-more-btn {
        display: none;
    }

    .esg-strategy-right-container {
        min-width: 100%;
    }

    .esg-wheel-wrapper {

        .desktop {
            display: none;
        }

        .mobile {
            display: block;
        }
    }

    .esg-wheel-content-container {
        padding: 15px 15px;
    }

    .esg-wheel-tl-content {
        width: 100%;
        padding-right: 0;
        margin-top: 0rem;

        .esg-tl-items2 {
            margin-top: 1rem;
            padding-right: 0px;
            left: unset;
            right: 28%;
        }
    }

    .esg-wheel-tr-content {
        .esg-tr-items2 {
            width: 85%;
            padding-left: 28px;
            margin-top: 1rem;
        }
    }

    .esg-head2 {
        padding-right: 10px;
    }

    .esg-wheel-bl-content {
        .esg-bl-items1 {
            top: 41%;
            left: 14%;
            justify-content: flex-end;

            .bl-item2 {
                right: 14%;
            }
        }

        .esg-bl-items2 {
            width: 55%;
            padding-right: 0px;
        }
    }

    .esg-wheel-br-content {
        .esg-br-items1 {
            top: 24%;
        }
    }

    .esg-head2 {
        width: 60% !important;
    }

    .esg-head3 {
        width: 60% !important;
        margin-top: 5px;
    }

    .esg-head4 {
        width: 64% !important;
        padding-left: 0px;
        font-size: 8px !important;
        margin-top: 5px;
    }

    .esg-wq-heading {
        font-size: 9px;
        width: 90%;
        height: fit-content;
        line-height: 120%;
    }

    .esg-head1 {
        padding-right: 5px;
    }

    .items a,
    .items {
        width: 55%;

        .esg-item-icon {
            width: 18px;
            height: 18px;
        }

        span {
            font-size: 6px;
            font-weight: 500;
            line-height: 110%;
            width: 90%;
        }
    }

}


/* Blogs Section | Section 6  */
.blogs-container {
    padding-block: 100px;

    .desktop {
        display: flex;
    }

    .mobile {
        display: none;
    }

    .eyebrow {
        color: #F47920;
        font-size: 14px;
        font-weight: 600;
        line-height: 22px;
        letter-spacing: 1.4px;
        text-transform: uppercase;
        font-family: 'Manrope', sans-serif;
    }

    .tabs {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 40px;
        margin-top: 12px;

        .tab-buttons {
            display: flex;
            gap: 20px;

            .tab-btn {
                font-family: 'Alexandria', sans-serif;
                background: none;
                border: none;
                font-size: 42px;
                font-style: normal;
                font-weight: 400;
                line-height: normal;
                color: #C3C3C3;
                cursor: pointer;
                padding-inline: 20px;
                padding-block: 0;
                border-right: 3px solid #C3C3C3;
                border-radius: 0;

                &.active {
                    color: #191919;
                }

                &:first-child {
                    padding-left: 0;
                    font-family: 'Alexandria', sans-serif;
                }

                &:last-child {
                    border-right: 0;
                    font-family: 'Alexandria', sans-serif;

                }
            }
        }
    }

    .tab-content {
        height: 450px;

        .tab-pane {
            display: none;
            height: 100%;
            grid-template-columns: 1.2fr 1fr;
            gap: 24px;

            &.active {
                display: grid;
            }
        }

        .left-card {
            position: relative;
            /* max-width: 600px; */
            width: 100%;
            border-radius: 6px;
            overflow: hidden;

            img {
                width: 100%;
                height: 100%;
                object-fit: cover;
                scale: 1;
                transition: all 0.2s ease;
            }

            .tag {
                position: absolute;
                top: 12px;
                left: 12px;
                font-size: 14px;
                font-weight: 600;
                padding: 8px;
                border-radius: 4px;
                background: rgba(0, 0, 0, 0.40);
                backdrop-filter: blur(6px);
                color: #FFF;
                font-size: 10px;
                font-weight: 300;
                line-height: normal;
            }

            .card-overlay {
                position: absolute;
                width: 392px;
                height: auto;
                bottom: 20px;
                left: 20px;
                padding: 24px;
                border-radius: 4px;
                background: rgba(255, 255, 255, 0.90);
                backdrop-filter: blur(6px);

                p {
                    color: #212529;
                    font-size: 16px;
                    font-weight: 400;
                    line-height: 24px;
                    margin-bottom: 0;
                    text-overflow: ellipsis;
                    display: -webkit-box;
                    overflow: hidden;
                    -webkit-box-orient: vertical;
                    -webkit-line-clamp: 2;
                    margin: 0;
                    font-family: 'Alexandria', sans-serif;
                }

                .read-time,
                .date {
                    width: fit-content;
                    display: flex;
                    gap: 8px;
                    justify-content: center;
                    align-items: normal;
                    color: #868E96;
                    font-size: 13px;
                    font-weight: 400;
                    line-height: normal;
                    font-size: 14px;
                    margin-bottom: 16px;
                    font-family: 'Alexandria', sans-serif;
                }
            }

            &:hover {
                img {
                    scale: 1.1;
                    transition: all 0.2s ease;
                }
            }
        }

        .right-cards {
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            gap: 16px;

            .small-card {
                display: flex;
                gap: 16px;
                align-items: center;

                .img-container {
                    max-width: 180px;
                    height: 120px;
                    border-radius: 6px;
                    overflow: hidden;
                    width: 100%;

                    img {
                        width: 100%;
                        height: 100%;
                        object-fit: cover;
                        scale: 1;
                        transition: all 0.2s ease;
                        max-width: 100%;
                    }
                }

                .small-card-content {
                    height: 100%;
                    justify-content: space-between;
                    display: flex;
                    flex-direction: column;

                    .tag {
                        width: fit-content;
                        color: #616161;
                        font-size: 12px;
                        font-weight: 300;
                        line-height: normal;
                        padding: 4px 8px;
                        border-radius: 4px;
                        background: #F6F6F6;
                        backdrop-filter: blur(6px);
                    }

                    p {
                        color: #212529;
                        font-size: 16px;
                        font-weight: 400;
                        text-overflow: ellipsis;
                        display: -webkit-box;
                        overflow: hidden;
                        -webkit-box-orient: vertical;
                        -webkit-line-clamp: 2;
                        margin: 0;
                        font-family: 'Alexandria', sans-serif;
                    }

                    .date {
                        color: #868E96;
                        font-size: 13px;
                        font-weight: 400;
                        line-height: normal;
                    }
                }

                svg {
                    width: 16px;
                    height: 16px;
                    flex-shrink: 0;
                    margin-left: 13px;
                }

                &:hover {
                    img {
                        scale: 1.1;
                        transition: all 0.2s ease;
                    }

                    .small-card-content {
                        p {
                            color: #F47920;
                        }
                    }

                    svg {
                        path {
                            fill: #F47920;
                        }
                    }
                }
            }
        }

        #blogs {
            .right-cards {
                .small-card {
                    .small-card-content {
                        justify-content: center;
                        gap: 8px;
                    }
                }
            }
        }

        #case-study {
            .right-cards {
                .small-card {
                    .small-card-content {
                        justify-content: center;
                    }
                }
            }
        }
    }

    @media screen and (max-width: 1025px) {
        & {
            padding-block: 72px;

            .desktop {
                display: none;
            }

            .mobile {
                display: flex;
            }

            .tabs {
                .tab-buttons {
                    width: 100%;
                    display: flex;
                    flex-wrap: nowrap;
                    overflow-x: auto;
                    gap: 0;
                    -webkit-overflow-scrolling: touch;
                    -ms-overflow-style: none;
                    white-space: nowrap;

                    .tab-btn {
                        gap: 0;
                        color: #C3C3C3;
                        font-size: 26px;
                        font-weight: 400;
                        line-height: 140%;
                        text-wrap: nowrap;
                        flex-shrink: 0;
                        width: auto;
                        text-align: center;
                    }
                }
            }

            .tab-content {
                height: 100%;

                .tab-pane {
                    grid-template-columns: 1fr;
                }

                .left-card {
                    height: 360px;

                    img {}

                    .card-overlay {
                        width: 100%;
                        bottom: 0;
                        left: 0;
                        background: transparent;
                        backdrop-filter: unset;
                        padding: 20px;
                        z-index: 1;

                        p {
                            width: 100%;
                            text-wrap: wrap;
                            color: #FFF;
                            font-size: 22px;
                            font-weight: 400;
                            line-height: 32px;
                        }

                        .read-time,
                        .date {
                            color: #FFF;
                            font-size: 14px;
                            font-weight: 400;
                            line-height: normal;
                            opacity: 0.6;
                            margin-bottom: 8px;
                        }
                    }


                    &::before {
                        content: '';
                        position: absolute;
                        top: 0;
                        left: 0;
                        width: 100%;
                        height: 100%;
                        background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 0%, rgba(0, 0, 0, 0.60) 100%), linear-gradient(0deg, rgba(0, 0, 0, 0.20) 0%, rgba(0, 0, 0, 0.20) 100%);
                        z-index: 1;
                    }
                }

                .right-cards {
                    gap: 0;

                    .small-card {
                        padding-block: 16px;
                        border-bottom: 1px solid #bababa40;

                        .img-container {
                            min-width: 80px;
                            max-width: 80px;
                            height: 100px;
                            border-radius: 8px;
                        }

                        .small-card-content {
                            justify-content: center;
                            flex-direction: column-reverse;
                            gap: 8px;
                        }

                        &:first-child {
                            padding-top: 0;
                        }

                        &:last-child {
                            padding-bottom: 0;
                            border-bottom: 0;
                        }

                        svg {
                            path {
                                fill: #F47920;
                            }
                        }
                    }
                }

                #blogs {
                    .right-cards {
                        .small-card {
                            .small-card-content {
                                flex-direction: column;
                            }
                        }
                    }
                }
            }

            .orange-btn {
                margin-top: 32px;
            }
        }
    }
}

.orange-btn {
    display: flex;
    width: fit-content;
    height: auto;
    padding: 10px 20px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 4px;
    background: linear-gradient(106deg, #CE5600 0.12%, #EA8033 114%);

    p {
        font-family: 'Alexandria', sans-serif;
        color: #FFF;
        font-size: 14px;
        font-weight: 400;
        line-height: 28px;
        text-transform: capitalize;
        margin-bottom: 0;
    }
}