/* Minimalist Sponsors Section */
.sponsors-section {
    background: #FAFBFC;
    padding: 32px 2rem;
    margin-top: 40px;
    position: relative;
    border-top: 1px solid #E5E7EB;
}

.sponsors-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.sponsors-header {
    text-align: center;
    margin-bottom: 20px;
}

.sponsors-title {
    font-size: 20px;
    font-weight: 600;
    color: #1F2937;
    margin-bottom: 6px;
    letter-spacing: -0.3px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.sponsors-icon {
    font-size: 20px;
}

.sponsors-subtitle {
    font-size: 12px;
    color: #9CA3AF;
    font-weight: 500;
}

.sponsors-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
}

.sponsor-placeholder {
    background: #FFFFFF;
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    padding: 20px 32px;
    text-align: center;
    transition: all 0.3s ease;
    max-width: 400px;
    width: 100%;
}

.sponsor-placeholder:hover {
    border-color: #D1D5DB;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.sponsor-empty-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #9CA3AF;
}

.sponsor-empty-state svg {
    width: 32px;
    height: 32px;
    color: #D1D5DB;
    opacity: 0.5;
}

.sponsor-empty-text {
    font-size: 12px;
    font-weight: 500;
    color: #9CA3AF;
}

/* Sponsor Item Styles (for future use) */
.sponsor-item {
    background: #FFFFFF;
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    padding: 16px 24px;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 80px;
}

.sponsor-item:hover {
    border-color: #D1D5DB;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.sponsor-logo {
    max-width: 240px;
    max-height: 100px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s ease;
}

.sponsor-item:hover .sponsor-logo {
    filter: grayscale(0%);
    opacity: 1;
}

.sponsor-name {
    margin-top: 12px;
    font-size: 14px;
    font-weight: 600;
    color: #6B7280;
}

/* Responsive Design */
@media (max-width: 768px) {
    .sponsors-section {
        padding: 28px 1rem;
        margin-top: 32px;
    }

    .sponsors-header {
        margin-bottom: 16px;
    }

    .sponsors-title {
        font-size: 18px;
    }

    .sponsors-subtitle {
        font-size: 11px;
    }

    .sponsor-placeholder {
        padding: 16px 24px;
    }
}

@media (max-width: 480px) {
    .sponsors-section {
        padding: 24px 1rem;
        margin-top: 28px;
    }

    .sponsors-title {
        font-size: 17px;
    }

    .sponsor-placeholder {
        padding: 14px 20px;
    }

    .sponsor-empty-state svg {
        width: 28px;
        height: 28px;
    }

    .sponsor-empty-text {
        font-size: 11px;
    }
}

/* ============================================
   DARK THEME - SPONSORS STYLES
   ============================================ */

html[data-theme="dark"] .sponsors-section,
html.dark-theme .sponsors-section {
    background: #1a1a1a;
    border-top-color: #333333;
}

html[data-theme="dark"] .sponsors-title,
html.dark-theme .sponsors-title {
    color: #f5f5f5;
}

html[data-theme="dark"] .sponsors-subtitle,
html.dark-theme .sponsors-subtitle {
    color: #888888;
}

html[data-theme="dark"] .sponsor-placeholder,
html.dark-theme .sponsor-placeholder {
    background: #252525;
    border-color: #404040;
}

html[data-theme="dark"] .sponsor-placeholder:hover,
html.dark-theme .sponsor-placeholder:hover {
    border-color: #60a5fa;
    box-shadow: 0 4px 12px rgba(96, 165, 250, 0.15);
}

html[data-theme="dark"] .sponsor-empty-state,
html.dark-theme .sponsor-empty-state {
    color: #888888;
}

html[data-theme="dark"] .sponsor-empty-state svg,
html.dark-theme .sponsor-empty-state svg {
    color: #555555;
}

html[data-theme="dark"] .sponsor-empty-text,
html.dark-theme .sponsor-empty-text {
    color: #888888;
}

html[data-theme="dark"] .sponsor-item,
html.dark-theme .sponsor-item {
    background: #252525;
    border-color: #404040;
}

html[data-theme="dark"] .sponsor-item:hover,
html.dark-theme .sponsor-item:hover {
    border-color: #60a5fa;
    box-shadow: 0 4px 12px rgba(96, 165, 250, 0.15);
}

html[data-theme="dark"] .sponsor-name,
html.dark-theme .sponsor-name {
    color: #b0b0b0;
}