/*
Theme Name: Hodler landing
*/

@import url('assets/vendor/bootstrap-5.3.8-dist/css/bootstrap.min.css');

@import url('https://fonts.googleapis.com/css2?family=Mulish:ital,wght@0,200..1000;1,200..1000&display=swap');


:root {
    /* Brand colours */
    --color-navy-dark: #172545;
    --color-navy: #104078;
    --color-blue: #1273D9;
    --color-light-blue: #E7EDF9;
    --color-gold: #DDC075;
    --color-gray: #E5E5E5;
    --color-near-white: #F3F7FF;

    /* Bootstrap overrides */
    --bs-font-sans-serif: "Mulish", sans-serif;
    --bs-primary: #104078;
    --bs-primary-rgb: 16, 64, 120;
    /* --bs-primary-bg-subtle: #c8daf5; */
    --bs-primary-bg-subtle: var(--color-light-blue);
    --bs-primary-border-subtle: #a2bde8;
    --bs-dark: #172545;
    --bs-dark-rgb: 23, 37, 69;
    --bs-secondary: #1273B9;
    --bs-secondary-rgb: 18, 115, 185;

    --bs-link-color: #1273B9;

    /* Layout */
    --container-max: 1320px;
    --section-py: 5rem;
}

html:has(#sections) {
    scroll-snap-type: y mandatory;
}

body {
    font-family: "Mulish", sans-serif;
    color: var(--color-navy-dark);
    overflow-x: hidden;
}

main {
    min-height: 100vh;
    min-height: 100dvh;

}

.page section {
    margin: 5rem auto;
}

.page .page-subtitle {
    font-size: 1.4rem;
    font-weight: normal;
    padding-bottom: 5rem;
    max-width: 900px;
    margin: auto;
}

.page .page-title {
    font-size: 5rem;
    font-weight: 800;
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.page h3 {
    font-size: 2.6rem;
    font-weight: bold;
}


#sections section {
    min-height: 100vh;
    min-height: 100dvh;
    scroll-snap-align: start;
    padding-top: 2rem;
}

#sections+footer {
    scroll-snap-align: start;
}

.section-title {
    font-size: clamp(2.5rem, 4.5vw, 4rem);
    font-weight: 800;
    color: var(--color-navy-dark);
    line-height: 1.05;
    margin-bottom: 1.5rem;
}

.btn-hodler {
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.7rem 1.8rem;
    border-width: 2px;
    border-radius: 0;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.2s ease;
}

.btn-hodler.btn-outline-light {
    background-color: #ffffff;
    color: #1273D9;
    border-color: #ffffff;
}

.btn-hodler.btn-outline-light:hover {
    background-color: transparent;
    color: #ffffff;
    border-color: #ffffff;
}

.btn-hodler.btn-primary {
    background-color: var(--color-blue);
    border-color: var(--color-blue);
    color: #ffffff;
}

.btn-hodler.btn-primary:hover {
    background-color: transparent;
    color: var(--color-blue);
    border-color: var(--color-blue);
}

.site-header {
    background: var(--color-navy-dark);
    z-index: 1000;
}

/* Scroll offset for sticky header */
section[id] {
    scroll-margin-top: 4rem;
}

.site-header__logo img {
    height: 2rem;
    display: block;
}

/* Desktop nav */
.site-header__nav .nav {
    --bs-nav-link-color: rgba(255, 255, 255, 0.85);
    --bs-nav-link-hover-color: #ffffff;
}

.site-header__nav .nav-link {
    padding-left: 1.7rem;
    padding-right: 1.7rem;
}

/* Hamburger button */
.site-header__hamburger {
    background: none;
    border: none;
    padding: 0.4rem;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 5px;
    flex-shrink: 0;
}

.site-header__hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: #ffffff;
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
    transform-origin: center;
}

