/* ================================================================
   SPONSORING
   ================================================================ */

/* ── Header ── */
.sponsor-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 3.5rem 0 1.5rem;
    position: relative;
}
.sponsor-header__title {
    color: #fff;
    font-weight: 800;
    font-size: 2.4rem;
    margin-bottom: 0.25rem;
}
.sponsor-header__subtitle {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.05rem;
    margin-bottom: 0;
}

/* ── Content ── */
.sponsor-content {
    padding: 2.5rem 0;
}
.sponsor-text {
    font-size: 1rem;
    line-height: 1.75;
    max-width: 720px;
}

/* ── Sponsors Grid ── */
.sponsors-section {
    padding: 2rem 0 3rem;
    background: #fff;
}
.section-title {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}
.section-title i {
    color: var(--highlight-color);
    margin-right: 0.5rem;
}
.sponsor-card {
    background: var(--bg-light);
    border: 1px solid #e9ecef;
    border-radius: 10px;
    padding: 1.5rem;
    text-align: center;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100px;
    transition: all 0.2s ease;
    text-decoration: none;
}
.sponsor-card:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}
.sponsor-card__name {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--text-dark);
}
.sponsor-card__logo {
    max-width: 100%;
    max-height: 60px;
    object-fit: contain;
}

/* ── Contact CTA ── */
.contact-cta {
    padding: 2.5rem 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    text-align: center;
}
.contact-cta h3 {
    color: #fff;
    font-weight: 800;
    margin-bottom: 0.5rem;
}
.contact-cta p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.25rem;
}
.contact-cta a.email-link {
    color: var(--highlight-color);
    font-weight: 700;
    font-size: 1.2rem;
    text-decoration: none;
}
.contact-cta a.email-link:hover {
    color: #fff;
}

/* ── Responsive ── */
@media (max-width: 767px) {
    .sponsor-header__title {
        font-size: 1.8rem;
    }
}
