﻿:root {
    --bg: #f4fbfa;
    --bg-soft: #edf8f6;
    --surface: rgba(255, 255, 255, 0.9);
    --surface-strong: #ffffff;
    --text: #17323a;
    --muted: #64808a;
    --primary: #0f766e;
    --primary-2: #14b8a6;
    --primary-3: #d9f3ef;
    --line: #d9e9e6;
    --line-strong: #bdd9d4;
    --shadow: 0 20px 50px rgba(9, 38, 46, 0.08);
    --shadow-soft: 0 12px 30px rgba(9, 38, 46, 0.06);
    --shadow-card: 0 18px 42px rgba(9, 38, 46, 0.08);
    --radius: 22px;
    --radius-sm: 16px;
    --maxw: 1200px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Inter, Arial, Helvetica, sans-serif;
    color: var(--text);
    background: radial-gradient(circle at top left, rgba(20, 184, 166, 0.08), transparent 25%), radial-gradient(circle at bottom right, rgba(15, 118, 110, 0.06), transparent 22%), linear-gradient(180deg, #f8fdfc 0%, var(--bg) 100%);
    line-height: 1.6;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: var(--primary);
    text-decoration: none;
}

    a:hover {
        text-decoration: underline;
    }

.container {
    width: min(calc(100% - 32px), var(--maxw));
    margin: 0 auto;
}

/* Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(14px);
    background: rgba(255, 255, 255, 0.86);
    border-bottom: 1px solid rgba(217, 233, 230, 0.9);
}

.nav-shell {
    min-height: 122px;
    display: flex;
    align-items: center;
    gap: 22px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 18px;
    min-width: 0;
    flex-shrink: 0;
}

.brand-logo {
    width: 180px;
    height: auto;
    max-height: 88px;
    object-fit: contain;
    filter: drop-shadow(0 6px 18px rgba(20, 184, 166, 0.18));
}

.brand-copy {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.brand-name {
    font-size: 32px;
    font-weight: 800;
    color: var(--text);
    letter-spacing: -0.04em;
    line-height: 1;
}

.brand-tag {
    margin-top: 6px;
    font-size: 12px;
    color: var(--muted);
    white-space: nowrap;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.main-nav {
    margin-left: auto;
    display: flex;
    gap: 24px;
    align-items: center;
}

    .main-nav a {
        color: var(--text);
        font-weight: 700;
        position: relative;
    }

        .main-nav a:hover {
            text-decoration: none;
            color: var(--primary);
        }

.lang-switch {
    display: flex;
    gap: 8px;
    margin-left: 10px;
}

.lang-btn {
    min-width: 42px;
    height: 38px;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: white;
    color: var(--text);
    font-weight: 800;
    cursor: pointer;
    transition: 0.2s ease;
}

    .lang-btn.active,
    .lang-btn:hover {
        background: var(--primary);
        color: white;
        border-color: var(--primary);
    }

.menu-toggle {
    display: none;
    margin-left: auto;
    border: 1px solid var(--line);
    background: white;
    border-radius: 12px;
    padding: 9px 12px;
    cursor: pointer;
}

/* Typography */
.eyebrow {
    display: inline-block;
    margin-bottom: 12px;
    color: var(--primary);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

h1 {
    margin: 0 0 16px;
    font-size: 62px;
    line-height: 1.02;
    letter-spacing: -0.045em;
    max-width: 760px;
}

h2 {
    margin: 0 0 14px;
    font-size: 38px;
    line-height: 1.12;
    letter-spacing: -0.03em;
}

h3 {
    margin: 0 0 10px;
    font-size: 22px;
    line-height: 1.22;
}

h4 {
    margin: 0 0 6px;
    font-size: 18px;
}

.hero-lead,
.section-heading p,
.content-panel p,
.narrow-panel p,
.story-card p,
.feature-card p,
.value-card p,
.contact-side-card p,
.team-placeholder-copy p,
.hero-card-caption p,
.contact-main-card p,
.pillar-card p,
.single-product-card p,
.partner-card p,
.impact-point p {
    color: var(--muted);
    font-size: 17px;
}

.hero-lead {
    max-width: 760px;
}

/* Buttons */
.btn {
    min-height: 48px;
    padding: 0 18px;
    border-radius: 14px;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: 0.2s ease;
    text-decoration: none;
}

    .btn:hover {
        text-decoration: none;
        transform: translateY(-1px);
    }

.btn-primary {
    background: linear-gradient(135deg, var(--primary), #0c5f58);
    color: white;
    box-shadow: 0 14px 30px rgba(15, 118, 110, 0.18);
}

.btn-secondary {
    background: white;
    color: var(--text);
    border: 1px solid var(--line);
}

.btn-light {
    background: white;
    color: var(--primary);
}

/* Hero */
.hero-section {
    position: relative;
    overflow: hidden;
    padding: 88px 0 70px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(15, 118, 110, 0.1), rgba(20, 184, 166, 0.02)), radial-gradient(circle at 20% 30%, rgba(20, 184, 166, 0.12), transparent 30%), radial-gradient(circle at 80% 20%, rgba(15, 118, 110, 0.1), transparent 28%);
    pointer-events: none;
}

.hero-grid {
    position: relative;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 38px;
    align-items: center;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px;
}

.hero-metrics {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 26px;
}

.metric-pill {
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(217, 233, 230, 0.9);
    border-radius: 999px;
    padding: 12px 16px;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-soft);
}

.metric-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--muted);
    font-weight: 800;
}

