/**
 * Flavor Starter - Erweiterte Sections Styles
 * 
 * @package Flavor_Starter
 * @version 2.0.0
 */

/* ==========================================================================
   SECTION BASE - Höhen Support
   ========================================================================== */
.fl-section {
    display: flex;
    flex-direction: column;
    position: relative;
}

.fl-section > .fl-container {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.fl-section__inner {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* ============================================
   FESTE HÖHE - Alles muss innerhalb bleiben!
   ============================================ */
.fl-section--fixed-height {
    overflow: hidden !important;
}

.fl-section--fixed-height > .fl-container {
    height: 100% !important;
    max-height: 100% !important;
}

.fl-section--fixed-height .fl-section__inner {
    height: 100% !important;
    max-height: 100% !important;
    overflow: hidden;
}

.fl-section--fixed-height .fl-hero {
    height: 100% !important;
    max-height: 100% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 1rem 0 !important;
}

.fl-section--fixed-height .fl-hero > .fl-grid {
    width: 100%;
    height: auto;
    max-height: 100%;
}

.fl-section--fixed-height .fl-hero__content {
    max-height: 100%;
}

/* Vertikale Ausrichtung bei fester Höhe */
.fl-section--fixed-height.fl-section--valign-top .fl-hero {
    align-items: flex-start !important;
    padding-top: 2rem !important;
}

.fl-section--fixed-height.fl-section--valign-bottom .fl-hero {
    align-items: flex-end !important;
    padding-bottom: 2rem !important;
}

/* Vertikale Ausrichtung (normal) */
.fl-section--valign-top .fl-section__inner {
    justify-content: flex-start;
}

.fl-section--valign-center .fl-section__inner {
    justify-content: center;
}

.fl-section--valign-bottom .fl-section__inner {
    justify-content: flex-end;
}

/* ==========================================================================
   HERO - Höhen & Ausrichtung
   ========================================================================== */
.fl-hero {
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
    width: 100%;
}

/* Hero Content - Volle Breite */
.fl-hero__content {
    width: 100%;
}

/* Höhen-Varianten */
.fl-hero--height-auto {
    min-height: auto;
    padding: 4rem 0;
}

.fl-hero--height-small {
    min-height: 300px;
    padding: 2rem 0;
}

.fl-hero--height-medium {
    min-height: 450px;
}

.fl-hero--height-large {
    min-height: 600px;
}

.fl-hero--height-xlarge {
    min-height: 80vh;
}

.fl-hero--height-fullscreen {
    min-height: 100vh;
}

/* Text-Ausrichtung */
.fl-hero--align-left .fl-hero__content {
    text-align: left;
}

.fl-hero--align-left .fl-hero__buttons {
    justify-content: flex-start;
}

.fl-hero--align-center .fl-hero__content {
    text-align: center;
}

.fl-hero--align-center .fl-hero__buttons {
    justify-content: center;
}

.fl-hero--align-right .fl-hero__content {
    text-align: right;
}

.fl-hero--align-right .fl-hero__buttons {
    justify-content: flex-end;
}

/* Helper-Klassen */
.fl-text-left { text-align: left; }
.fl-text-center { text-align: center; }
.fl-text-right { text-align: right; }

/* Hero Buttons Flex */
.fl-hero__buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1.5rem;
}

/* Responsive Hero */
@media (max-width: 768px) {
    .fl-hero--height-small {
        min-height: 200px;
    }
    
    .fl-hero--height-medium {
        min-height: 300px;
    }
    
    .fl-hero--height-large {
        min-height: 400px;
    }
    
    .fl-hero--height-xlarge {
        min-height: 60vh;
    }
    
    .fl-hero__buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .fl-hero--align-left .fl-hero__buttons {
        align-items: flex-start;
    }
    
    .fl-hero--align-right .fl-hero__buttons {
        align-items: flex-end;
    }
}

/* ==========================================================================
   PARTNER LOGOS - object-fit: contain
   ========================================================================== */
.fl-grid--5 .fl-card__image,
.fl-grid--4 .fl-card__image,
.fl-section--cards .fl-card__image {
    aspect-ratio: 1/1;
    background: #fff;
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fl-grid--5 .fl-card__image img,
.fl-grid--4 .fl-card__image img,
.fl-section--cards .fl-card__image img {
    object-fit: contain !important;
    width: auto !important;
    height: auto !important;
    max-width: 100%;
    max-height: 100%;
    transform: none !important;
}

.fl-grid--5 .fl-card:hover .fl-card__image img,
.fl-grid--4 .fl-card:hover .fl-card__image img {
    transform: none !important;
}

/* ==========================================================================
   CTA ZENTRIERUNG
   ========================================================================== */
.fl-cta {
    text-align: center;
}

.fl-cta__title {
    text-align: center;
}

.fl-cta__text {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.fl-cta__buttons {
    display: flex !important;
    flex-wrap: wrap;
    justify-content: center !important;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
    width: 100%;
}

/* ==========================================================================
   LOGO-ONLY CARDS (Perfekt zentriert)
   ========================================================================== */
.fl-card--logo-only {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 180px;
}

.fl-card--logo-only .fl-card__image {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 20px;
    border-radius: inherit;
}

.fl-card--logo-only .fl-card__image img {
    object-fit: contain;
    max-width: 85%;
    max-height: 120px;
    width: auto;
    height: auto;
}

/* Verlinkte Logo-Cards */
a.fl-card--linked {
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

a.fl-card--linked:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

a.fl-card--linked:hover .fl-card__image img {
    opacity: 0.85;
}

/* ==========================================================================
   HINTERGRUNDBILD & OVERLAY
   ========================================================================== */

/* Section mit Hintergrundbild */
.fl-section--has-bg-image {
    position: relative;
    background-size: cover !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
}

/* WICHTIG: Alle Hintergrundfarben bei Bild entfernen */
.fl-section--has-bg-image,
.fl-section--has-bg-image.fl-section--bg-primary,
.fl-section--has-bg-image.fl-section--bg-dark,
.fl-section--has-bg-image.fl-section--bg-light,
.fl-section--has-bg-image.fl-section--bg-white,
section.fl-section--has-bg-image {
    background-color: transparent !important;
}

/* Hero-Content Hintergrund auch transparent bei Hintergrundbild */
.fl-section--has-bg-image .fl-hero__content {
    background-color: transparent !important;
    background: transparent !important;
}

/* Fixiertes Hintergrundbild (Parallax) */
.fl-section--bg-fixed {
    background-attachment: fixed !important;
}

/* Transparenter Hintergrund */
.fl-section--bg-transparent {
    background-color: transparent !important;
}

.fl-section--bg-transparent .fl-hero__content {
    background: transparent !important;
}

/* Bei Mobile kein fixed (Performance) */
@media (max-width: 767px) {
    .fl-section--bg-fixed {
        background-attachment: scroll;
    }
}

/* Overlay Layer */
.fl-section__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    pointer-events: none;
}

/* Content über Overlay */
.fl-section--has-bg-image .fl-container {
    position: relative;
    z-index: 2;
}

/* Overlay Varianten */
.fl-section--overlay-light .fl-section__overlay {
    background: rgba(255, 255, 255, 0.3);
}

.fl-section--overlay-medium .fl-section__overlay {
    background: rgba(0, 0, 0, 0.4);
}

.fl-section--overlay-dark .fl-section__overlay {
    background: rgba(0, 0, 0, 0.6);
}

.fl-section--overlay-darker .fl-section__overlay {
    background: rgba(0, 0, 0, 0.8);
}

.fl-section--overlay-primary .fl-section__overlay {
    background: rgba(var(--fl-primary-rgb, 26, 54, 93), 0.5);
}

.fl-section--overlay-gradient .fl-section__overlay {
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0) 100%);
}

/* Text auf dunklem Overlay weiß */
.fl-section--overlay-medium,
.fl-section--overlay-dark,
.fl-section--overlay-darker,
.fl-section--overlay-gradient {
    color: #ffffff;
}

.fl-section--overlay-medium h1,
.fl-section--overlay-medium h2,
.fl-section--overlay-medium h3,
.fl-section--overlay-dark h1,
.fl-section--overlay-dark h2,
.fl-section--overlay-dark h3,
.fl-section--overlay-darker h1,
.fl-section--overlay-darker h2,
.fl-section--overlay-darker h3,
.fl-section--overlay-gradient h1,
.fl-section--overlay-gradient h2,
.fl-section--overlay-gradient h3 {
    color: #ffffff;
}

.fl-section--overlay-medium p,
.fl-section--overlay-dark p,
.fl-section--overlay-darker p,
.fl-section--overlay-gradient p {
    color: rgba(255, 255, 255, 0.9);
}

/* ==========================================================================
   VERTIKALE AUSRICHTUNG (für Fullscreen/Hero)
   ========================================================================== */
.fl-section--valign-center {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.fl-section--valign-center .fl-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
}

.fl-section--valign-top {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.fl-section--valign-bottom {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.fl-section--valign-bottom .fl-container {
    margin-top: auto;
}

/* Fullscreen Section */
.fl-section--fullheight {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Text Ausrichtung */
.fl-text-center {
    text-align: center;
}

.fl-text-right {
    text-align: right;
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 767px) {
    /* Partner Grid 2-spaltig auf Mobile */
    .fl-grid--5,
    .fl-grid--4 {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px;
    }
    
    .fl-grid--5 .fl-card__image,
    .fl-grid--4 .fl-card__image {
        padding: 10px;
    }
    
    /* CTA Buttons untereinander */
    .fl-cta__buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .fl-cta__buttons .fl-btn {
        width: 100%;
        max-width: 300px;
    }
    
    /* Logo-Only Cards kleiner */
    .fl-card--logo-only {
        min-height: 120px;
    }
    
    .fl-card--logo-only .fl-card__image img {
        max-height: 80px;
    }
}

/* ==========================================================================
   ACCORDION - Modern & Elegant
   ========================================================================== */
.fl-accordion {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
}

.fl-accordion__item {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    overflow: hidden;
    transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.fl-accordion__item:hover {
    border-color: #d1d5db;
}

.fl-accordion__item.is-open {
    border-color: var(--fl-primary, #1a365d);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

/* Spacing Varianten */
.fl-accordion--spacing-none .fl-accordion__item + .fl-accordion__item {
    margin-top: -1px;
    border-radius: 0;
}

.fl-accordion--spacing-none .fl-accordion__item:first-child {
    border-radius: 8px 8px 0 0;
}

.fl-accordion--spacing-none .fl-accordion__item:last-child {
    border-radius: 0 0 8px 8px;
}

.fl-accordion--spacing-small .fl-accordion__item + .fl-accordion__item {
    margin-top: 8px;
}

.fl-accordion--spacing-medium .fl-accordion__item + .fl-accordion__item {
    margin-top: 16px;
}

.fl-accordion--spacing-large .fl-accordion__item + .fl-accordion__item {
    margin-top: 24px;
}

/* Header Button */
.fl-accordion__header {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 1.125rem 1.5rem;
    background: #fff;
    border: none;
    cursor: pointer;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 600;
    color: var(--fl-heading-color, #1f2937);
    text-align: left;
    gap: 1rem;
    transition: background-color 0.2s ease;
}

.fl-accordion__header:hover {
    background: #f9fafb;
}

.fl-accordion__item.is-open .fl-accordion__header {
    background: #f9fafb;
}

/* Titel */
.fl-accordion__title {
    flex: 1;
    color: inherit;
    font-size: inherit;
    font-weight: inherit;
}

/* Item Icon (optional, vom User gesetzt) */
.fl-accordion__item-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    color: var(--fl-primary, #1a365d);
    flex-shrink: 0;
}

.fl-accordion__item-icon svg {
    width: 18px;
    height: 18px;
}

/* Toggle Icon */
.fl-accordion__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #f3f4f6;
    color: #6b7280;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.fl-accordion__icon svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.fl-accordion__item.is-open .fl-accordion__icon {
    background: var(--fl-primary, #1a365d);
    color: #fff;
}

.fl-accordion__item.is-open .fl-accordion__icon .fl-icon-chevron {
    transform: rotate(180deg);
}

.fl-accordion__item.is-open .fl-accordion__icon .fl-icon-arrow {
    transform: rotate(90deg);
}

/* Plus Icon - horizontale Linie ausblenden wenn offen */
.fl-accordion__icon .fl-icon-plus__h {
    transition: opacity 0.2s ease;
}

.fl-accordion__item.is-open .fl-accordion__icon .fl-icon-plus__h {
    opacity: 0;
}

/* Content */
.fl-accordion__content {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.3s ease;
}

.fl-accordion__item.is-open .fl-accordion__content {
    max-height: 2000px;
}

.fl-accordion__content[hidden] {
    display: block !important;
    max-height: 0;
}

.fl-accordion__body {
    padding: 0 1.5rem 1.5rem;
    color: var(--fl-body-text, #4b5563);
    line-height: 1.7;
    font-size: 0.95rem;
}

.fl-accordion__body p {
    margin: 0 0 1em;
}

.fl-accordion__body p:last-child {
    margin-bottom: 0;
}

/* Style: Minimal */
.fl-accordion--minimal .fl-accordion__item {
    background: transparent;
    border: none;
    border-bottom: 1px solid #e5e7eb;
    border-radius: 0;
}

.fl-accordion--minimal .fl-accordion__item:last-child {
    border-bottom: none;
}

.fl-accordion--minimal .fl-accordion__item.is-open {
    box-shadow: none;
}

.fl-accordion--minimal .fl-accordion__header {
    background: transparent;
    padding-left: 0;
    padding-right: 0;
}

.fl-accordion--minimal .fl-accordion__header:hover {
    background: transparent;
}

.fl-accordion--minimal .fl-accordion__body {
    padding-left: 0;
    padding-right: 0;
}

/* Style: Boxed */
.fl-accordion--boxed .fl-accordion__item {
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.fl-accordion--boxed .fl-accordion__item.is-open {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

/* Style: Filled */
.fl-accordion--filled .fl-accordion__header {
    background: #f3f4f6;
}

.fl-accordion--filled .fl-accordion__header:hover {
    background: #e5e7eb;
}

.fl-accordion--filled .fl-accordion__item.is-open .fl-accordion__header {
    background: var(--fl-primary, #1a365d);
    color: #fff;
}

.fl-accordion--filled .fl-accordion__item.is-open .fl-accordion__icon {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}

/* Icon Position Left */
.fl-accordion--icon-left .fl-accordion__header {
    flex-direction: row;
}

.fl-accordion--icon-left .fl-accordion__icon {
    order: -1;
}

/* ==========================================================================
   TABS - Modern & Elegant
   ========================================================================== */
.fl-tabs {
    width: 100%;
}

.fl-tabs--horizontal {
    display: block;
}

.fl-tabs--vertical {
    display: flex;
    gap: 2rem;
}

/* Tab Navigation */
.fl-tabs__nav {
    display: flex;
    gap: 0;
    border-bottom: 2px solid #e5e7eb;
    margin-bottom: 2rem;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.fl-tabs__nav::-webkit-scrollbar {
    display: none;
}

.fl-tabs--vertical .fl-tabs__nav {
    flex-direction: column;
    border-bottom: none;
    border-right: 2px solid #e5e7eb;
    padding-right: 0;
    margin-bottom: 0;
    min-width: 200px;
    gap: 0.25rem;
}

/* Alignment */
.fl-tabs--align-center .fl-tabs__nav {
    justify-content: center;
}

.fl-tabs--align-right .fl-tabs__nav {
    justify-content: flex-end;
}

.fl-tabs--align-stretch .fl-tabs__tab {
    flex: 1;
    justify-content: center;
}

/* Tab Button */
.fl-tabs__tab {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
    font-family: inherit;
    font-size: 0.95rem;
    font-weight: 500;
    color: #6b7280;
    white-space: nowrap;
    position: relative;
    transition: color 0.2s ease;
}

.fl-tabs__tab::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: transparent;
    transition: background-color 0.2s ease;
}

.fl-tabs--vertical .fl-tabs__tab {
    justify-content: flex-start;
    padding: 0.875rem 1.25rem;
    border-radius: 6px 0 0 6px;
}

.fl-tabs--vertical .fl-tabs__tab::after {
    bottom: auto;
    top: 0;
    right: -2px;
    left: auto;
    width: 2px;
    height: 100%;
}

.fl-tabs__tab:hover {
    color: var(--fl-primary, #1a365d);
}

.fl-tabs__tab.is-active {
    color: var(--fl-primary, #1a365d);
    font-weight: 600;
}

.fl-tabs__tab.is-active::after {
    background: var(--fl-primary, #1a365d);
}

.fl-tabs--vertical .fl-tabs__tab.is-active {
    background: #f9fafb;
}

/* Tab Icon */
.fl-tabs__tab-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.fl-tabs__tab-icon svg {
    width: 18px;
    height: 18px;
}

/* Style: Boxed */
.fl-tabs--boxed .fl-tabs__nav {
    border-bottom: none;
    gap: 0.5rem;
    background: #f3f4f6;
    padding: 0.375rem;
    border-radius: 10px;
    margin-bottom: 2rem;
}

.fl-tabs--boxed .fl-tabs__tab {
    border-radius: 8px;
    padding: 0.75rem 1.25rem;
}

.fl-tabs--boxed .fl-tabs__tab::after {
    display: none;
}

.fl-tabs--boxed .fl-tabs__tab.is-active {
    background: #fff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

/* Style: Pills */
.fl-tabs--pills .fl-tabs__nav {
    border-bottom: none;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.fl-tabs--pills .fl-tabs__tab {
    border-radius: 50px;
    padding: 0.625rem 1.5rem;
    background: #f3f4f6;
}

.fl-tabs--pills .fl-tabs__tab::after {
    display: none;
}

.fl-tabs--pills .fl-tabs__tab:hover {
    background: #e5e7eb;
}

.fl-tabs--pills .fl-tabs__tab.is-active {
    background: var(--fl-primary, #1a365d);
    color: #fff;
}

/* Style: Minimal */
.fl-tabs--minimal .fl-tabs__nav {
    border-bottom: none;
    gap: 2rem;
}

.fl-tabs--minimal .fl-tabs__tab {
    padding: 0.5rem 0;
}

.fl-tabs--minimal .fl-tabs__tab::after {
    display: none;
}

.fl-tabs--minimal .fl-tabs__tab.is-active {
    text-decoration: underline;
    text-underline-offset: 4px;
}

/* Tab Panels */
.fl-tabs__panels {
    flex: 1;
}

.fl-tabs--vertical .fl-tabs__panels {
    padding-left: 1.5rem;
}

.fl-tabs__panel {
    display: none;
}

.fl-tabs__panel.is-active {
    display: block;
    animation: fl-fade-in 0.3s ease;
}

@keyframes fl-fade-in {
    from {
        opacity: 0;
        transform: translateY(8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fl-tabs__content {
    line-height: 1.7;
    color: var(--fl-body-text, #4b5563);
    font-size: 0.95rem;
}

.fl-tabs__content p {
    margin: 0 0 1em;
}

.fl-tabs__content p:last-child {
    margin-bottom: 0;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .fl-tabs--vertical {
        flex-direction: column;
    }
    
    .fl-tabs--vertical .fl-tabs__nav {
        flex-direction: row;
        border-right: none;
        border-bottom: 2px solid #e5e7eb;
        min-width: auto;
        overflow-x: auto;
    }
    
    .fl-tabs--vertical .fl-tabs__tab {
        border-radius: 0;
    }
    
    .fl-tabs--vertical .fl-tabs__tab::after {
        bottom: -2px;
        top: auto;
        right: 0;
        left: 0;
        width: auto;
        height: 2px;
    }
    
    .fl-tabs--vertical .fl-tabs__tab.is-active {
        background: transparent;
    }
    
    .fl-tabs--vertical .fl-tabs__panels {
        padding-left: 0;
        padding-top: 1.5rem;
    }
    
    .fl-tabs__tab {
        padding: 0.875rem 1rem;
        font-size: 0.9rem;
    }
    
    /* Accordion Mobile */
    .fl-accordion__header {
        padding: 1rem;
    }
    
    .fl-accordion__body {
        padding: 0 1rem 1rem;
    }
}

/* ==========================================================================
   VIDEO SECTION
   ========================================================================== */
.fl-video {
    --fl-video-aspect: 16/9;
    position: relative;
    width: 100%;
    margin: 0 auto;
    background: #000;
    border-radius: var(--fl-radius-md, 8px);
    overflow: hidden;
}

.fl-video iframe,
.fl-video video {
    width: 100%;
    aspect-ratio: var(--fl-video-aspect);
    display: block;
    border: none;
}

/* Max Width Varianten */
.fl-video--small {
    max-width: 560px;
}

.fl-video--medium {
    max-width: 800px;
}

.fl-video--large {
    max-width: 1000px;
}

/* Border Radius Varianten */
.fl-video--radius-none {
    border-radius: 0;
}

.fl-video--radius-small {
    border-radius: 4px;
}

.fl-video--radius-large {
    border-radius: 16px;
}

/* Beschreibung */
.fl-video__description {
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Error State */
.fl-video__error {
    padding: 2rem;
    text-align: center;
    color: #666;
    background: #f5f5f5;
    border-radius: 8px;
}

/* Responsive */
@media (max-width: 768px) {
    .fl-video {
        border-radius: var(--fl-radius-sm, 4px);
    }
    
    .fl-video--radius-large {
        border-radius: 8px;
    }
}
