/* ========================= */
/* Sponsor Sections           */
/* ========================= */

.sponsor-section {
    padding: 1.5rem 2rem;
    color: white;
}

h2{
    margin-bottom: 10px;
}


.sponsor-quote {
    font-style: italic;
    font-size: 20px;
    margin-bottom: 45px;
    color: #ffdd00;
}

.sponsor-title{
    font-size: 3rem;
    text-align: center;
    margin-bottom: 3rem;
}

.sponsor-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Reverse layout modifier */
.sponsor-reverse {
    flex-direction: row-reverse;
}

.sponsor-image iframe {
    width: 100%;
}

.sponsor-text {
    flex: 1;
}

.sponsor-text h2 {
    font-size: 1.8rem;
    color: #ffdd00;
}

.sponsor-text p.blurb {
    font-size: 1rem;
    line-height: 1.6;
}

.sponsor-image {
    flex: 1;
    text-align: center;
}

.sponsor-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .sponsor-container {
        flex-direction: column;
        text-align: center;
    }
    
    .sponsor-title{
        font-size: 2rem;
    }

    .sponsor-container.sponsor-reverse {
        flex-direction: column;
    }

    .sponsor-image img {
        max-width: 90%;
    }

    .sponsor-text h1 {
        font-size: 1.8rem;
    }

    .sponsor-text h2 {
        font-size: 1.5rem;
    }

    .sponsor-text p.blurb {
        font-size: 0.95rem;
    }
}