.site-header__hamburger[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.site-header__hamburger[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.site-header__hamburger[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile drawer */
.site-header__drawer {
    background: var(--color-navy-dark);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
    border-top: 1px solid rgba(255, 255, 255, 0);
}

.site-header__drawer.is-open {
    max-height: 500px;
    border-top-color: rgba(255, 255, 255, 0.1);
}

.site-header__drawer-link {
    display: block;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.85rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: color 0.2s;
}

.site-header__drawer-link:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.site-header__drawer-link:hover {
    color: #ffffff;
}

/* Dot Navigation */
.dot-nav {
    position: fixed;
    right: 5.5rem;
    top: 50%;
    transform: translateY(-50%);
    z-index: 500;
    flex-direction: column;
    gap: 3rem;
}

.dot-nav__item {
    display: block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #E5E5E5;
    border: none;
    transition: all 0.25s ease;
    text-decoration: none;
}

.dot-nav__item.active {
    background-color: var(--color-blue);
}

/* Hero Section */
.section-hero {
    position: relative;
    min-height: 100vh;
    background-image: url('assets/img/hero_bg.png');
    background-size: cover;
    background-position: center center;
    display: flex;
    align-items: center;
    padding-top: 6rem;
    /* offset sticky header */
}

.section-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, rgba(23, 37, 69, 0.32) 25%, rgba(23, 37, 69, 0.0) 75%);
}

.hero-content {
    position: relative;
    z-index: 1;
    width: 100%;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.08;
    margin-bottom: 1.5rem;
    max-width: 680px;
}

.hero-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    max-width: 560px;
    line-height: 1.65;
    margin-bottom: 2rem;
}

/* About Us Section */
.section-about {
    background: linear-gradient(90deg, #ffffff 50%, #1D4078 50%);
}

.about-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}


/* Milestones */
@media (max-width: 991.98px) {
    .milestones-title {
        margin-top: 0;
    }
}

.milestones {
    max-width: 400px;
    margin: auto;
}


.milestones-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #ffffff;
    margin-top: 2.2rem;
    margin-bottom: 2.8rem;
}

.milestones-wrapper {
    position: relative;
    height: calc(100vh - 14rem);
}

.milestones-fade {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(to bottom, #1D4078, transparent);
    z-index: 2;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.milestones-fade.is-visible {
    opacity: 1;
}

.milestones-scroll {
    height: 100%;
    overflow-y: auto;
    scrollbar-width: none;
    padding-top: 0.5rem;
    position: relative;
    padding-left: 2rem;
}

.milestones-scroll::-webkit-scrollbar {
    display: none;
}

.milestone {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 0;
    position: relative;
}

.milestone::before {
    content: '';
    position: absolute;
    left: calc(-2rem + 7px);
    top: 0;
    height: calc(1.2rem + 5px);
    width: 2px;
    background: rgba(231, 237, 249, 0.35);
}

.milestone:first-child::before {
    display: none;
}

.milestone::after {
    content: '';
    position: absolute;
    left: calc(-2rem + 7px);
    top: calc(1.2rem + 5px);
    bottom: 0;
    width: 2px;
    background: rgba(231, 237, 249, 0.35);
}

.milestone:last-child::after {
    display: none;
}

.milestone__dot {
    position: absolute;
    left: calc(-2rem + 8px - 5px);
    top: 1.2rem;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #E7EDF9;
    flex-shrink: 0;
    z-index: 3;
}

.milestone__year {
    color: #DDC075;
    font-weight: 700;
    font-size: 1.2rem;
    display: block;
    margin-bottom: 0.1rem;
}

.milestone__text {
    color: rgba(255, 255, 255, 0.82);
    font-size: 1rem;
    margin: 0;
    line-height: 1.4;
}

/* Key Figures Section */
.section-kf {
    background: linear-gradient(90deg, var(--color-gold) 50%, #ffffff 50%);
    overflow-x: hidden;
}

.kf-left {
    align-items: flex-start !important;
    padding-top: 32vh !important;
}

@media (max-width: 991.98px) {
    .kf-left {
        padding-top: 2rem !important;
    }

    .kf-left .section-title br {
        display: none;
    }

    .kf-right {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .kpi-item {
        width: 100%;
        text-align: center;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .kpi-value {
        font-size: clamp(2.8rem, 10vw, 4rem);
        padding-left: 0 !important;
    }

    .kpi-label {
        font-size: 1.1rem;
        padding-left: 0 !important;
    }

    .kpi-divider {
        width: 60%;
        margin-left: auto;
        margin-right: auto;
        background: rgba(23, 37, 69, 0.2);
    }
}

.kf-left .section-title {
    color: var(--color-navy-dark);
}

/* Remove Bootstrap ps-lg-4 so kpi-item starts at the exact column boundary */
.kf-right {
    padding-left: 0 !important;
}

@media (min-width: 992px) {
    .kf-right {
        padding-top: 6rem !important;
    }
}

.kpi-item {
    padding: 1.25rem 0;
    max-width: 70%;
}

.kpi-value {
    font-size: clamp(2rem, 3.3vw, 3.8rem);
    font-weight: 800;
    color: var(--color-navy-dark);
    line-height: 1;
    margin-bottom: 0.4rem;
    padding-left: 6rem;
}

.kpi-label {
    color: var(--color-navy-dark);
    font-size: 0.875rem;
    opacity: 0.75;
    margin-bottom: 1rem;
    line-height: 1.4;
    padding-left: 6rem;
}

.kpi-divider {
    border: none;
    height: 1px;
    /* Extends 25% of kpi-item width into gold panel, 100% to the right */
    width: 125%;
    margin-left: -25%;
    max-width: none;
    opacity: 1;
    margin-top: 0;
    margin-bottom: 0;
    /* Split at 20% (= 25/125) = column boundary; left = white, right = gold */
    background: linear-gradient(to right,
            rgba(255, 255, 255, 0.55) 20%,
            rgba(221, 192, 117, 0.7) 20%);
}


/* Our Values Section */
#our-values {
    background: #ffffff;
    scroll-margin-top: 4rem;
}

#our-values .wp-block-accordion {
    width: 100%;
}

#our-values .wp-block-accordion-item {
    padding: 0.5rem 0;
}

#our-values .wp-block-accordion-item:nth-child(even) {
    background-color: #E7EDF9;
}

#our-values .wp-block-accordion-item:nth-child(odd) {
    background-color: #F3F7FF;
}