.metric-value {
    font-size: 14px;
    font-weight: 700;
    color: var(--text);
}

/* Shared Cards */
.glass-card,
.feature-card,
.value-card,
.story-card,
.pillar-card,
.contact-main-card,
.contact-side-card,
.team-placeholder-card,
.narrow-panel,
.team-card-premium,
.partner-card,
.impact-point {
    background: var(--surface);
    border: 1px solid rgba(217, 233, 230, 0.95);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.glass-card {
    backdrop-filter: blur(12px);
}

.hero-card,
.tech-visual-card,
.team-placeholder-card,
.single-product-card,
.impact-visual-card {
    overflow: hidden;
}

.hero-image {
    width: 100%;
    aspect-ratio: 16 / 11;
    object-fit: cover;
    background: #e7f5f2;
}

.hero-card-caption {
    padding: 20px;
}

.single-product-card {
    border-radius: 26px;
}

.single-product-image {
    width: 100%;
    aspect-ratio: 16 / 12;
    object-fit: cover;
    background: #e7f5f2;
}

/* Sections */
.section,
.page-hero,
.premium-page-hero {
    padding: 76px 0;
}

.section-alt {
    background: linear-gradient(180deg, rgba(237, 248, 246, 0.88), rgba(248, 253, 252, 0.92));
}

.section-soft {
    background: transparent;
}

.section-heading {
    margin-bottom: 30px;
    max-width: 820px;
}

    .section-heading.center {
        text-align: center;
        margin-inline: auto;
    }

.page-hero {
    padding-bottom: 34px;
}

.premium-page-hero {
    position: relative;
    overflow: hidden;
}

    .premium-page-hero::before {
        content: "";
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at top left, rgba(20, 184, 166, 0.1), transparent 30%), linear-gradient(120deg, rgba(15, 118, 110, 0.08), rgba(20, 184, 166, 0.02));
        pointer-events: none;
    }

    .premium-page-hero .container {
        position: relative;
    }

/* Grids */
.feature-grid,
.value-grid,
.tech-pillars,
.partner-grid {
    display: grid;
    gap: 20px;
}

.feature-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.value-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.tech-pillars {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.partner-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.split-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 34px;
    align-items: center;
}

.two-col-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 24px;
}

/* Standard cards */
.feature-card,
.value-card,
.story-card,
.pillar-card,
.contact-side-card,
.partner-card {
    padding: 24px;
}

.contact-main-card {
    padding: 34px 28px;
}

.icon-badge,
.step-num {
    width: 42px;
    height: 42px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    background: var(--primary-3);
    color: var(--primary);
    font-weight: 900;
    margin-bottom: 14px;
}

