/**
 * Verein-Core-System Design System
 * Defines Corporate Identity Colors & Typography
 */

:root {
    /* 1. Farbpalette (Corporate Identity) */
    --color-primary: #2F7074;
    --color-secondary: #22585A;
    --color-cta: #F9C537;
    --color-background: #F5F7F7;
    --color-text: #333333;

    /* Gen Z Vibe Shift Colors */
    --color-youth-coral: #FF4E72;
    --color-youth-mint: #2DE1C2;
    --color-youth-violet: #8B5CF6;
    --color-youth-ice: #00D4FF;

    /* Legacy variables for backward compatibility */
    --color-text-body: #333333;
    --color-text-dark: #A7872C;
    --color-accent: #F9C537;

    --color-white: #ffffff;
    --color-error: #dc3232;
    --color-success: #46b450;
    --color-grey-light: #f0f0f1;
}

/* 2. Typografie */
body,
body.page-template-default,
body.elementor-page {
    color: var(--color-text);
    background-color: var(--color-background);
}

h1,
h2,
h3 {
    color: var(--color-primary);
}

/* ==========================================================================
   Bento Grid Components 
   ========================================================================== */

/* Bento Grid Container */
.vcn-bento-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)) !important;
    gap: 24px !important;
    width: 100% !important;
}

/* Bento Card Element (Deep Background Glassmorphism) */
.vcn-bento-card {
    background: rgba(34, 88, 90, 0.75) !important;
    backdrop-filter: blur(24px) !important;
    -webkit-backdrop-filter: blur(24px) !important;
    border-radius: 24px !important;
    padding: 32px !important;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15) !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    display: flex !important;
    flex-direction: column !important;
    overflow: hidden !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease !important;
}

/* Ensure text colors inside the bento card have high contrast against deep green */
.vcn-bento-card,
.vcn-bento-card h1,
.vcn-bento-card h2,
.vcn-bento-card h3,
.vcn-bento-card h4,
.vcn-bento-card h5,
.vcn-bento-card h6,
.vcn-bento-card p,
.vcn-bento-card span,
.vcn-bento-card div,
.vcn-bento-card li,
.vcn-bento-card a {
    color: #ffffff !important;
}

.vcn-bento-card .vcn-mentor-desc,
.vcn-bento-card .vcn-mentor-desc * {
    color: #f1f5f9 !important;
    /* very light gray */
}

/* Hover-Effekt für die Karte */
.vcn-bento-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15) !important;
}

/* Bento Video Section Widget (Text Left, Videos Right) */
.vcn-bento-video-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    width: 100%;
}

.vcn-bento-video-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* Fallback for video inside the new bento card */
.vcn-video-card.vcn-bento-card {
    padding: 0;
    overflow: hidden;
}

@media (max-width: 992px) {
    .vcn-bento-video-section {
        grid-template-columns: 1fr;
    }
}

/* Bento Insights & Mentors Widget */
.vcn-mentors-section {
    position: relative;
    overflow: hidden;
    padding: 40px 0;
}

/* Aurora Glow Background Effect */
.vcn-mentors-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 30%, rgba(249, 197, 55, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 70% 70%, rgba(134, 239, 172, 0.1) 0%, transparent 40%);
    z-index: 0;
    pointer-events: none;
    animation: aurora-pulse 15s ease-in-out infinite alternate;
}

@keyframes aurora-pulse {
    0% {
        transform: scale(1) translate(0, 0);
    }

    100% {
        transform: scale(1.1) translate(-2%, 2%);
    }
}

.vcn-mentors-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 24px;
    width: 100%;
    align-items: stretch;
}

.vcn-mentors-stack {
    display: flex;
    flex-direction: column;
    height: 100%;
    gap: 16px;
    min-height: 0;
}

.vcn-info-card ul {
    list-style: none;
    /* remove default bullets */
    padding-left: 0;
    margin-top: 16px;
    margin-bottom: 16px;
}

.vcn-info-card ul li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    line-height: 1.6;
    color: var(--color-text, #333);
}

.vcn-info-card ul li::before {
    content: "•";
    position: absolute;
    left: 8px;
    color: var(--color-cta, #F9C537);
    /* Gold for list bullets */
    font-size: 1.5em;
    line-height: 1;
    top: -2px;
}

.vcn-mentors-right-panel {
    background: rgba(34, 88, 90, 0.75) !important;
}

.vcn-mentor-inner-card {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    background: rgba(34, 88, 90, 0.75);
    backdrop-filter: blur(16px);
    border-radius: 16px;
    transition: all 0.3s ease;
    cursor: pointer;
    color: #fff;
}

.vcn-mentor-inner-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
    background: rgba(34, 88, 90, 0.9);
}

.vcn-mentor-inner-card h4 {
    color: #ffffff !important;
    margin: 0 0 4px 0;
    font-size: 1.2rem;
    font-weight: 700;
}

.vcn-mentor-inner-card span {
    font-size: 0.9rem;
    color: var(--color-cta, #F9C537);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.vcn-mentor-inner-card .vcn-mentor-desc {
    margin-top: 8px;
    font-size: 14px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.8);
}