#our-values .wp-block-accordion-item.is-open {
    background-color: transparent;
}

#our-values .wp-block-accordion-heading {
    font-size: clamp(1.2rem, 2.4vw, 1.8rem);
    font-weight: 700;
    color: var(--color-navy-dark);
    white-space: nowrap;
}


#our-values .wp-block-accordion-heading__toggle-title,
#our-values .wp-block-accordion-heading__toggle:hover {
    text-decoration: none !important;
}


.values-item {
    padding: 0.5rem 0;
    width: 100%;
}

.values-item:nth-child(even) {
    background-color: #E7EDF9;
}

.values-item:nth-child(odd) {
    background-color: #F3F7FF;
}

.values-item:has(.collapse.show) {
    background-color: transparent;
}

.values-item__inner {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    min-height: 4.5rem;
    padding: 0.75rem 0;
}

.values-item__title {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
    min-width: 0;
}

.values-bullet {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--color-gold);
    flex-shrink: 0;
    display: inline-block;
}

.values-item__name {
    font-size: clamp(1.2rem, 2.4vw, 1.8rem);
    font-weight: 700;
    color: var(--color-navy-dark);
    white-space: nowrap;
}

.values-item__body {
    flex: 1;
    font-size: 0.875rem;
    line-height: 1.65;
    color: #444;
}

/* When shown in flex context it needs to override display:none */
.values-item__body.collapse.show {
    display: block;
}

.values-toggle {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background-color: var(--color-blue);
    border: none;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.2s;
}

.values-toggle:hover {
    background-color: var(--color-navy);
}

.values-toggle img {
    filter: brightness(0) invert(1);
    transition: transform 0.3s ease;
}

.values-toggle[aria-expanded="true"] img {
    transform: rotate(180deg);
}

/* Team Section */
#our-team {
    background: #ffffff;
    overflow: hidden;
    scroll-margin-top: 4rem;
}

/* Team - 3-card fixed viewport */
.team-viewport {
    overflow: hidden;
    width: 100%;
    position: relative;
}

.team-track {
    display: flex;
    gap: 1.5rem;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

/* Width set by JS to exactly 1/3 of viewport */
.team-card {
    flex-shrink: 0;
    height: 560px;
    border-radius: 4px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.team-card__img {
    width: 100%;
    max-width: 440px;
    height: 100%;
    object-fit: cover;
    display: block;
}

.team-card__placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, #2a3f5f, #1a2d45);
}

/* Bottom overlay (default visible) */
.team-card__overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.25rem;
    background: linear-gradient(to top, rgba(23, 37, 69, 0.95) 0%, rgba(23, 37, 69, 0.5) 60%, transparent 100%);
    transition: opacity 0.3s ease;
}

.team-card__overlay .team-card__name {
    font-weight: 700;
    font-size: 1.5rem;
    letter-spacing: 0.16px;
    color: #ffffff;
    margin: 0 0 0.4rem;
}

.team-card__overlay .team-card__subtitle {
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    color: rgba(255, 255, 255, 0.75);
    text-transform: uppercase;
    margin: 0;
}