.content-panel {
    max-width: 680px;
}

.step-list {
    display: grid;
    gap: 16px;
    margin-top: 26px;
}

.step-item {
    display: grid;
    grid-template-columns: 52px 1fr;
    gap: 14px;
    padding: 18px;
    background: white;
    border-radius: 18px;
    border: 1px solid var(--line);
    box-shadow: var(--shadow-soft);
}

.visual-panel {
    min-width: 0;
}

/* Foundation section */
.trust-strip {
    display: grid;
    gap: 28px;
    align-items: center;
    padding: 28px;
}

.trust-strip-clean {
    background: linear-gradient(180deg, rgba(255,255,255,0.82), rgba(255,255,255,0.72));
    border: 1px solid rgba(217, 233, 230, 0.92);
    border-radius: 28px;
    box-shadow: var(--shadow);
}

.trust-strip-foundation-horizontal {
    grid-template-columns: 1fr;
    text-align: center;
}

.trust-copy-center {
    max-width: 900px;
    margin: 0 auto;
}

.foundation-logo-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 26px;
    flex-wrap: wrap;
    min-width: 0;
}

.foundation-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    max-width: 320px;
    overflow: hidden;
}

    .foundation-logo img {
        display: block;
        width: auto;
        height: auto;
        max-width: 100%;
        object-fit: contain;
    }

.foundation-logo-hku {
    width: 193px;
}

    .foundation-logo-hku img {
        width: 193px;
        max-width: 193px;
        max-height: 114px;
    }

.foundation-logo-abic {
    width: 289px;
}

    .foundation-logo-abic img {
        width: 289px;
        max-width: 289px;
        max-height: 88px;
    }

.logo-chip,
.partner-logo-wrap {
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: 18px;
    min-height: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px;
    box-shadow: var(--shadow-soft);
}

    .logo-chip img,
    .partner-logo-wrap img {
        max-width: 100%;
        max-height: 58px;
        object-fit: contain;
    }

.partner-card {
    text-align: center;
}

    .partner-card h3 {
        margin-top: 16px;
        margin-bottom: 10px;
    }

.partner-logo-wrap-eco {
    min-height: 138px;
    padding: 22px;
}

.partner-grid-ecosystem .partner-logo-wrap img {
    max-height: 82px;
}

/* Impact section */
.impact-grid {
    align-items: stretch;
}

.impact-visual-card {
    height: 100%;
}

.impact-points {
    display: grid;
    gap: 16px;
    margin-top: 24px;
}

.impact-point {
    padding: 18px;
    background: rgba(255, 255, 255, 0.92);
    border-radius: 18px;
    border: 1px solid var(--line);
    box-shadow: var(--shadow-soft);
}

/* CTA */
.cta-section {
    padding: 38px 0 62px;
}

.cta-shell {
    background: linear-gradient(135deg, var(--primary), #0a5d56);
    color: white;
    border-radius: 28px;
    padding: 34px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    box-shadow: 0 18px 45px rgba(15, 118, 110, 0.22);
}

    .cta-shell h2,
    .cta-shell p {
        color: white;
    }

/* Contact */
.contact-side-stack {
    display: grid;
    gap: 16px;
}

.contact-email-large {
    display: inline-block;
    font-size: 34px;
    line-height: 1.2;
    font-weight: 900;
    letter-spacing: -0.03em;
    margin: 8px 0 10px;
    word-break: break-word;
}

.muted-text {
    color: var(--muted);
}

/* Footer */
.site-footer {
    margin-top: 30px;
    border-top: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.75);
}

.footer-shell {
    min-height: 78px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    color: var(--muted);
    font-size: 14px;
}

/* Team Section */
.team-section-modern {
    position: relative;
    overflow: hidden;
}

    .team-section-modern::before {
        content: "";
        position: absolute;
        inset: 0;
        pointer-events: none;
        background: radial-gradient(circle at 12% 18%, rgba(20, 184, 166, 0.12), transparent 22%), radial-gradient(circle at 86% 24%, rgba(15, 118, 110, 0.08), transparent 18%);
    }