.vcn-mentor-avatar {
    flex-shrink: 0;
    border-radius: 16px;
    overflow: hidden;
    /* Verhindert das Ausbrechen von hochkanten Bildern */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    /* Gibt dem Bild etwas Tiefe */
}

.vcn-mentor-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
    border-radius: 16px;
    /* Zwingt das Bild in die Abrundung */
}

.vcn-mentor-info {
    display: flex;
    flex-direction: column;
    flex: 1;
}

@media (max-width: 992px) {
    .vcn-mentors-grid {
        grid-template-columns: 1fr;
    }
}

/* Youth Features Nested Grid inside Left Column */
.vcn-youth-features-nested-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 24px;
}

@media (max-width: 992px) {
    .vcn-youth-features-nested-grid {
        grid-template-columns: 1fr;
    }
}

.vcn-bento-card.vcn-feature-card {
    display: flex !important;
    flex-direction: row !important;
    align-items: flex-start;
    gap: 16px;
    padding: 24px !important;
    border-radius: 20px !important;
    /* Playful */
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease !important;
}

.vcn-bento-card.vcn-feature-card:hover {
    transform: scale(1.03) !important;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1) !important;
}

.vcn-feature-icon {
    flex-shrink: 0;
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    /* No generic background to let duotone SVG breathe */
    background: transparent;
    border: none;
    box-shadow: none;
}

.vcn-feature-icon svg.vcn-animated-icon {
    width: 100%;
    height: 100%;
    animation: floating-icon 3s ease-in-out infinite;
}

@keyframes floating-icon {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }
}

.vcn-feature-icon svg {
    width: 100%;
    height: 100%;
    stroke: currentColor;
    stroke-width: 2;
    transition: transform 0.3s ease;
}

.vcn-feature-card:hover .vcn-feature-icon svg {
    transform: scale(1.1);
}

.vcn-feature-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.vcn-feature-title {
    margin: 0;
    font-size: 20px !important;
    font-weight: 700;
}

.vcn-feature-desc {
    font-size: 18px !important;
    line-height: 1.6 !important;
    opacity: 0.85;
}

.vcn-feature-desc br {
    display: block;
    margin-bottom: 8px;
}

/* 3. Utility Classes - Buttons */
.btn-vcn {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.2s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--color-primary);
    color: var(--color-white);
}

.btn-primary:hover,
.btn-primary:focus {
    background-color: var(--color-secondary);
    color: var(--color-white);
}

.btn-accent {
    background-color: var(--color-accent);
    color: var(--color-text-body);
}

.btn-accent:hover,
.btn-accent:focus {
    filter: brightness(0.95);
}

/* 4. Form Controls */
.vcn-input-group input:focus,
.vcn-input-group select:focus,
.vcn-input-group textarea:focus {
    border-color: var(--color-accent);
    outline: none;
    box-shadow: 0 0 0 1px var(--color-accent);
}

/* Checkbox Accent */
input[type="checkbox"]:checked {
    accent-color: var(--color-primary);
}

/* 5. Dashboard / Cockpit Specifics */
.vcn-badge {
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.85em;
    font-weight: bold;
    text-transform: uppercase;
}

.vcn-badge.status-self {
    background-color: var(--color-primary);
    color: var(--color-white);
}

.vcn-badge.status-child {
    background-color: var(--color-secondary);
    color: var(--color-white);
}

/* Toggles */
.vcn-toggle-status {
    width: 12px;
    height: 12px;
    display: inline-block;
    border-radius: 50%;
    margin-right: 5px;
}

.vcn-toggle-status[data-active="true"] {
    background-color: var(--color-success);
}

.vcn-toggle-status[data-active="false"] {
    background-color: var(--color-grey-light);
    /* Or red? User said grey/red standard */
    background-color: #ccc;
}

/* Legal Warnings */
.social-media-warning {
    display: none;
    /* JS toggles this */
    margin-top: 10px;
    padding: 10px;
    border: 2px solid var(--color-accent);
    background-color: #fff3cd;
    /* Light yellow bootstrap-ish */
    color: var(--color-text-body);
    font-size: 0.9em;
    border-radius: 4px;
}

/* 6. Formular Mitgliedsantrag (Neu) */
body.page-template-mitgliedsantrag {
    background-image:
        url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.08'/%3E%3C/svg%3E"),
        radial-gradient(circle at 100% 0%, rgba(249, 197, 55, 0.45) 0%, transparent 55%),
        radial-gradient(circle at 0% 100%, rgba(47, 112, 116, 0.5) 0%, transparent 60%),
        linear-gradient(180deg, #9DB8BB 0%, #8ca6a9 100%);
    background-blend-mode: overlay, normal, normal, normal;
    background-size: 200px 200px, cover, cover, cover;
    font-family: Helvetica, Arial, sans-serif !important;
}

.vcn-application-form {
    font-family: Helvetica, Arial, sans-serif !important;
    max-width: 800px;
    margin: 0 auto;
}

.vcn-application-form * {
    font-family: Helvetica, Arial, sans-serif !important;
}

.vcn-glass-panel {
    background: rgba(34, 88, 90, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 25px;
    color: #ffffff;
}

.vcn-section h3 {
    margin-top: 0;
    margin-bottom: 20px;
    color: #ffffff;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 5px;
}

.vcn-input-group {
    margin-bottom: 15px;
}

.vcn-input-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #ffffff;
}

.vcn-input-group input[type="text"],
.vcn-input-group input[type="email"],
.vcn-input-group input[type="tel"] {
    width: 100%;
    padding: 10px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.8);
    color: var(--color-text-body);
}