/* Hover overlay — very dark navy, slightly transparent */
.team-card__hover {
    position: absolute;
    inset: 0;
    background-color: rgba(8, 14, 28, 0.96);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.team-card:hover .team-card__overlay {
    opacity: 0;
}

.team-card:hover .team-card__hover {
    opacity: 1;
}

.team-card__hover .team-card__name {
    font-weight: 700;
    font-size: 1.3rem;
    line-height: 1.15;
    letter-spacing: 0.16px;
    color: #ffffff;
    text-transform: none;
    margin: 0 0 0.4rem;
}

.team-card__hover .team-card__subtitle {
    font-weight: 300;
    font-size: 0.8rem;
    line-height: 24px;
    letter-spacing: 0;
    color: #ffffff;
    text-transform: uppercase;
    margin: 0 0 0.75rem;
}

.team-card__bio {
    font-weight: 300;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0;
    color: #ffffff;
    margin: 0;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 8;
    line-clamp: 8;
    -webkit-box-orient: vertical;
}

.team-card__link {
    margin-top: auto;
    font-weight: 700;
    font-size: 0.7rem;
    color: #1273D9;
    text-decoration: none;
    text-transform: uppercase;
}

.team-card__link:hover {
    text-decoration: underline;
}

/* Controls (slider + button) centred */
.team-controls {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Range slider */
.team-slider {
    -webkit-appearance: none;
    appearance: none;
    display: block;
    width: 220px;
    height: 4px;
    background: var(--color-gray);
    border-radius: 2px;
    outline: none;
    cursor: pointer;
    padding: 0;
    margin: 0;
}

.team-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 36px;
    height: 10px;
    border-radius: 3px;
    background: var(--color-gold);
    cursor: pointer;
}

.team-slider::-moz-range-thumb {
    width: 36px;
    height: 10px;
    border-radius: 3px;
    background: var(--color-gold);
    cursor: pointer;
    border: none;
}

.team-archive__dept-title {
    color: var(--color-navy-dark);
    text-transform: uppercase;
    border-bottom: 1px solid var(--color-gold);
    padding-bottom: 1rem;
}

.team-index-card__image {
    aspect-ratio: 3/4;
}

.team-index-card__image:empty {
    background-color: var(--color-light-blue);
}

.team-index-card__name {
    display: flex;
    flex-direction: column;
}

.team-index-card__name a {
    font-weight: bold;
}

.team-index-card,
.team-index-card a {
    color: var(--color-navy-dark);
    text-decoration: none;
}

.team-member {
    max-width: 1100px;
    margin-bottom: 5rem;
}

.team-member h3 {
    font-weight: bold;
}

.team-member h5 {
    font-size: 1rem;
    font-weight: normal;
    text-transform: uppercase;
}

.team-member .content {
    margin-top: 2rem;
}

/* Investment Strategy Section */
#investment-strategy {
    background: #ffffff;
    scroll-margin-top: 4rem;
}

.investment-inner {
    width: 100%;
    padding-top: var(--section-py);
    padding-bottom: var(--section-py);
    padding-left: 1.5rem;
    padding-right: 4rem;
}

#investment-strategy .investment-image {
    background-image: url('assets/img/investment_strategy_img.png');
}

/* Align left edge with Bootstrap container at each breakpoint */
@media (min-width: 992px) {
    .investment-inner {
        padding-left: max(0.75rem, calc((100vw - 960px) / 2 + 0.75rem));
    }
}

@media (min-width: 1200px) {
    .investment-inner {
        padding-left: max(0.75rem, calc((100vw - 1140px) / 2 + 0.75rem));
    }
}

@media (min-width: 1400px) {
    .investment-inner {
        padding-left: max(0.75rem, calc((100vw - 1320px) / 2 + 0.75rem));
    }
}

/* Desktop column split: 62.5% text / 37.5% image (720px from 1920px) */
@media (min-width: 992px) {
    #investment-strategy .col-lg-7 {
        flex: 0 0 62.5%;
        max-width: 62.5%;
    }

    #investment-strategy .investment-image {
        flex: 0 0 37.5%;
        max-width: 37.5%;
    }
}

.investment-drivers {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.investment-drivers li {
    padding: 0.3rem 0 0.3rem 1.25rem;
    font-size: 0.9rem;
    line-height: 1.55;
    color: #333;
    position: relative;
}

.investment-drivers li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--color-navy-dark);
    font-weight: 900;
}

.investment-highlights {
    margin-top: 1.5rem;
}

.investment-highlight {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 0.75rem 0;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--color-navy-dark);
}

.investment-highlight img {
    flex-shrink: 0;
    object-fit: contain;
}

.investment-image {
    background-size: cover;
    background-position: center;
}

/* Portfolio Section */
#portfolio {
    background: #ffffff;
    padding-top: var(--section-py);
    padding-bottom: var(--section-py);
}

.portfolio-inner {
    width: 100%;
    padding-right: 2rem;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
}

