/* How-To Page Specific Styles */

.hero-content-single {
    display: grid;
    grid-template-columns: 1fr 450px;
    gap: 60px;
    align-items: center;
}

.hero-image-howto {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 45% 55% 52% 48% / 38% 42% 58% 62%;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

.hero-text-howto {
    text-align: left;
}

.hero-text-howto h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    color: white;
}

.hero-text-howto .hero-description {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.7;
}

/* Host Selection Section */
.host-selection {
    padding: 80px 0;
    background: white;
}

.host-selection h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.section-description {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 400;
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Affiliate Grid */
.affiliate-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 24px;
    margin-bottom: 60px;
}

.affiliate-card {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 24px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.affiliate-card:hover {
    border-color: var(--primary-blue);
    box-shadow: 0 4px 12px rgba(53, 104, 221, 0.15);
    transform: translateY(-2px);
}

.affiliate-card.selected {
    border-color: var(--primary-blue);
    background: #eff6ff;
    box-shadow: 0 4px 12px rgba(53, 104, 221, 0.2);
}

.affiliate-card img {
    width: 100%;
    height: 60px;
    object-fit: contain;
    margin-bottom: 12px;
}

.affiliate-card .affiliate-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
}

/* Videos Section */
.videos-section {
    margin-top: 60px;
    padding: 40px;
    background: #f9fafb;
    border-radius: 12px;
}

.video-block {
    margin-bottom: 40px;
}

.video-block:last-child {
    margin-bottom: 0;
}

.video-block h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 24px;
    text-align: center;
}

.video-container {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    aspect-ratio: 16 / 9;
    background: #000;
    border-radius: 8px;
    overflow: hidden;
}

.video-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero-content-single {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .hero-text-howto {
        text-align: center;
    }

    .hero-text-howto h1 {
        font-size: 36px;
    }

    .hero-image-howto {
        width: 90%;
        max-width: 400px;
        margin: 0 auto;
    }

    .host-selection {
        padding: 60px 0;
    }

    .host-selection h2 {
        font-size: 28px;
    }

    .section-description {
        font-size: 16px;
        padding: 0 20px;
    }

    .affiliate-grid {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
        gap: 16px;
    }

    .affiliate-card {
        padding: 16px;
    }

    .affiliate-card img {
        height: 50px;
    }

    .videos-section {
        padding: 24px 16px;
    }

    .video-block h2 {
        font-size: 24px;
    }
}
