.ic3-partners-section,
.ic3-social-footer {
    box-sizing: border-box;
}

.ic3-partners-section *,
.ic3-social-footer * {
    box-sizing: border-box;
}

.ic3-partners-section {
    width: 100%;
    padding: clamp(42px, 6vw, 82px) 18px;
    background:
        radial-gradient(circle at top left, rgba(45, 125, 255, 0.10), transparent 32%),
        linear-gradient(180deg, #ffffff 0%, #f7fafc 100%);
    border-top: 1px solid rgba(10, 31, 68, 0.08);
    border-bottom: 1px solid rgba(10, 31, 68, 0.08);
    color: #0a1f44;
}

.ic3-partners-section--compact {
    padding: 28px 16px;
}

.ic3-partners-inner {
    width: min(1120px, 100%);
    margin: 0 auto;
    text-align: center;
}

.ic3-section-kicker {
    margin: 0 0 10px;
    font-size: 12px;
    line-height: 1.35;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: #2b6f75;
    font-weight: 700;
}

.ic3-partners-title {
    margin: 0;
    color: #0a1f44;
    font-size: clamp(26px, 3vw, 42px);
    line-height: 1.12;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.ic3-partners-subtitle {
    max-width: 780px;
    margin: 16px auto 0;
    color: #53627a;
    font-size: clamp(15px, 1.5vw, 18px);
    line-height: 1.75;
}

.ic3-partners-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(16px, 2.2vw, 28px);
    align-items: stretch;
    margin-top: clamp(28px, 4vw, 46px);
}

.ic3-partner-card {
    min-height: 200px;
    display: flex;
    align-items: stretch;
    justify-content: center;
    padding: clamp(18px, 2.2vw, 28px);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(10, 31, 68, 0.10);
    box-shadow: 0 18px 42px rgba(10, 31, 68, 0.08);
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.ic3-partner-card:hover,
.ic3-partner-card:focus-within {
    transform: translateY(-4px);
    border-color: rgba(43, 111, 117, 0.28);
    box-shadow: 0 22px 50px rgba(10, 31, 68, 0.13);
}

.ic3-partner-link {
    width: 100%;
    min-height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    text-decoration: none;
}

.ic3-partner-media {
    width: 100%;
    min-height: 116px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ic3-partner-card img {
    display: block;
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 126px;
    object-fit: contain;
    filter: saturate(.98) contrast(1.02);
}

.ic3-partner-card--abc img {
    max-width: 320px;
    max-height: 120px;
}

.ic3-partner-card--cafs img {
    max-width: 170px;
    max-height: 140px;
}

.ic3-partner-card--wec img {
    max-width: 190px;
    max-height: 118px;
}

.ic3-partner-name {
    display: block;
    color: #12325d;
    font-size: 14px;
    line-height: 1.45;
    font-weight: 700;
    text-align: center;
}

.ic3-social-footer {
    width: 100%;
    padding: 20px 18px;
    background: #071b3a;
    color: #ffffff;
    border-top: 1px solid rgba(255,255,255,.10);
}

.ic3-social-inner {
    width: min(1120px, 100%);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.ic3-social-label {
    font-size: 15px;
    line-height: 1.4;
    font-weight: 700;
    color: rgba(255,255,255,.92);
}

.ic3-social-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    justify-content: flex-end;
}

.ic3-social-link {
    width: 46px;
    height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    color: #ffffff;
    background: rgba(255,255,255,.10);
    border: 1px solid rgba(255,255,255,.16);
    transition: transform .18s ease, background-color .18s ease, border-color .18s ease, opacity .18s ease;
}

.ic3-social-link:hover,
.ic3-social-link:focus-visible {
    transform: translateY(-2px);
    background: rgba(255,255,255,.18);
    border-color: rgba(255,255,255,.32);
    color: #ffffff;
    outline: none;
}

.ic3-social-link--disabled {
    opacity: .55;
    cursor: default;
}

.ic3-social-link--disabled:hover,
.ic3-social-link--disabled:focus-visible {
    transform: none;
    background: rgba(255,255,255,.10);
    border-color: rgba(255,255,255,.16);
}

.ic3-social-link svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    word-wrap: normal !important;
}

@media (max-width: 960px) {
    .ic3-partners-grid {
        grid-template-columns: 1fr;
        max-width: 620px;
        margin-left: auto;
        margin-right: auto;
    }

    .ic3-partner-card {
        min-height: 184px;
    }

    .ic3-social-inner {
        flex-direction: column;
        text-align: center;
        justify-content: center;
    }

    .ic3-social-nav {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .ic3-partners-section {
        padding-left: 14px;
        padding-right: 14px;
    }

    .ic3-partner-card {
        border-radius: 18px;
        padding: 20px;
        min-height: 172px;
    }

    .ic3-partner-media {
        min-height: 96px;
    }

    .ic3-partner-card img {
        max-height: 108px;
    }

    .ic3-social-link {
        width: 44px;
        height: 44px;
    }
}