.portfolio-card {
    position: relative;
    overflow: hidden;
    aspect-ratio: 325 / 140;
    cursor: pointer;
}

.portfolio-card__bg {
    position: absolute;
    inset: 0;
    background: #878787;
    transition: transform 0.4s ease;
}

.portfolio-card:hover .portfolio-card__bg {
    transform: scale(1.04);
}

.portfolio-card__tag {
    position: absolute;
    top: 0;
    right: 0;
    background-color: rgba(23, 37, 69, 0.9);
    color: #ffffff;
    font-size: 0.7rem;
    line-height: 24px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.4rem 0.85rem;
}

.portfolio-card__name {
    position: absolute;
    bottom: 0.85rem;
    left: 0.85rem;
    color: #ffffff;
    font-weight: 700;
    font-size: 0.95rem;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
    z-index: 1;
}

/* Footer Section */
footer {
    margin-top: auto;
}

.footer-upper {
    background-color: var(--color-light-blue);
}

.footer-logo {
    height: 60px;
    width: auto;
    display: block;
}

.footer-desc {
    font-size: 0.875rem;
    line-height: 1.65;
    color: var(--color-navy-dark);
    max-width: 460px;
    margin: 0;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.footer-social__btn {
    display: inline-flex;
    flex-shrink: 0;
}

.footer-social__btn img {
    width: 44px;
    height: 44px;
    display: block;
}

.footer-contact__title {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--color-navy-dark);
    margin-bottom: 1.25rem;
}

.footer-contact__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.footer-contact__list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.9rem;
    color: var(--color-navy-dark);
    line-height: 1.5;
}

.footer-contact__list li img {
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-contact__list a {
    color: var(--color-navy-dark);
    text-decoration: none;
}

.footer-contact__list a:hover {
    text-decoration: underline;
}

.footer-lower {
    background-color: var(--color-navy-dark);
}

.footer-copyright {
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8rem;
    margin: 0;
    padding: 1.25rem 0;
}

/* =============================================
   DESKTOP: every section fills full viewport
   ============================================= */
@media (min-width: 992px) {

    .section-about,
    .section-kf,
    #our-values,
    #our-team,
    #investment-strategy,
    #portfolio {
        min-height: calc(100vh - 4rem);
    }

    #investment-strategy>.row {
        min-height: calc(100vh - 4rem);
    }

}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 991px) {

    /* About Us – remove gradient, give right col its own bg */
    .section-about {
        background: #ffffff;
    }

    .about-right {
        background-color: #1D4078;
        padding-left: 1.5rem !important;
        padding-right: 1.5rem !important;
    }

    /* Key Figures – same approach */
    .section-kf {
        background: #ffffff;
    }

    .kf-left {
        background-color: var(--color-gold);
        padding-left: 1.5rem !important;
        padding-right: 1.5rem !important;
    }

    /* Investment Strategy */
    .investment-inner {
        padding-top: 2rem;
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }

    .investment-image {
        min-height: 70vw;
    }

    /* Portfolio */
    .portfolio-inner {
        padding-right: 0;
    }

    /* Values – body appears below title on mobile */
    .values-item__inner {
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .values-item__title {
        flex: 1;
    }

    .values-toggle {
        align-self: flex-start;
    }

    .values-item__body {
        flex: 0 0 100%;
        order: 3;
        padding-top: 0.75rem;
    }

    /* Team carousel */
    .team-carousel-outer {
        padding-left: 1rem;
    }

    .team-track {
        gap: 0;
    }

    .team-slider {
        width: 100% !important;
    }

    /* Footer */
    .footer-social {
        justify-content: center;
    }
}

@media (max-width: 575px) {

    .section-hero {
        padding-bottom: 3rem;
        align-items: center;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .team-card {
        width: 260px;
        height: auto;
        aspect-ratio: 3 / 4;
    }
}

/** ESG page */



.esg-focus-areas h3 {
    margin: 2rem auto 4rem;
}

.esg-focus-areas h5 {
    font-weight: bold;
}

.esg-focus-areas .wp-block-column {
    text-align: center;
    background-color: var(--color-gold);
    padding: 2rem 4rem;
}


.esg-accordion .values-bullet {
    display: none;
}

.esg-accordion .values-toggle {
    position: absolute;
    right: 0;
}

.esg-accordion .values-item {
    background-color: transparent;
    border-bottom: 1px solid var(--color-gold);
}

.esg-accordion .values-item__inner {
    flex-direction: column;
    position: relative;
}
.esg-accordion .values-item__name {
    font-size: 2.6rem;
    font-weight: bold;
}