.team-heading-modern {
    max-width: 900px;
    margin-bottom: 42px;
    position: relative;
    z-index: 1;
}

.team-group-header {
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.team-group-kicker {
    display: inline-block;
    margin-bottom: 8px;
    color: var(--primary);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.team-group-header h3 {
    margin: 0;
    font-size: 30px;
    line-height: 1.15;
    letter-spacing: -0.03em;
}

.advisors-header {
    margin-top: 38px;
}

.team-portrait-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    position: relative;
    z-index: 1;
}

.team-portrait-grid-secondary {
    margin-top: 2px;
}

.team-portrait-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 26px 22px 22px;
    border-radius: 26px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(244, 251, 250, 0.97) 100%);
    border: 1px solid rgba(217, 233, 230, 0.98);
    box-shadow: var(--shadow-card);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

    .team-portrait-card::before {
        content: "";
        position: absolute;
        inset: 0;
        border-radius: inherit;
        pointer-events: none;
        background: linear-gradient(180deg, rgba(20, 184, 166, 0.05), transparent 34%);
    }

    .team-portrait-card:hover,
    .team-support-portrait-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 22px 48px rgba(9, 38, 46, 0.12);
        border-color: rgba(20, 184, 166, 0.35);
    }

.team-portrait-primary {
    box-shadow: 0 20px 44px rgba(15, 118, 110, 0.13);
}

.team-portrait-frame {
    width: min(100%, 171px);
    padding: 9px;
    border-radius: 22px;
    background: linear-gradient(180deg, #ffffff 0%, #f4fbfa 100%);
    border: 1px solid var(--line-strong);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.9), 0 10px 24px rgba(9, 38, 46, 0.06);
    position: relative;
}

    .team-portrait-frame::before {
        content: "";
        position: absolute;
        inset: 7px;
        border-radius: 16px;
        border: 1px solid rgba(20, 184, 166, 0.16);
        pointer-events: none;
    }

.team-portrait-photo-shell {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 5.15;
    overflow: hidden;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.12), rgba(15, 118, 110, 0.08));
    border: 1px solid rgba(189, 217, 212, 0.9);
}

    .team-portrait-photo-shell::after {
        content: "";
        position: absolute;
        inset: auto 0 0 0;
        height: 60px;
        background: linear-gradient(180deg, transparent, rgba(10, 28, 33, 0.08));
        pointer-events: none;
    }

.team-portrait-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.team-portrait-content {
    width: 100%;
    text-align: center;
    padding: 18px 6px 0;
}

.team-portrait-label {
    display: inline-block;
    margin-bottom: 10px;
    padding: 6px 11px;
    border-radius: 999px;
    background: rgba(20, 184, 166, 0.1);
    color: var(--primary);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.team-portrait-content h3 {
    margin: 0 0 10px;
    font-size: 22px;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.team-portrait-role {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 36px;
    padding: 8px 13px;
    border-radius: 999px;
    background: var(--primary-3);
    color: var(--primary);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.02em;
}

/* Member affiliation logos larger */
.team-affiliation-logos {
    margin-top: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}

.team-affiliation-logos-support {
    margin-top: 14px;
}

.member-aff-logo {
    display: block;
    width: auto;
    max-width: 140px;
    height: 72px;
    max-height: 72px;
    object-fit: contain;
    flex: 0 0 auto;
    filter: saturate(1) contrast(1.02);
}

.member-aff-logo-wide {
    max-width: 180px;
    height: 60px;
    max-height: 60px;
}

.team-subsection-heading {
    margin: 34px 0 18px;
    position: relative;
    z-index: 1;
}

.team-subsection-kicker {
    display: inline-block;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--muted);
}

.team-support-portrait-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    position: relative;
    z-index: 1;
}

.team-support-portrait-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 22px 18px 18px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(217, 233, 230, 0.98);
    box-shadow: var(--shadow-soft);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.team-support-portrait-frame {
    width: min(100%, 147px);
    padding: 8px;
    border-radius: 20px;
    background: linear-gradient(180deg, #ffffff 0%, #f5fbfa 100%);
    border: 1px solid var(--line-strong);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.88), 0 8px 20px rgba(9, 38, 46, 0.05);
    position: relative;
}

    .team-support-portrait-frame::before {
        content: "";
        position: absolute;
        inset: 6px;
        border-radius: 14px;
        border: 1px solid rgba(20, 184, 166, 0.14);
        pointer-events: none;
    }

