.sponsorship-page {
    width: min(1120px, calc(100% - 32px));
    margin: 112px auto 72px;
    color: #182a3a;
    font-family: Poppins, sans-serif;
}

.sponsorship-page p {
    color: #000000;
    font-family: Poppins, sans-serif;
    font-size: 1rem;
    line-height: 1.8;
    text-align: left;
}

.sponsorship-hero {
    position: relative;
    overflow: hidden;
    padding: clamp(42px, 7vw, 86px) clamp(24px, 7vw, 88px);
    border-radius: 18px;
    background: linear-gradient(125deg, #102f48 0%, #165a73 52%, #2b8a83 100%);
    box-shadow: 0 20px 50px rgba(16, 47, 72, 0.22);
    color: #fff;
    isolation: isolate;
}

.sponsorship-hero::after {
    content: '';
    position: absolute;
    right: -110px;
    bottom: -150px;
    width: 380px;
    height: 380px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    box-shadow: 0 0 0 24px rgba(255, 255, 255, 0.06), 0 0 0 48px rgba(255, 255, 255, 0.04);
    z-index: -1;
}

.sponsorship-kicker {
    display: block;
    margin-bottom: 12px;
    color: #f6c86f;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    line-height: 1.4;
    text-transform: uppercase;
}

.sponsorship-hero h1,
.sponsorship-section h2,
.sponsorship-panel h2 {
    margin: 0;
    font-family: Anton, sans-serif;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 1.15;
}

.sponsorship-hero h1 {
    max-width: 650px;
    font-size: clamp(2.4rem, 5vw, 4.6rem);
}

.sponsorship-hero p {
    max-width: 680px;
    margin: 22px 0 0;
    color: rgba(255, 255, 255, 0.88);
    font-size: clamp(1rem, 1.8vw, 1.2rem);
}

.sponsorship-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.sponsorship-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 11px 20px;
    border: 1px solid transparent;
    border-radius: 6px;
    font-weight: 700;
    text-decoration: none;
    transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.sponsorship-button:hover {
    transform: translateY(-2px);
}

.sponsorship-button-primary {
    background: #f6c86f;
    color: #182a3a;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.15);
}

.sponsorship-button-light {
    border-color: rgba(255, 255, 255, 0.55);
    color: #fff;
}

.sponsorship-section {
    margin-top: 68px;
}

.sponsorship-section-heading {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 24px;
}

.sponsorship-number {
    color: #d57957;
    font-family: Anton, sans-serif;
    font-size: 2.2rem;
    line-height: 1;
}

.sponsorship-section h2,
.sponsorship-panel h2 {
    color: #182a3a;
    font-size: clamp(1.75rem, 3vw, 2.6rem);
}

.sponsorship-introduction > p {
    max-width: 820px;
    margin-left: 60px;
    font-size: 1.1rem;
}

.sponsorship-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.sponsorship-step {
    padding: 28px 24px;
    border-top: 4px solid #2b8a83;
    background: rgba(255, 255, 255, 0.86);
    box-shadow: 0 10px 28px rgba(16, 47, 72, 0.09);
}

.sponsorship-step-icon {
    display: grid;
    width: 46px;
    height: 46px;
    place-items: center;
    margin-bottom: 20px;
    border-radius: 50%;
    background: #e3f0ed;
    color: #16706f;
    font-size: 1.2rem;
}

.sponsorship-step h3 {
    margin: 0 0 9px;
    color: #182a3a;
    font-family: Anton, sans-serif;
    font-size: 1.55rem;
    font-weight: 400;
}

.sponsorship-step p {
    margin: 0;
    font-size: 0.94rem;
}

.sponsorship-columns {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 68px;
}

.sponsorship-panel {
    padding: 34px;
    border-radius: 12px;
}

.sponsorship-panel-warm {
    background: #fff1df;
}

.sponsorship-panel-blue {
    background: #e2f0f4;
}

.sponsorship-panel p {
    margin: 18px 0 24px;
}

.sponsorship-text-link {
    color: #155b6c;
    font-weight: 700;
    text-decoration: none;
}

.sponsorship-text-link span {
    display: inline-block;
    margin-left: 7px;
    transition: transform 180ms ease;
}

.sponsorship-text-link:hover span {
    transform: translateX(4px);
}

.sponsorship-quote {
    margin: 68px auto 0;
    padding: 40px 24px;
    border-top: 1px solid rgba(24, 42, 58, 0.2);
    text-align: center;
}

.sponsorship-quote i {
    color: #d57957;
    font-size: 1.35rem;
}

.sponsorship-quote p {
    margin: 12px auto 8px;
    color: #182a3a;
    font-family: Anton, sans-serif;
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    line-height: 1.25;
    text-align: center;
}

.sponsorship-quote span {
    color: #16706f;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.15em;
}

@media (max-width: 700px) {
    .sponsorship-page {
        width: min(100% - 22px, 560px);
        margin-top: 92px;
    }

    .sponsorship-hero {
        border-radius: 12px;
    }

    .sponsorship-hero h1 {
        font-size: 2.55rem;
    }

    .sponsorship-hero-actions,
    .sponsorship-button {
        width: 100%;
    }

    .sponsorship-section {
        margin-top: 48px;
    }

    .sponsorship-section-heading {
        gap: 12px;
    }

    .sponsorship-section h2,
    .sponsorship-panel h2 {
        font-size: 1.85rem;
    }

    .sponsorship-introduction > p {
        margin-left: 0;
    }

    .sponsorship-steps,
    .sponsorship-columns {
        grid-template-columns: 1fr;
    }

    .sponsorship-panel {
        padding: 28px 24px;
    }
}
