body.investments-page {
    background: #0f2c38;
    color: #fff;
}

.investment-detail-hero {
    position: relative;
    min-height: 42vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 20px 72px;
    text-align: center;
    overflow: hidden;
}

.investment-detail-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(4,22,30,.72), rgba(4,22,30,.84)), var(--hero-image) center/cover no-repeat;
}

.investment-detail-hero .hero-overlay {
    position: relative;
    z-index: 1;
    max-width: 880px;
}

.investment-detail-hero h1 {
    margin: 18px 0 12px;
    color: #e1c885;
    font-size: clamp(36px, 6vw, 68px);
    line-height: 1.05;
}

.investment-detail-hero p {
    max-width: 760px;
    margin: 0 auto;
    color: #eaf2f4;
    font-size: clamp(16px, 2vw, 20px);
    line-height: 1.7;
}

.investment-detail-section {
    padding: clamp(54px, 7vw, 92px) 0;
}

.investment-detail-intro {
    max-width: 980px;
    margin: 0 auto clamp(32px, 5vw, 54px);
    padding: clamp(24px, 4vw, 38px);
    border: 1px solid rgba(225,200,133,.18);
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(255,255,255,.065), rgba(255,255,255,.025));
    box-shadow: 0 24px 70px rgba(0,0,0,.18);
}

.investment-detail-intro p {
    margin: 0;
    color: #dce8ed;
    font-size: clamp(16px, 1.7vw, 19px);
    line-height: 1.85;
}

.investment-brand-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.investment-brand-grid--three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: 1120px;
    margin: 0 auto;
}

.investment-brand-card {
    min-height: 270px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    padding: 24px;
    border: 1px solid rgba(225,200,133,.16);
    border-radius: 16px;
    background: #132f3d;
    color: #fff;
    text-decoration: none;
    transition: transform .28s ease, border-color .28s ease, box-shadow .28s ease;
}

.investment-brand-card:hover {
    transform: translateY(-7px);
    border-color: rgba(225,200,133,.58);
    box-shadow: 0 28px 70px rgba(0,0,0,.28);
}

.investment-brand-logo {
    width: 100%;
    min-height: 118px;
    display: grid;
    place-items: center;
    padding: 18px;
    border-radius: 14px;
    background: rgba(255,255,255,.94);
}

.investment-brand-logo img {
    max-width: 100%;
    max-height: 78px;
    object-fit: contain;
}

.investment-brand-card h2 {
    margin: 0 0 8px;
    color: #e1c885;
    font-size: 22px;
    line-height: 1.2;
}

.investment-brand-card p {
    margin: 0;
    color: #d5e1e6;
    line-height: 1.55;
}

.investment-brand-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #e1c885;
    font-weight: 850;
}

.investment-media-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 980px;
    margin: 0 auto;
}

.investment-media-grid .investment-brand-card {
    min-height: 300px;
}

.investment-detail-cta {
    padding: 0 0 clamp(54px, 7vw, 92px);
}

.investment-detail-cta .page-image-cta {
    margin: 0;
}

@media (max-width: 1100px) {
    .investment-brand-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .investment-brand-grid--three {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .investment-detail-hero {
        min-height: 36vh;
        padding: 98px 18px 56px;
    }

    .investment-brand-grid,
    .investment-brand-grid--three,
    .investment-media-grid {
        grid-template-columns: 1fr;
    }

    .investment-brand-card {
        min-height: auto;
        padding: 20px;
    }
}
