/* ── Sponsors — dark band + glass cards (matches about section) ── */
.new-sponsors {
    --sponsors-primary: #2d3764;
    --sponsors-accent: #ce8924;
    position: relative;
    background: #192666;
    overflow: hidden;
}

.new-sponsors__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(ellipse 70% 55% at 50% 42%, rgba(92, 118, 210, 0.35) 0%, transparent 62%),
        radial-gradient(ellipse 45% 40% at 15% 80%, rgba(206, 137, 36, 0.14) 0%, transparent 55%),
        radial-gradient(ellipse 45% 40% at 85% 20%, rgba(80, 110, 200, 0.18) 0%, transparent 50%);
}

.new-sponsors__inner {
    position: relative;
    z-index: 1;
    max-width: 960px;
    margin-inline: auto;
}

.new-sponsors__head {
    text-align: center;
    margin-bottom: clamp(1.25rem, 2.5vh, 1.75rem);
}

.new-sponsors__head .heading9 {
    display: flex;
    justify-content: center;
    margin-bottom: 0.65rem;
}

.new-sponsors__head .heading9 h5 {
    padding: 4px 10px;
}

.new-sponsors__title {
    color: #ce8924;
}

.new-sponsors__intro {
    margin: 0 auto;
    /* max-width: 36rem; */
    color: rgba(255, 255, 255, 0.82);
    font-family: var(--textFamily), 'Source Sans 3', sans-serif;
    font-size: 0.98rem;
    line-height: 1.65;
}

.new-sponsors__tiers {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.new-sponsors__tier-label {
    margin: 0 0 0.6rem;
    color: rgba(255, 255, 255, 0.65);
    font-family: var(--textFamily), 'Source Sans 3', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    line-height: 1.3;
}

.new-sponsors__list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 0.85rem;
}

.new-sponsors__list--solo {
    grid-template-columns: minmax(0, 1fr);
    max-width: 42rem;
    margin-inline: auto;
}

/* Glass morphism card */
.new-sponsors__card {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin: 0;
    padding: 1rem 1.1rem;
    border-radius: 16px;
    overflow: hidden;
    isolation: isolate;
    background: linear-gradient(
        155deg,
        rgba(90, 109, 158, 0.42) 0%,
        rgba(55, 68, 118, 0.52) 38%,
        rgba(35, 45, 88, 0.58) 100%
    );
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow:
        0 10px 32px rgba(8, 14, 48, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.22);
    backdrop-filter: blur(18px) saturate(1.35);
    -webkit-backdrop-filter: blur(18px) saturate(1.35);
}

.new-sponsors__card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    z-index: 0;
    background: linear-gradient(90deg, #2d3764, #ce8924, #f0c878, #ce8924, #2d3764);
    opacity: 0.85;
}

.new-sponsors__card::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    border-radius: inherit;
    background: linear-gradient(180deg, rgba(39, 51, 96, 0.5) 0%, transparent 42%, rgba(206, 137, 36, 0.1) 100%);
}

.new-sponsors__card > * {
    position: relative;
    z-index: 1;
}

.new-sponsors__list--solo .new-sponsors__card {
    flex-direction: row;
    align-items: center;
    gap: 1.1rem;
    padding: 1rem 1.15rem;
}

.new-sponsors__logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 4.5rem;
    padding: 0.55rem 0.75rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.35);
    box-shadow:
        0 4px 14px rgba(8, 14, 48, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.new-sponsors__list--solo .new-sponsors__logo {
    width: 6.5rem;
    height: 4.25rem;
}

.new-sponsors__logo img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}

.new-sponsors__body {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.35rem;
    min-width: 0;
}

.new-sponsors__tier-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.22rem 0.6rem;
    border-radius: 999px;
    background: rgba(206, 137, 36, 0.22);
    border: 1px solid rgba(240, 200, 120, 0.45);
    color: #f0c878;
    font-family: var(--textFamily), 'Source Sans 3', sans-serif;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    line-height: 1.3;
}

.new-sponsors__name {
    margin: 0;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.25;
}

.new-sponsors__list--solo .new-sponsors__name {
    font-size: 1.2rem;
}

.new-sponsors__desc-wrap {
    width: 100%;
}

.new-sponsors__desc {
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
    font-family: var(--textFamily), 'Source Sans 3', sans-serif;
    font-size: 0.84rem;
    line-height: 1.5;
}

.new-sponsors__desc.clamped {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.new-sponsors__list--solo .new-sponsors__desc.clamped {
    -webkit-line-clamp: 3;
}

.new-sponsors__desc.expanded {
    display: block;
    -webkit-line-clamp: unset;
    overflow: visible;
}

.new-sponsors__read-more {
    margin-top: 0.15rem;
    padding: 0;
    border: none;
    background: none;
    color: #f0c878;
    font-family: var(--textFamily), 'Source Sans 3', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    text-decoration: underline;
    cursor: pointer;
}

.new-sponsors__read-more:hover {
    color: #fff;
}

.new-sponsors__link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    margin-top: 0.15rem;
    color: #f0c878;
    font-family: var(--textFamily), 'Source Sans 3', sans-serif;
    font-size: 0.82rem;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s ease;
}

.new-sponsors__link:hover {
    color: #fff;
}

.new-sponsors__link i {
    font-size: 0.72rem;
}

.new-sponsors__footnote {
    margin: 1rem 0 0;
    text-align: center;
    color: rgba(255, 255, 255, 0.55);
    font-family: var(--textFamily), 'Source Sans 3', sans-serif;
    font-size: 0.82rem;
    font-style: italic;
    line-height: 1.45;
}

@media (max-width: 575.98px) {
    .new-sponsors__list--solo .new-sponsors__card {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
    }

    .new-sponsors__list--solo .new-sponsors__logo {
        width: 100%;
        height: 4rem;
    }

    .new-sponsors__list--solo .new-sponsors__body {
        align-items: center;
    }
}

@media (prefers-reduced-motion: reduce) {
    .new-sponsors__link {
        transition: none;
    }
}