/* Grids for responsive layouts */
.vcn-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.vcn-grid-street {
    display: grid;
    grid-template-columns: 3fr 1fr;
    gap: 15px;
}

.vcn-grid-city {
    display: grid;
    grid-template-columns: 1fr 3fr;
    gap: 15px;
}

.vcn-width-auto {
    width: 50%;
}

@media (max-width: 600px) {

    .vcn-grid-2,
    .vcn-grid-street,
    .vcn-grid-city {
        grid-template-columns: 1fr;
    }

    .vcn-width-auto {
        width: 100%;
    }
}

.vcn-radios label,
.vcn-checkboxes label {
    display: block;
    margin-bottom: 8px;
    font-weight: normal;
}

.vcn-alert {
    background-color: rgba(249, 197, 55, 0.15);
    border-left: 4px solid var(--color-accent);
    padding: 10px 15px;
    margin-bottom: 20px;
}

.vcn-alert p {
    margin: 0;
    font-size: 0.95em;
    color: #ffffff;
}

.vcn-submit {
    text-align: right;
    margin-top: 30px;
}

.btn-vcn.btn-primary {
    background-color: var(--color-primary);
    color: #fff;
    padding: 12px 24px;
    font-size: 1.1em;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-vcn.btn-primary:hover {
    background-color: var(--color-secondary);
}

.btn-vcn.btn-secondary {
    background-color: rgba(255, 255, 255, 0.5);
    color: var(--color-text-body);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.btn-vcn.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.8);
}

/* ==========================================================================
   BSKV Glassmorphism Button
   ========================================================================== */

button.vcn-glass-btn,
a.vcn-glass-btn,
.vcn-glass-btn {
    display: inline-block !important;
    padding: 12px 24px !important;
    background: rgba(47, 112, 116, 0.85) !important;
    /* Vereinsfarbe Dunkelgrün */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    border-radius: 8px !important;
    color: #ffffff !important;
    text-decoration: none !important;
    font-weight: 600 !important;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer !important;
    font-family: Helvetica, Arial, sans-serif !important;
}

button.vcn-glass-btn:hover,
a.vcn-glass-btn:hover,
.vcn-glass-btn:hover {
    background: rgba(47, 112, 116, 1) !important;
    transform: translateY(-2px);
    color: #ffffff !important;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.5) !important;
}

/* ==========================================================================
   Safe YouTube Link Widget
   ========================================================================== */
/* Glassmorphism Frame für das gesamte Widget */
.vcn-safe-youtube-container {
    background: rgba(255, 255, 255, 0.15) !important;
    /* Heller, milchiger Grundton */
    backdrop-filter: blur(16px) saturate(120%) !important;
    -webkit-backdrop-filter: blur(16px) saturate(120%) !important;
    /* Für Safari */
    border: 1px solid rgba(255, 255, 255, 0.4) !important;
    border-radius: 16px !important;
    padding: 20px !important;
    /* Wichtig: Abstand, damit der Rahmen sichtbar wird */
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1) !important;
    transition: all 0.3s ease !important;
    overflow: hidden !important;
    /* Equal height flexbox */
    height: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
}

/* Hover-Effekt für den gesamten Rahmen */
.vcn-safe-youtube-container:hover {
    background: rgba(255, 255, 255, 0.25) !important;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15) !important;
    border: 1px solid rgba(255, 255, 255, 0.6) !important;
}

.vcn-safe-youtube-link {
    display: block;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    /* Optional: harmonizes with other elements */
    text-decoration: none;
}

/* Anpassung des inneren Bildes, damit es zum äußeren Rahmen passt */
.vcn-safe-youtube-container img {
    border-radius: 8px !important;
    /* Etwas kleinere Rundung als der Außenrahmen */
    width: 100% !important;
    display: block !important;
    height: auto;
    transition: transform 0.3s ease;
}

/* Highly specific selector for Premium Glassmorphism Play Button */
.elementor-widget-vcn_safe_youtube_link .vcn-safe-youtube-container .vcn-play-button-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    /* Premium Glassmorphism base: dark green tint */
    background: rgba(47, 112, 116, 0.4) !important;
    backdrop-filter: blur(12px) saturate(160%) !important;
    -webkit-backdrop-filter: blur(12px) saturate(160%) !important;
    /* Subtle bright borders for the glass edge */
    border: 1px solid rgba(255, 255, 255, 0.5) !important;
    box-shadow:
        0 8px 32px 0 rgba(15, 15, 35, 0.2),
        inset 0 0 0 1px rgba(255, 255, 255, 0.2) !important;
    transition: all 400ms cubic-bezier(0.4, 0, 0.2, 1) !important;
    pointer-events: none;
    /* Let the link handle click/hover */
    font-family: Helvetica, Arial, sans-serif !important;
    /* Strictly web-safe */
}

