.bca-sponsors-section,
.bca-sponsors-section * {
    box-sizing: border-box;
}

.bca-sponsors-section {
    width: 100%;
    background: transparent;
    font-family: inherit;
}

.bca-sponsors-inner {
    width: 100%;
    margin: 0 auto;
}

.bca-sponsors-header {
    text-align: center;
    max-width: 820px;
    margin: 0 auto 26px auto;
}

.bca-sponsors-eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    font-size: 15px;
    line-height: 1.2;
    font-weight: 800;
    color: #008b76;
    margin-bottom: 8px;
}

.bca-sponsors-eyebrow:before {
    content: "";
    width: 11px;
    height: 11px;
    border-radius: 999px;
    box-shadow: 0 0 0 5px rgba(0,139,118,.12);
}

.bca-sponsors-heading {
    margin: 0;
    color: #00472f;
    font-size: clamp(34px, 4.3vw, 56px);
    line-height: .98;
    letter-spacing: -0.04em;
    font-weight: 900;
}

.bca-sponsors-intro {
    margin: 14px auto 0 auto;
    max-width: 760px;
    color: #1e2735;
    font-size: 18px;
    line-height: 1.45;
}

.bca-sponsors-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    width: 100%;
}

.bca-sponsor-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-width: 0;
    min-height: 245px;
    padding: 28px 24px;
    border: 1px solid rgba(0, 71, 47, .16);
    border-radius: 22px;
    box-shadow: 0 18px 42px rgba(0, 71, 47, .08);
    text-decoration: none !important;
    color: inherit;
    background: linear-gradient(135deg, rgba(236,250,246,.88), rgba(255,251,226,.75));
    position: relative;
    overflow: hidden;
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.bca-sponsor-card:before {
    content: "";
    position: absolute;
    inset: -40% auto auto -28%;
    width: 190px;
    height: 190px;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(0,139,118,.13), rgba(0,139,118,0) 68%);
    pointer-events: none;
}

.bca-sponsor-card:hover {
    transform: translateY(-3px);
    border-color: rgba(0, 139, 118, .35);
    box-shadow: 0 24px 52px rgba(0, 71, 47, .13);
}

.bca-sponsor-featured {
    border-width: 2px;
    border-color: rgba(0,139,118,.38);
}

.bca-sponsor-logo-wrap {
    width: 100%;
    height: 96px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.bca-sponsor-logo {
    display: block;
    max-width: 220px;
    max-height: 92px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: none;
}

.bca-sponsor-logo-placeholder {
    width: 152px;
    height: 78px;
    border: 2px dashed #008b76;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #008b76;
    background: rgba(255,255,255,.62);
}

.bca-sponsor-content {
    position: relative;
    z-index: 1;
}

.bca-sponsor-tier {
    font-size: 13px;
    line-height: 1.2;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #008b76;
    margin-bottom: 7px;
}

.bca-sponsor-name {
    margin: 0;
    color: #00472f;
    font-size: 24px;
    line-height: 1.08;
    letter-spacing: -0.025em;
    font-weight: 900;
}

.bca-sponsor-description {
    margin: 10px auto 0 auto;
    color: #1e2735;
    font-size: 15px;
    line-height: 1.42;
    max-width: 310px;
}

.bca-sponsors-cta {
    margin-top: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    padding: 24px 28px;
    border: 1px solid rgba(0, 71, 47, .16);
    border-radius: 22px;
    box-shadow: 0 18px 42px rgba(0, 71, 47, .08);
    background: linear-gradient(135deg, rgba(255,255,255,.86), rgba(236,250,246,.82));
}

.bca-sponsors-cta-title {
    margin: 0;
    color: #00472f;
    font-size: 26px;
    line-height: 1.08;
    font-weight: 900;
    letter-spacing: -0.03em;
}

.bca-sponsors-cta-copy {
    margin: 7px 0 0 0;
    color: #1e2735;
    font-size: 16px;
    line-height: 1.4;
}

.bca-sponsors-cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    min-height: 52px;
    padding: 15px 24px;
    border-radius: 12px;
    background: #008b76;
    color: #fff !important;
    font-size: 17px;
    line-height: 1;
    font-weight: 900;
    text-decoration: none !important;
    box-shadow: 0 12px 26px rgba(0,139,118,.22);
}

.bca-sponsors-cta-button:hover {
    filter: brightness(.96);
}

@media (max-width: 1024px) {
    .bca-sponsors-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .bca-sponsors-section {
        padding-left: 16px !important;
        padding-right: 16px !important;
    }

    .bca-sponsors-header {
        text-align: left;
        margin-bottom: 20px;
    }

    .bca-sponsors-eyebrow {
        justify-content: flex-start;
        font-size: 14px;
    }

    .bca-sponsors-heading {
        font-size: 36px;
        line-height: 1.02;
    }

    .bca-sponsors-intro {
        font-size: 16px;
    }

    .bca-sponsors-grid {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 16px;
    }

    .bca-sponsor-card {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        min-height: 0;
        padding: 24px 20px;
        border-radius: 20px;
    }

    .bca-sponsor-logo-wrap {
        height: 82px;
        margin-bottom: 16px;
    }

    .bca-sponsor-logo {
        max-width: 190px;
        max-height: 78px;
    }

    .bca-sponsors-cta {
        flex-direction: column;
        align-items: stretch;
        padding: 22px 20px;
    }

    .bca-sponsors-cta-title {
        font-size: 24px;
    }

    .bca-sponsors-cta-copy {
        font-size: 15px;
    }

    .bca-sponsors-cta-button {
        width: 100%;
    }
}
