/* ==========================================================================
   ESG HIGHLIGHTS SECTION
   ========================================================================== */

body {
    background-color: #ffffff;
}

.announcements-section {
    background-color: #f9f9f9;
    padding: 30px 0;
    overflow-x: hidden;
    /* Prevent body overflow */
}

.esg-title {
    font-family: 'Manrope', sans-serif;
    font-weight: 400;
    color: #1e1e1e;
    margin-bottom: 40px;
    line-height: 1.2;
}

.esg-grid {
    display: flex;
    gap: 10px;
    width: 100%;
}

/* Card Styling - Desktop Default */
.esg-card {
    background: var(--common-gredient);
    border-radius: 20px;
    padding: 30px;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 2px;
    height: 110px;
    flex: 1 1 0;
    /* Stretch end-to-end to fill container on screen sizes >= 1440px */
    box-sizing: border-box;
}

.esg-card-value {
    font-family: 'Manrope', sans-serif;
    font-size: 20px;
    font-weight: 400;
    color: #ffffff;
    line-height: 1.2;
    white-space: nowrap;
    display: inline-block;
}

.esg-card-unit {
    font-size: 14px;
    font-weight: 400;
    color: #ffffff;
    margin-left: 4px;
    text-transform: none;
    display: inline-block;
}

.esg-card-unit sub {
    font-size: 10px;
    vertical-align: baseline;
    position: relative;
    bottom: -0.05em;
    line-height: 0;
}

.esg-card-label {
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #ffffff;
    line-height: 1.25;
}

.banner-section.investor-banner .banner-paragraph{width: 100%;}
.banner-headline{font-size: 36px; line-height: 1.2;}

.ourbrand_random-a{    top: -53px;
    left: -37px; width: 100px;}

/* Tablet / Intermediate Screen Widths (Scroll added below 1440px) */
@media (max-width: 1439px) {

    .esg-title {
        margin-bottom: 30px;
    }

    .esg-grid {
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 16px;
        margin-bottom: -16px;
        margin-right: -60px;
        /* Bleed to the extreme right edge */
        padding-right: 60px;
    }

    .esg-card {
        scroll-snap-align: start;
        flex: 0 0 322px;
        /* Fixed width under 1440px to enable scrolling */
        width: 322px;
    }

    /* Webkit scrollbar styling for smooth horizontal scroll */
    .esg-grid::-webkit-scrollbar {
        height: 5px;
    }

    .esg-grid::-webkit-scrollbar-track {
        background: rgba(46, 83, 153, 0.05);
        border-radius: 10px;
    }

    .esg-grid::-webkit-scrollbar-thumb {
        background: rgba(133, 112, 177, 0.3);
        border-radius: 10px;
    }
}

/* Mobile Screen Widths (exact sizes and 12px gap) */
@media (max-width: 768px) {

    .esg-title {
        margin-bottom: 24px;
    }

    .esg-grid {
        gap: 12px;
        margin-right: -30px;
        /* Spacing adjustments for standard mobile viewport margins */
        padding-right: 30px;
    }

    .esg-grid::-webkit-scrollbar-track {
        margin: 0 24px;
    }

    .esg-card {
        width: 278px;
        height: 110px;
        flex: 0 0 278px;
        padding: 30px;
    }

    .banner-headline{font-size: 24px; line-height: 1.4;}
}

/* ==========================================================================
   VIEW ALL BUTTON (GRADIENT STYLE)
   ========================================================================== */
.view-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
        background: var(--common-gredient);
    color: #ffffff;
    padding: 12px 24px;
    border-radius: 8px 8px 0 8px;
    clip-path: polygon(0 0,
            100% 0,
            100% calc(100% - 16px),
            calc(100% - 1px) calc(100% - 13px),
            calc(100% - 4px) calc(100% - 10px),
            calc(100% - 10px) calc(100% - 4px),
            calc(100% - 13px) calc(100% - 1px),
            calc(100% - 16px) 100%,
            0 100%);
    font-family: 'Manrope', sans-serif;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
}

.view-all-btn svg {
    width: 16px;
    height: 16px;
}

.view-all-btn.desktop-only {
    display: inline-flex;
}