.team-support-portrait-photo-shell {
    width: 100%;
    aspect-ratio: 4 / 5.1;
    overflow: hidden;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.12), rgba(15, 118, 110, 0.08));
    border: 1px solid rgba(189, 217, 212, 0.9);
}

.team-support-portrait-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.team-support-portrait-content {
    width: 100%;
    text-align: center;
    padding: 16px 4px 0;
}

    .team-support-portrait-content h3 {
        margin: 0 0 8px;
        font-size: 18px;
        line-height: 1.26;
        letter-spacing: -0.02em;
    }

.team-support-portrait-role {
    color: var(--muted);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.5;
}

/* Responsive */
@media (max-width: 1180px) {
    .brand-logo {
        width: 156px;
        max-height: 78px;
    }

    .brand-name {
        font-size: 28px;
    }
}

@media (max-width: 1080px) {
    h1 {
        font-size: 52px;
    }

    .hero-grid,
    .split-grid,
    .contact-grid,
    .feature-grid,
    .tech-pillars,
    .two-col-grid,
    .value-grid,
    .team-portrait-grid,
    .team-support-portrait-grid,
    .partner-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 760px) {
    .menu-toggle {
        display: inline-block;
    }

    .main-nav {
        display: none;
        position: absolute;
        top: 96px;
        left: 16px;
        right: 16px;
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        background: rgba(255, 255, 255, 0.96);
        border: 1px solid var(--line);
        border-radius: 18px;
        padding: 14px;
        box-shadow: var(--shadow);
    }

        .main-nav.open {
            display: flex;
        }

    .nav-shell {
        flex-wrap: wrap;
        padding: 14px 0;
        min-height: auto;
    }

    .brand {
        gap: 12px;
    }

    .brand-logo {
        width: 136px;
        max-height: 64px;
    }

    .brand-name {
        font-size: 24px;
    }

    .brand-tag {
        white-space: normal;
        font-size: 11px;
    }

    .lang-switch {
        margin-left: 0;
    }

    h1 {
        font-size: 40px;
    }

    h2 {
        font-size: 30px;
    }

    .hero-section,
    .section,
    .page-hero,
    .premium-page-hero {
        padding: 52px 0;
    }

    .cta-shell,
    .footer-shell {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-shell {
        align-items: center;
        text-align: center;
        padding: 16px 0;
    }

    .contact-email-large {
        font-size: 28px;
    }

    .team-group-header h3 {
        font-size: 24px;
    }

    .team-portrait-card,
    .team-support-portrait-card {
        padding-left: 16px;
        padding-right: 16px;
    }

    .team-portrait-frame {
        width: min(100%, 156px);
    }

    .team-support-portrait-frame {
        width: min(100%, 136px);
    }

    .team-portrait-content h3 {
        font-size: 21px;
    }

    .team-support-portrait-content h3 {
        font-size: 17px;
    }

    .trust-strip {
        padding: 22px;
    }

    .foundation-logo-row {
        gap: 18px;
    }

    .foundation-logo-hku {
        width: 150px;
    }

        .foundation-logo-hku img {
            width: 150px;
            max-width: 150px;
            max-height: 90px;
        }

    .foundation-logo-abic {
        width: 220px;
    }

        .foundation-logo-abic img {
            width: 220px;
            max-width: 220px;
            max-height: 70px;
        }

    .member-aff-logo {
        max-width: 100px;
        height: 52px;
        max-height: 52px;
    }

    .member-aff-logo-wide {
        max-width: 130px;
        height: 42px;
        max-height: 42px;
    }

    .partner-logo-wrap-eco {
        min-height: 118px;
        padding: 18px;
    }

    .partner-grid-ecosystem .partner-logo-wrap img {
        max-height: 70px;
    }
}