.elementor-widget-vcn_safe_youtube_link .vcn-safe-youtube-container .vcn-play-button-overlay svg {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
    transition: transform 400ms cubic-bezier(0.4, 0, 0.2, 1);
}

.elementor-widget-vcn_safe_youtube_link .vcn-safe-youtube-link:hover .vcn-play-button-overlay {
    transform: translate(-50%, -50%) scale(1.15) !important;
    background: rgba(47, 112, 116, 0.6) !important;
    border-color: rgba(255, 255, 255, 0.7) !important;
    box-shadow:
        0 8px 32px 0 rgba(47, 112, 116, 0.4),
        inset 0 0 0 1px rgba(255, 255, 255, 0.3),
        0 0 20px rgba(47, 112, 116, 0.3) !important;
}

.elementor-widget-vcn_safe_youtube_link .vcn-safe-youtube-link:hover .vcn-play-button-overlay svg {
    transform: scale(1.1);
}

/* Optional: Slight image zoom on hover */
.vcn-safe-youtube-link:hover img {
    transform: scale(1.02);
}

/* Abstand der Beschreibung zum Bild optimieren */
.vcn-video-description {
    margin-top: 15px !important;
    text-align: center !important;
    font-family: Helvetica, Arial, sans-serif !important;
    /* Strikt keine Google Fonts! */
    color: inherit !important;
    font-size: 0.95em;
    line-height: 1.5;
    opacity: 0.85;
    /* Bulletproof equal height stretching */
    flex-grow: 1 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
}

/* ==========================================================================
   Vertical Scroll Template (Premium Glassmorphism)
   ========================================================================== */

/* 1. Haupt-Sektion */
.vcn-premium-section {
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

/* Ambient Glow - Verein-Grün Blob Oben Links */
.vcn-premium-section::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(47, 112, 116, 0.4) 0%, transparent 70%);
    filter: blur(80px);
    z-index: 0;
    border-radius: 50%;
    pointer-events: none;
}

/* Ambient Glow - Verein-Gelb Blob Unten Rechts */
.vcn-premium-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(249, 197, 55, 0.15) 0%, transparent 70%);
    filter: blur(80px);
    z-index: 0;
    border-radius: 50%;
    pointer-events: none;
}

/* 2. Text-Lesbarkeit & Typografie (Dark Glass Panel) */
.vcn-text-panel {
    position: relative;
    z-index: 2;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    /* Extrem sauberer Rahmen */
    border-radius: 16px;
    box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.05), 0 8px 32px rgba(0, 0, 0, 0.2);
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    padding: 30px;
}

/* Typografie im Panel (Strikt Websicher) */
.vcn-text-panel h1,
.vcn-text-panel h2,
.vcn-text-panel h3,
.vcn-text-panel h4,
.vcn-text-panel h5,
.vcn-text-panel h6,
.vcn-text-panel p,
.vcn-text-panel span,
.vcn-text-panel div {
    font-family: Helvetica, Arial, sans-serif !important;
    color: #ffffff;
}

/* Hauptüberschrift im Vereins-Gelb */
.vcn-text-panel h1,
.vcn-text-panel h2.vcn-main-title {
    color: #F9C537 !important;
    font-weight: 700 !important;
    /* modern fettiert */
    letter-spacing: 0.05em !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5) !important;
}

/* 3. Video-Grid holding the Safe YouTube Widgets */
.vcn-video-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 40px;
    align-items: stretch;
    /* Enforce equal height across columns */
}

/* ==========================================================================
   Bento FH-Topspin Widget (Grid Stacking Overlay – NO 3D Flips)
   ========================================================================== */