.view-all-btn.mobile-only-btn {
    display: none;
}

/* ==========================================================================
   REPORTS & POLICIES SECTION
   ========================================================================== */
.policies-section {
    background-color: #ffffff;
    padding: 30px 0;
    overflow-x: hidden;
}

.policies-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
}

.policies-title {
    font-family: 'Manrope', sans-serif;
    font-weight: 400;
    color: #1e1e1e;
    margin: 0;
    line-height: 1.2;
}

.policies-header-actions {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.policies-tabs {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.policy-tab-btn {
    font-family: 'Manrope', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #1e1e1e;
    background: transparent;
    border: 1px solid #d9dde3;
    border-radius: 999px;
    padding: 10px 20px;
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.policies-tabs--types-only {
    margin-top: 24px;
}

.policy-tab-btn:hover {
    border-color: #164d92;
    color: #164d92;
}

.policy-tab-btn.active {
    background-color: #164d92;
    border-color: #164d92;
    color: #ffffff;
}

.policies-panel {
    display: none;
}

.policies-panel.active {
    display: block;
}

.policies-grid {
    display: flex;
    gap: 24px;
    width: 100%;
}

/* Policy Card Styling */
.policy-card {
    background-color: #f5f6f8;
    border-radius: 20px;
    padding: 24px;
    color: #1e1e1e;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 12px;
    height: 97px;
    flex: 1 1 0;
    /* Stretch end-to-end to fill container on screen sizes >= 1440px */
    box-sizing: border-box;
    text-decoration: none;
}

.policy-card-icon {
    color: #2E5399;
    flex-shrink: 0;
}

.policy-card-label {
    font-family: 'Manrope', sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: #1e1e1e;
    line-height: 1.25;
}

.view-all-btn{padding: 15px 18px; font-size: 14px;}


/* Tablet / Intermediate Screen Widths (Scroll added below 1440px) */
@media (max-width: 1439px) {

    .policies-grid {
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 16px;
        margin-bottom: -16px;
        margin-right: -60px;
        /* Bleed to the extreme right edge */
        padding-right: 60px;
    }

    .policy-card {
        scroll-snap-align: start;
        flex: 1;
        /* Fixed width under 1440px to enable scrolling */
        width: 322px;
    }

    /* Webkit scrollbar styling for smooth horizontal scroll */
    .policies-grid::-webkit-scrollbar {
        height: 5px;
    }

    .policies-grid::-webkit-scrollbar-track {
        background: rgba(46, 83, 153, 0.05);
        border-radius: 10px;
    }

    .policies-grid::-webkit-scrollbar-thumb {
        background: rgba(133, 112, 177, 0.3);
        border-radius: 10px;
    }
}

/* Mobile Screen Widths (exact sizes and 12px gap) */
@media (max-width: 768px) {

    .policies-header {
        margin-bottom: 24px;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .policies-header-actions {
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .policies-tabs {
        width: 100%;
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 4px;
    }

    .policy-tab-btn {
        flex: 0 0 auto;
        font-size: 14px;
        padding: 8px 16px;
    }

    .view-all-btn.desktop-only {
        display: none;
    }

    .view-all-btn.mobile-only-btn {
        display: inline-flex;
        width: 100%;
        justify-content: center;
        margin-top: 30px;
    }

    .policies-grid {
        gap: 12px;
        margin-right: -30px;
        /* Spacing adjustments for standard mobile viewport margins */
        padding-right: 30px;
    }

    .policies-grid::-webkit-scrollbar-track {
        margin: 0 24px;
    }

    .policy-card {
        width: 278px;
        height: 74px;
        flex: 0 0 278px;
        padding: 20px;
    }

    .policy-card-label {
        font-size: 16px;
    }

    #announcements .container,
    #reports-policies .container {
        padding-right: 0;
    }

    .policies-section .view-all-btn.mobile-only-btn{    width: calc(100% - 15px);}
}

/* Screen widths below 480px (narrow mobile padding adjustments) */
@media (max-width: 480px) {

    .esg-grid,
    .policies-grid {
        margin-right: -24px;
        padding-right: 24px;
    }
}

/* ==========================================================================
   OUR COMMITMENT SECTION
   ========================================================================== */
.commitment-section {
    padding: 53px 0 30px;
    position: relative;
}

.commitment-header {
    display: flex;
    gap: 31px;
    align-items: flex-start;
    margin-bottom: 40px;
    position: relative;
    z-index: 12;
}

.commitment-title {
    font-family: 'Manrope', sans-serif;
    font-weight: 400;
    color: #1e1e1e;
    margin: 0;
    line-height: 1.25;
}

.commitment-desc {
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #757575;
    line-height: 1.6;
    margin: 0;
    flex: 0 0 705px;
}

.commitment-grid {
    display: flex;
    gap: 10px;
    width: 100%;
    position: relative;
    z-index: 12;
}

.commitment-card {
    border-radius: 20px;
    padding: 32px 18px;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    flex: 1 1 321px;
    /* 321px card width on 1440px screen */
}

/* Background Colors */
.commitment-card.color-1 {
    background-color: rgba(0, 124, 2, 0.07);
}

.commitment-card.color-2 {
    background-color: #6D9ACE24;
}

.commitment-card.color-3 {
    background-color: #A888BF36;
}

.commitment-card.color-4 {
    background-color: #ED98A533;
}

.commitment-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 21px;
}

.commitment-card-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 48px;
    height: 39px;
}

.commitment-card-icon-img {
    display: block;
    width: auto;
    height: auto;
    max-width: 48px;
    max-height: 39px;
    object-fit: contain;
}

.commitment-card-icon--custom {
    width: auto;
    height: auto;
    max-width: 120px;
    max-height: 120px;
}

.commitment-card-icon-img--custom {
    max-width: none;
    max-height: none;
}

.commitment-card-title {
    font-family: 'Manrope', sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: #1e1e1e;
    margin: 0;
    line-height: 1.3;
}

.commitment-card-intro {
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: rgba(117, 117, 117, 0.9);
    /* #757575E5 */
    line-height: 1.5;
    margin-bottom: 20px;
    margin-top: 0;
}

.commitment-card-list {
    list-style: none;
    padding: 0;
    margin: 0;
    margin-top: auto;
    /* Push list to the bottom of the card */
}

.commitment-card-item {
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: rgba(117, 117, 117, 0.9);
    /* #757575E5 */
    padding: 10px 10px 10px 16px;
    position: relative;
    border: none;
    border-bottom: 1px solid;
    border-image-slice: 1;
    line-height: 1.3;
}

.commitment-card-item:first-child {
    border-top: 1px solid;
}

/* Border color combination 1 (Card 1 & Card 2) */
.commitment-card.color-1 .commitment-card-item,
.commitment-card.color-2 .commitment-card-item {
    border-image-source: linear-gradient(90deg, #C5C5C5 0%, #F9F9F9 100%);
}

/* Border color combination 2 (Card 3 & Card 4) */
.commitment-card.color-3 .commitment-card-item,
.commitment-card.color-4 .commitment-card-item {
    border-image-source: linear-gradient(90deg, rgba(50, 63, 103, 0.2) 0%, #F9F9F9 100%);
}

.commitment-card-item::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(117, 117, 117, 0.9);
}

/* Tablet viewports (Wrap to 2x2 grid) */
@media (max-width: 1280px) {

    .commitment-header {
        gap: 32px;
        margin-bottom: 30px;
    }

    .commitment-grid {
        flex-wrap: wrap;
        gap: 20px;
    }

    .commitment-card {
        flex: 0 1 calc(50% - 10px);
        min-height: 250px;
    }
}

@media (max-width: 991px) {
    .commitment-header {
        flex-direction: column;
        gap: 16px;
    }

    .commitment-desc {
        flex: none;
    }

}

/* Mobile viewports (stacked 1-by-1 vertically) */
@media (max-width: 768px) {

    .commitment-section{padding-top: 30px;}

    .commitment-grid {
        flex-direction: column;
        gap: 16px;
    }

    .commitment-card {
        flex: 1 1 auto;
        width: 100%;
        min-height: auto;
    }

    .commitment-card-header {
        margin-bottom: 20px;
    }
}

@media (max-width: 479px) {

    .commitment-card-intro {
        margin-bottom: 15px;
    }
}