/* Sponsorship Page Styles */

.sponsorship-section {
    background: var(--bg-secondary);
}

.sponsorship-intro {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
}

.sponsorship-intro h2 {
    font-size: 2rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.sponsorship-intro p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1rem;
}

/* Platform Overview */
.platform-overview {
    background: white;
    border-radius: 16px;
    padding: 2.5rem;
    margin-bottom: 3rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.platform-overview h3 {
    font-size: 1.75rem;
    color: var(--text-primary);
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.overview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.overview-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.overview-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.75rem;
    flex-shrink: 0;
}

.overview-content {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.overview-content strong {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
}

.overview-content span {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}

.content-verticals {
    margin-top: 2.5rem;
}

.content-verticals h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.content-verticals ul {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 0.75rem;
    list-style: none;
    padding: 0;
}

.content-verticals ul li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.content-verticals ul li i {
    color: var(--primary-color);
    font-size: 1.125rem;
    flex-shrink: 0;
}

/* Audience Profile */
.audience-profile {
    background: white;
    border-radius: 16px;
    padding: 2.5rem;
    margin-bottom: 3rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.audience-profile h3 {
    font-size: 1.75rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.audience-profile > p {
    font-size: 1.125rem;
    color: #555;
    margin-bottom: 2rem;
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
}

.audience-card {
    background: linear-gradient(135deg, #fafafa 0%, #f0f0f0 100%);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
}

.audience-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.audience-card h4 {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.audience-card p {
    font-size: 0.9375rem;
    color: #666;
    line-height: 1.6;
}

/* Partnership Types */
.partnership-types {
    margin-bottom: 3rem;
}

.partnership-types h3 {
    font-size: 1.75rem;
    color: var(--text-primary);
    margin-bottom: 2rem;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.partnership-packages {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.package-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.package-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.package-header {
    padding: 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.package-icon {
    width: 64px;
    height: 64px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    flex-shrink: 0;
}

.package-title h4 {
    font-size: 1.375rem;
    margin-bottom: 0.25rem;
    color: var(--text-primary);
}

.package-label {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: var(--primary-color);
    color: white;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.package-body {
    padding: 2rem;
}

.package-description {
    font-size: 1.0625rem;
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.package-body h5 {
    font-size: 1.125rem;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.package-body h5:first-of-type {
    margin-top: 0;
}

.package-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.package-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.package-features li:last-child {
    border-bottom: none;
}

.package-features li i {
    color: var(--primary-color);
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.package-disclaimer {
    margin-top: 1.5rem;
    padding: 1rem;
    background: #fff8e6;
    border-left: 4px solid #ffc107;
    border-radius: 4px;
    font-size: 0.9375rem;
    line-height: 1.6;
}

.package-disclaimer strong {
    color: #856404;
}

.package-footer {
    padding: 1.5rem 2rem;
    background: #f8f9fa;
    text-align: center;
}

/* Editorial Independence */
.editorial-independence {
    margin-bottom: 3rem;
}

.independence-card {
    background: linear-gradient(135deg, #1f6f5c 0%, #12463a 100%);
    border-radius: 16px;
    padding: 2.5rem;
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    color: white;
}

.independence-icon {
    width: 80px;
    height: 80px;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    flex-shrink: 0;
}

.independence-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: white;
}

.independence-content p {
    font-size: 1.0625rem;
    line-height: 1.8;
    opacity: 0.95;
    margin-bottom: 1rem;
}

.independence-content p:last-child {
    margin-bottom: 0;
}

/* Not Accepted */
.not-accepted {
    background: #fff8f8;
    border: 2px solid #ffe0e0;
    border-radius: 16px;
    padding: 2.5rem;
    margin-bottom: 3rem;
}

.not-accepted h3 {
    font-size: 1.5rem;
    color: #d32f2f;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.not-accepted > p {
    font-size: 1.0625rem;
    color: #555;
    margin-bottom: 1.5rem;
}

.not-accepted-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1rem;
}

.not-accepted-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem;
    background: white;
    border-radius: 8px;
    border-left: 4px solid #d32f2f;
}

.not-accepted-item i {
    color: #d32f2f;
    font-size: 1.25rem;
    margin-top: 0.125rem;
    flex-shrink: 0;
}

.not-accepted-item span {
    font-size: 0.9375rem;
    color: #555;
    line-height: 1.6;
}

/* AdSense Readiness */
.adsense-readiness {
    background: white;
    border-radius: 16px;
    padding: 2.5rem;
    margin-bottom: 3rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.adsense-readiness h3 {
    font-size: 1.75rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.adsense-readiness > p {
    font-size: 1.0625rem;
    color: #555;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.readiness-checklist {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.checklist-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1.25rem;
    background: #f0fdf4;
    border-radius: 8px;
    border-left: 4px solid #16a34a;
}

.checklist-item i {
    color: #16a34a;
    font-size: 1.125rem;
    flex-shrink: 0;
}

.checklist-item span {
    font-size: 0.9375rem;
    color: #555;
    font-weight: 500;
}

.readiness-note {
    background: #e0f2fe;
    border-left: 4px solid #0284c7;
    padding: 1rem 1.5rem;
    border-radius: 4px;
    font-size: 0.9375rem;
    line-height: 1.6;
}

/* Contact CTA */
.contact-cta {
    margin-top: 3rem;
}

.cta-card {
    background: linear-gradient(135deg, #f2a541 0%, #d9791c 100%);
    border-radius: 16px;
    padding: 3rem;
    text-align: center;
    color: white;
    box-shadow: 0 8px 24px rgba(242, 165, 65, 0.3);
}

.cta-card i {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    opacity: 0.95;
}

.cta-card h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: white;
}

.cta-card > p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-card .btn {
    margin-bottom: 1rem;
}

.cta-note {
    font-size: 0.9375rem;
    opacity: 0.9;
    margin-top: 1rem;
}

/* Responsive */
@media (max-width: 768px) {
    .sponsorship-intro h2 {
        font-size: 1.5rem;
    }

    .platform-overview,
    .audience-profile,
    .adsense-readiness {
        padding: 1.5rem;
    }

    .overview-grid,
    .audience-grid,
    .partnership-packages {
        grid-template-columns: 1fr;
    }

    .independence-card {
        flex-direction: column;
        padding: 2rem;
    }

    .independence-icon {
        width: 64px;
        height: 64px;
        font-size: 2rem;
    }

    .package-header {
        flex-direction: column;
        align-items: flex-start;
        padding: 1.5rem;
    }

    .package-body {
        padding: 1.5rem;
    }

    .cta-card {
        padding: 2rem 1.5rem;
    }

    .cta-card h3 {
        font-size: 1.5rem;
    }
}
