/**
 * ExpertDAY Screen CSS (screen-expert-day)
 * Mobile-first: Basis-Styles für kleine Viewports; größere Breakpoints per min-width.
 */

.expertday-page-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.expertday-header {
    text-align: center;
    padding: 40px 0 12px 0;
}

.expertday-badge {
    display: inline-block;
    background: var(--color-black);
    color: var(--color-white);
    padding: 6px 16px;
    border-radius: 20px;
    font-family: var(--font-family-primary);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.expertday-hero-cta {
    margin-top: 24px;
    text-align: center;
}

.expertday-subtitle {
    font-family: var(--font-family-primary);
    font-size: 1.05rem;
    color: var(--color-text-light);
    line-height: 1.6;
    margin: 0 auto 12px auto;
    font-weight: 500;
    max-width: 700px;
}

.expertday-video-card {
    margin: 20px 0 50px 0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow:
        0 25px 70px var(--color-shadow-light),
        0 10px 30px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.expertday-video-card:hover {
    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.15),
        0 15px 40px rgba(0, 0, 0, 0.08);
    transform: translateY(-3px);
}

.expertday-video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}

.expertday-video-iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.expertday-info-tiles-section {
    margin: 0 0 60px 0;
}

.expertday-location-tile-headline {
    white-space: normal;
    overflow: visible;
    text-overflow: clip;
    max-width: 100%;
}

.expertday-faq-section {
    margin: 50px 0;
}

.expertday-section-subtitle {
    font-family: var(--font-family-primary);
    font-size: 1.05rem;
    color: var(--color-text-light);
    line-height: 1.6;
    margin: 0 0 35px 0;
    text-align: center;
    font-weight: 500;
}

.expertday-faq-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.expertday-faq-item {
    background: linear-gradient(145deg, var(--color-white) 0%, var(--color-bg-light) 100%);
    padding: 30px 25px;
    border-radius: 16px;
    box-shadow:
        0 20px 60px var(--color-shadow-light),
        0 5px 20px rgba(0, 0, 0, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.expertday-faq-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.expertday-faq-item:hover::before {
    left: 100%;
}

.expertday-faq-item:hover {
    transform: translateY(-4px);
    box-shadow:
        0 25px 70px rgba(0, 0, 0, 0.12),
        0 10px 30px rgba(0, 0, 0, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.expertday-faq-answer {
    font-family: var(--font-family-primary);
    font-size: 1rem;
    color: var(--color-text-light);
    line-height: 1.7;
    margin: 0;
    font-weight: 500;
}

.expertday-cta-card {
    background: linear-gradient(145deg, var(--color-white) 0%, var(--color-bg-light) 100%);
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    margin: 50px 0 70px 0;
    box-shadow:
        0 20px 60px var(--color-shadow-light),
        0 5px 20px rgba(0, 0, 0, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.expertday-cta-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.expertday-cta-card:hover::before {
    left: 100%;
}

.expertday-cta-card:hover {
    transform: translateY(-4px);
    box-shadow:
        0 25px 70px rgba(0, 0, 0, 0.12),
        0 10px 30px rgba(0, 0, 0, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.expertday-cta-button {
    display: inline-block;
}

@media (min-width: 600px) {
    .expertday-page-container {
        max-width: 800px;
        padding: 0 50px;
    }

    .expertday-header {
        padding: 50px 0 14px 0;
    }

    .expertday-badge {
        font-size: 0.85rem;
        padding: 8px 20px;
        margin-bottom: 25px;
    }

    .expertday-subtitle {
        font-size: 1.2rem;
        margin: 0 auto 14px auto;
    }

    .expertday-hero-cta {
        margin-top: 32px;
    }

    .expertday-video-card {
        margin: 22px 0 60px 0;
        border-radius: 20px;
    }

    .expertday-faq-section {
        margin: 60px 0;
    }

    .expertday-section-subtitle {
        font-size: 1.25rem;
        margin-bottom: 50px;
    }

    .expertday-faq-list {
        gap: 30px;
    }

    .expertday-faq-item {
        padding: 35px 40px;
        border-radius: 20px;
    }

    .expertday-faq-answer {
        font-size: 1.15rem;
        line-height: 1.8;
    }

    .expertday-cta-card {
        padding: 50px 40px;
        margin: 60px 0 80px 0;
        border-radius: 20px;
    }
}

@media (min-width: 1024px) {
    .expertday-page-container {
        max-width: 900px;
        padding: 0 60px;
    }

    .expertday-header {
        padding: 60px 0 16px 0;
    }

    .expertday-subtitle {
        font-size: 1.3rem;
        margin: 0 auto 16px auto;
    }

    .expertday-video-card {
        margin: 24px 0 80px 0;
    }

    .expertday-faq-section {
        margin: 80px 0;
    }

    .expertday-faq-item {
        padding: 40px 50px;
    }

    .expertday-cta-card {
        padding: 70px 60px;
        margin: 80px 0 100px 0;
    }
}

@media (min-width: 1440px) {
    .expertday-page-container {
        max-width: 1000px;
        padding: 0 80px;
    }

    .expertday-subtitle {
        font-size: 1.4rem;
    }

    .expertday-video-card {
        margin: 28px 0 90px 0;
    }

    .expertday-faq-section {
        margin: 90px 0;
    }

    .expertday-section-subtitle {
        font-size: 1.3rem;
    }

    .expertday-faq-item {
        padding: 45px 55px;
    }

    .expertday-faq-answer {
        font-size: 1.2rem;
    }

    .expertday-cta-card {
        padding: 80px 70px;
        margin: 90px 0 110px 0;
    }
}

.schema-data-hidden {
    display: none;
}