/* --- Module Wrapper (Cognitive Chunking – Gestaltgesetz) ----------------- */
.vcn-fhtopspin-module-wrapper {
    position: relative;
    background: radial-gradient(circle at top right, rgba(45, 225, 194, 0.08), transparent 40%), radial-gradient(circle at bottom left, rgba(139, 92, 246, 0.08), transparent 40%), var(--color-secondary, #22585A) !important;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 32px;
    padding: 48px 40px 40px;
    box-shadow:
        0 16px 48px rgba(0, 0, 0, 0.12),
        inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.vcn-fhtopspin-module-label {
    display: inline-block;
    position: absolute;
    top: 16px;
    left: 32px;
    font-size: 0.75em;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #ffffff !important;
    background-color: var(--color-youth-coral, #FF4E72) !important;
    padding: 4px 12px;
    border-radius: 12px;
    pointer-events: none;
}

@media (max-width: 600px) {
    .vcn-fhtopspin-module-wrapper {
        padding: 40px 16px 24px;
        border-radius: 24px;
    }

    .vcn-fhtopspin-module-label {
        left: 20px;
        top: 12px;
        font-size: 0.7em;
    }
}

/* --- Outer Grid --------------------------------------------------------- */
.vcn-fhtopspin-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    width: 100%;
}

/* --- Card (Grid Stacking Container) ------------------------------------- */
.vcn-fhtopspin-card {
    display: grid;
    /* enables grid-area stacking */
    border-radius: 24px;
    overflow: hidden;
    cursor: pointer;
    transition: box-shadow 0.3s ease;
}

.vcn-fhtopspin-card:hover {
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.15), 0 0 0 1px rgba(0, 212, 255, 0.3) !important;
}

/* Hero card spans full width */
.vcn-fhtopspin-hero {
    grid-column: 1 / -1;
}

/* --- Front Layer (Quick Bite, always visible) — ELEVATED on dark wrapper */
.vcn-fhtopspin-front {
    grid-area: 1 / 1;
    padding: 32px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(28px) saturate(140%);
    -webkit-backdrop-filter: blur(28px) saturate(140%);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    color: #ffffff;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

/* --- Back Layer (Detail Overlay, hidden until hover) — ELEVATED */
.vcn-fhtopspin-back {
    grid-area: 1 / 1;
    padding: 32px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(32px) saturate(150%);
    -webkit-backdrop-filter: blur(32px) saturate(150%);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    color: #ffffff;
    overflow-y: auto;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
    /* Hidden by default */
    opacity: 0;
    pointer-events: none;
    z-index: 10;
    transition: opacity 0.3s ease;
}

/* Reveal overlay on hover */
.vcn-fhtopspin-card:hover .vcn-fhtopspin-back {
    opacity: 1;
    pointer-events: auto;
}

/* --- Typography --------------------------------------------------------- */
.vcn-fhtopspin-title {
    color: #ffffff !important;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 10px;
    margin-bottom: 15px;
    font-size: 1.4em !important;
}

.vcn-fhtopspin-detail {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    font-size: 1em;
}

.vcn-fhtopspin-detail strong {
    color: var(--color-cta) !important;
}

.vcn-fhtopspin-detail em {
    color: #ffb4a2 !important;
    font-style: normal;
    text-decoration: underline;
}

.vcn-fhtopspin-front p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    flex: 1;
}

.vcn-fhtopspin-hint {
    display: block;
    margin-top: auto;
    padding-top: 12px;
    text-align: right;
    font-size: 0.85em;
    font-weight: 600;
    opacity: 0.7;
    color: var(--color-youth-ice, #00D4FF) !important;
}

/* --- Back Layer Typography: left-align for body text readability ------- */
.vcn-fhtopspin-back {
    text-align: left;
}

.vcn-fhtopspin-back p,
.vcn-fhtopspin-back ul,
.vcn-fhtopspin-back ol,
.vcn-fhtopspin-back .vcn-fhtopspin-detail {
    text-align: left;
}

/* --- Hero card typography boost ----------------------------------------- */
.vcn-fhtopspin-hero .vcn-fhtopspin-front {
    text-align: center;
}

.vcn-fhtopspin-hero .vcn-fhtopspin-front .vcn-fhtopspin-title {
    color: var(--color-cta) !important;
    font-size: 2.2em !important;
    margin-bottom: 20px;
}

.vcn-fhtopspin-hero .vcn-fhtopspin-front p {
    font-size: 1.25em;
}

.vcn-fhtopspin-hero .vcn-fhtopspin-back {
    text-align: center;
}

.vcn-fhtopspin-hero .vcn-fhtopspin-back .vcn-fhtopspin-title {
    color: var(--color-cta) !important;
    font-size: 1.8em !important;
}

/* --- Responsive: Tablet (2 columns) ------------------------------------ */
@media (min-width: 768px) {
    .vcn-fhtopspin-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* --- Responsive: Desktop (3 columns) ----------------------------------- */
@media (min-width: 1024px) {
    .vcn-fhtopspin-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ==========================================================================
   FHTopspin – YouTube Link Card (Kachel 6)
   ========================================================================== */
.vcn-fhtopspin-link-card {
    text-decoration: none !important;
    color: inherit !important;
    display: block;
}

.vcn-fhtopspin-video-thumb {
    position: relative;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.vcn-fhtopspin-video-bg {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.5;
    z-index: 0;
}

.vcn-fhtopspin-video-placeholder {
    width: 100%;
    height: 100%;
}

.vcn-fhtopspin-video-thumb .vcn-fhtopspin-title,
.vcn-fhtopspin-video-thumb p {
    position: relative;
    z-index: 2;
}

/* Play Button Overlay (Glassmorphism) */
.vcn-fhtopspin-link-card .vcn-play-button-overlay {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(47, 112, 116, 0.4) !important;
    backdrop-filter: blur(12px) saturate(160%) !important;
    -webkit-backdrop-filter: blur(12px) saturate(160%) !important;
    border: 1px solid rgba(255, 255, 255, 0.5) !important;
    box-shadow:
        0 8px 32px 0 rgba(15, 15, 35, 0.2),
        inset 0 0 0 1px rgba(255, 255, 255, 0.2) !important;
    transition: all 400ms cubic-bezier(0.4, 0, 0.2, 1) !important;
    margin-bottom: 16px;
}

.vcn-fhtopspin-link-card:hover .vcn-play-button-overlay {
    transform: scale(1.1) !important;
    background: rgba(47, 112, 116, 0.6) !important;
    border-color: var(--color-youth-ice);
    opacity: 0.9;
    box-shadow:
        0 8px 32px 0 rgba(47, 112, 116, 0.4),
        inset 0 0 0 1px rgba(255, 255, 255, 0.3),
        0 0 20px rgba(47, 112, 116, 0.3) !important;
}

.vcn-fhtopspin-link-card:hover .vcn-play-button-overlay svg {
    transform: scale(1.1);
}

/* ==========================================================================
   FHTopspin – Modal Trigger Tiles (Kachel 7 & 8)
   ========================================================================== */
.vcn-fhtopspin-modal-trigger {
    cursor: pointer;
    transition: box-shadow 0.3s ease, transform 0.3s ease !important;
}

.vcn-fhtopspin-modal-trigger:hover {
    transform: translateY(-4px) !important;
    box-shadow: 0 16px 48px rgba(47, 112, 116, 0.3) !important;
}

.vcn-fhtopspin-modal-trigger .vcn-fhtopspin-title {
    font-size: 1.3em !important;
}

/* ==========================================================================
   FHTopspin – Artifact Modal (Quiz & Karteikarten)
   ========================================================================== */
.vcn-artifact-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 24px;
}

.vcn-artifact-modal.is-open {
    display: flex;
    animation: vcnModalFadeIn 0.3s ease forwards;
}

@keyframes vcnModalFadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.vcn-artifact-modal-inner {
    position: relative;
    width: 100%;
    max-width: 900px;
    background: rgba(34, 88, 90, 0.85);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.3);
}

.vcn-artifact-modal-close {
    position: absolute;
    top: 12px;
    right: 16px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 24px;
    line-height: 1;
    color: #ffffff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    z-index: 10;
}

.vcn-artifact-modal-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

/* ==========================================================================
   Native Flashcards (3D Flip)
   ========================================================================== */
.vcn-flashcards-container {
    max-width: 960px;
    max-height: 90vh;
    overflow-y: auto;
}

.vcn-flashcards-header {
    color: var(--color-cta, #F9C537) !important;
    font-size: 1.6em !important;
    margin: 0 0 8px 0;
    text-align: center;
}

.vcn-flashcards-subtitle {
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    margin: 0 0 24px 0;
    font-size: 0.95em;
}

.vcn-flashcards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}

.vcn-flashcard {
    perspective: 800px;
    height: 220px;
    cursor: pointer;
    outline: none;
}

.vcn-flashcard-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
}

.vcn-flashcard.is-flipped .vcn-flashcard-inner {
    transform: rotateY(180deg);
}

.vcn-flashcard-front,
.vcn-flashcard-back {
    position: absolute;
    inset: 0;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    text-align: center;
    font-size: 0.95em;
    line-height: 1.6;
    color: #ffffff;
}

.vcn-flashcard-front {
    background: rgba(47, 112, 116, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.vcn-flashcard-front::after {
    content: '↻';
    position: absolute;
    bottom: 10px;
    right: 14px;
    font-size: 0.8em;
    opacity: 0.4;
}

.vcn-flashcard-back {
    background: rgba(34, 88, 90, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transform: rotateY(180deg);
}

.vcn-flashcard-front strong,
.vcn-flashcard-back strong {
    color: var(--color-cta, #F9C537) !important;
}

.vcn-flashcard:hover .vcn-flashcard-inner {
    box-shadow: 0 12px 32px rgba(47, 112, 116, 0.3);
}

/* ==========================================================================
   Native Quiz Engine
   ========================================================================== */
.vcn-quiz-container {
    max-width: 700px;
    text-align: center;
}

.vcn-quiz-header {
    color: var(--color-cta, #F9C537) !important;
    font-size: 1.6em !important;
    margin: 0 0 8px 0;
}

.vcn-quiz-progress {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9em;
    margin-bottom: 24px;
    letter-spacing: 0.05em;
}

.vcn-quiz-question {
    font-size: 1.2em;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 24px;
    line-height: 1.5;
}

.vcn-quiz-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.vcn-quiz-option {
    display: block;
    width: 100%;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    color: #ffffff;
    font-size: 1em;
    text-align: left;
    cursor: pointer;
    transition: all 0.25s ease;
    font-family: Helvetica, Arial, sans-serif;
}

.vcn-quiz-option:hover:not(:disabled) {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateX(4px);
}

.vcn-quiz-option:disabled {
    cursor: default;
    opacity: 0.85;
}

.vcn-quiz-option.is-correct {
    background: rgba(76, 175, 80, 0.3) !important;
    border-color: #4CAF50 !important;
    color: #ffffff !important;
}

.vcn-quiz-option.is-wrong {
    background: rgba(244, 67, 54, 0.3) !important;
    border-color: #F44336 !important;
    color: #ffffff !important;
}

.vcn-quiz-feedback {
    font-size: 1.1em;
    font-weight: 700;
    margin-bottom: 16px;
    min-height: 1.5em;
}

.vcn-quiz-feedback.is-correct {
    color: #66BB6A;
}

.vcn-quiz-feedback.is-wrong {
    color: #EF5350;
}

.vcn-quiz-next {
    display: inline-block;
    padding: 12px 28px;
    background: rgba(47, 112, 116, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    color: #ffffff;
    font-size: 1em;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
    font-family: Helvetica, Arial, sans-serif;
}

.vcn-quiz-next:hover {
    background: rgba(47, 112, 116, 1);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(47, 112, 116, 0.4);
}

/* Quiz Result */
.vcn-quiz-score {
    font-size: 4em;
    margin-bottom: 16px;
}

#vcn-quiz-result h3 {
    color: #ffffff !important;
    font-size: 1.5em;
    margin: 0 0 8px 0;
}

#vcn-quiz-result h3 strong {
    color: var(--color-cta, #F9C537) !important;
}

#vcn-quiz-result p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0 0 24px 0;
}

.vcn-quiz-restart {
    display: inline-block;
    padding: 12px 28px;
    background: rgba(249, 197, 55, 0.85);
    border: none;
    border-radius: 10px;
    color: #1a1a1a;
    font-size: 1em;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.25s ease;
    font-family: Helvetica, Arial, sans-serif;
}

.vcn-quiz-restart:hover {
    background: rgba(249, 197, 55, 1);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(249, 197, 55, 0.4);
}

/* ==========================================================================
   Responsive (Flashcards + Quiz + Modal)
   ========================================================================== */
@media (max-width: 600px) {
    .vcn-artifact-modal {
        padding: 12px;
    }

    .vcn-artifact-modal-inner {
        padding: 16px;
        border-radius: 16px;
    }

    .vcn-flashcards-grid {
        grid-template-columns: 1fr;
    }

    .vcn-flashcard {
        height: 200px;
    }

    .vcn-quiz-question {
        font-size: 1.05em;
    }
}

/* ===== VH KONTER WIDGET ===== */
.vcn-vhkonter-module-wrapper {
    position: relative;
    background: radial-gradient(circle at top right, rgba(45, 225, 194, 0.08), transparent 40%), radial-gradient(circle at bottom left, rgba(139, 92, 246, 0.08), transparent 40%), var(--color-secondary, #22585A) !important;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 32px;
    padding: 48px 40px 40px;
    box-shadow:
        0 16px 48px rgba(0, 0, 0, 0.12),
        inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.vcn-vhkonter-module-label {
    display: inline-block;
    position: absolute;
    top: 16px;
    left: 32px;
    font-size: 0.75em;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #ffffff !important;
    background-color: var(--color-youth-coral, #FF4E72) !important;
    padding: 4px 12px;
    border-radius: 12px;
    pointer-events: none;
}

@media (max-width: 600px) {
    .vcn-vhkonter-module-wrapper {
        padding: 40px 16px 24px;
        border-radius: 24px;
    }

    .vcn-vhkonter-module-label {
        left: 20px;
        top: 12px;
        font-size: 0.7em;
    }
}

/* --- Outer Grid --------------------------------------------------------- */
.vcn-vhkonter-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    width: 100%;
}

/* --- Card (Grid Stacking Container) ------------------------------------- */
.vcn-vhkonter-card {
    display: grid;
    /* enables grid-area stacking */
    border-radius: 24px;
    overflow: hidden;
    cursor: pointer;
    transition: box-shadow 0.3s ease;
}

.vcn-vhkonter-card:hover {
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.15), 0 0 0 1px rgba(0, 212, 255, 0.3) !important;
}

/* Hero card spans full width */
.vcn-vhkonter-hero {
    grid-column: 1 / -1;
}

/* --- Front Layer (Quick Bite, always visible) — ELEVATED on dark wrapper */
.vcn-vhkonter-front {
    grid-area: 1 / 1;
    padding: 32px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(28px) saturate(140%);
    -webkit-backdrop-filter: blur(28px) saturate(140%);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    color: #ffffff;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

/* --- Back Layer (Detail Overlay, hidden until hover) — ELEVATED */
.vcn-vhkonter-back {
    grid-area: 1 / 1;
    padding: 32px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(32px) saturate(150%);
    -webkit-backdrop-filter: blur(32px) saturate(150%);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    color: #ffffff;
    overflow-y: auto;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
    /* Hidden by default */
    opacity: 0;
    pointer-events: none;
    z-index: 10;
    transition: opacity 0.3s ease;
}

/* Reveal overlay on hover */
.vcn-vhkonter-card:hover .vcn-vhkonter-back {
    opacity: 1;
    pointer-events: auto;
}

/* --- Typography --------------------------------------------------------- */
.vcn-vhkonter-title {
    color: #ffffff !important;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 10px;
    margin-bottom: 15px;
    font-size: 1.4em !important;
}

.vcn-vhkonter-detail {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    font-size: 1em;
}

.vcn-vhkonter-detail strong {
    color: var(--color-cta) !important;
}

.vcn-vhkonter-detail em {
    color: #ffb4a2 !important;
    font-style: normal;
    text-decoration: underline;
}

.vcn-vhkonter-front p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    flex: 1;
}

.vcn-vhkonter-hint {
    display: block;
    margin-top: auto;
    padding-top: 12px;
    text-align: right;
    font-size: 0.85em;
    font-weight: 600;
    opacity: 0.7;
    color: var(--color-youth-ice, #00D4FF) !important;
}

/* --- Back Layer Typography: left-align for body text readability ------- */
.vcn-vhkonter-back {
    text-align: left;
}

.vcn-vhkonter-back p,
.vcn-vhkonter-back ul,
.vcn-vhkonter-back ol,
.vcn-vhkonter-back .vcn-vhkonter-detail {
    text-align: left;
}

/* --- Hero card typography boost ----------------------------------------- */
.vcn-vhkonter-hero .vcn-vhkonter-front {
    text-align: center;
}

.vcn-vhkonter-hero .vcn-vhkonter-front .vcn-vhkonter-title {
    color: var(--color-cta) !important;
    font-size: 2.2em !important;
    margin-bottom: 20px;
}

.vcn-vhkonter-hero .vcn-vhkonter-front p {
    font-size: 1.25em;
}

.vcn-vhkonter-hero .vcn-vhkonter-back {
    text-align: center;
}

.vcn-vhkonter-hero .vcn-vhkonter-back .vcn-vhkonter-title {
    color: var(--color-cta) !important;
    font-size: 1.8em !important;
}

/* --- Responsive: Tablet (2 columns) ------------------------------------ */
@media (min-width: 768px) {
    .vcn-vhkonter-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* --- Responsive: Desktop (3 columns) ----------------------------------- */
@media (min-width: 1024px) {
    .vcn-vhkonter-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ==========================================================================
   FHTopspin – YouTube Link Card (Kachel 6)
   ========================================================================== */
.vcn-vhkonter-link-card {
    text-decoration: none !important;
    color: inherit !important;
    display: block;
}

.vcn-vhkonter-video-thumb {
    position: relative;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.vcn-vhkonter-video-bg {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.5;
    z-index: 0;
}

.vcn-vhkonter-video-placeholder {
    width: 100%;
    height: 100%;
}

.vcn-vhkonter-video-thumb .vcn-vhkonter-title,
.vcn-vhkonter-video-thumb p {
    position: relative;
    z-index: 2;
}

/* Play Button Overlay (Glassmorphism) */
.vcn-vhkonter-link-card .vcn-play-button-overlay {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(47, 112, 116, 0.4) !important;
    backdrop-filter: blur(12px) saturate(160%) !important;
    -webkit-backdrop-filter: blur(12px) saturate(160%) !important;
    border: 1px solid rgba(255, 255, 255, 0.5) !important;
    box-shadow:
        0 8px 32px 0 rgba(15, 15, 35, 0.2),
        inset 0 0 0 1px rgba(255, 255, 255, 0.2) !important;
    transition: all 400ms cubic-bezier(0.4, 0, 0.2, 1) !important;
    margin-bottom: 16px;
}

.vcn-vhkonter-link-card:hover .vcn-play-button-overlay {
    transform: scale(1.1) !important;
    background: rgba(47, 112, 116, 0.6) !important;
    border-color: var(--color-youth-ice);
    opacity: 0.9;
    box-shadow:
        0 8px 32px 0 rgba(47, 112, 116, 0.4),
        inset 0 0 0 1px rgba(255, 255, 255, 0.3),
        0 0 20px rgba(47, 112, 116, 0.3) !important;
}

.vcn-vhkonter-link-card:hover .vcn-play-button-overlay svg {
    transform: scale(1.1);
}

/* ==========================================================================
   FHTopspin – Modal Trigger Tiles (Kachel 7 & 8)
   ========================================================================== */
.vcn-vhkonter-modal-trigger {
    cursor: pointer;
    transition: box-shadow 0.3s ease, transform 0.3s ease !important;
}

.vcn-vhkonter-modal-trigger:hover {
    transform: translateY(-4px) !important;
    box-shadow: 0 16px 48px rgba(47, 112, 116, 0.3) !important;
}

.vcn-vhkonter-modal-trigger .vcn-vhkonter-title {
    font-size: 1.3em !important;
}

/* ==========================================================================
   Single Post Content Typography (Bento Wrapper)
   ========================================================================== */

.vcn-single-post-content {
    color: var(--color-surface-text);
    font-family: var(--font-primary, "Inter", sans-serif);
}

.vcn-single-post-content p {
    font-size: 1.1875rem;
    line-height: 1.75;
    margin-bottom: 1.75rem;
    color: rgba(255, 255, 255, 0.92) !important;
    font-weight: 400;
}

.vcn-single-post-content h2 {
    font-family: var(--font-display, "Outfit", sans-serif) !important;
    font-size: 2.25rem !important;
    font-weight: 700 !important;
    line-height: 1.3 !important;
    margin-top: 2.5rem !important;
    margin-bottom: 1.5rem !important;
    color: #ffffff !important;
    letter-spacing: -0.02em !important;
}

.vcn-single-post-content h2:first-child {
    margin-top: 0 !important;
    font-size: 2.75rem !important;
    background: linear-gradient(135deg, #ffffff 0%, #e0e7ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.vcn-single-post-content h3 {
    font-family: var(--font-display, "Outfit", sans-serif) !important;
    font-size: 1.75rem !important;
    font-weight: 600 !important;
    line-height: 1.4 !important;
    margin-top: 2rem !important;
    margin-bottom: 1rem !important;
    color: rgba(255, 255, 255, 0.98) !important;
}

.vcn-single-post-content ul, 
.vcn-single-post-content ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
    color: rgba(255, 255, 255, 0.92) !important;
}

.vcn-single-post-content li {
    font-size: 1.1875rem;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.vcn-single-post-content strong, 
.vcn-single-post-content b {
    font-weight: 700 !important;
    color: #ffffff !important;
}
