/**
 * VD Event Single Page Styles
 *
 * Modernes Layout für Event-Einzelseiten (Webinare, Schulungen)
 * Version 2.0 - Full-Width Cards mit SVG Icons
 *
 * @version 2.0.0
 */

/* ============================================
   Event Content Container
   ============================================ */

.single-tribe_events .tribe-events-single-event-description {
    max-width: 900px;
    margin: 0 auto;
}

/* ============================================
   Produktlinie Badge
   ============================================ */

.vd-produktlinie,
.single-tribe_events .tribe-events-single-event-description > p:first-of-type {
    display: inline-block;
    background: linear-gradient(135deg, #f0f4ff 0%, #e8eeff 100%);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    color: #4353ff;
    font-weight: 500;
    margin-bottom: 32px;
}

/* ============================================
   Schulungsvarianten als Full-Width Cards
   ============================================ */

.vd-schulung-variante {
    position: relative;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 32px;
    padding-top: 40px; /* Platz für Preis-Badge */
    margin-bottom: 32px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.vd-schulung-variante:hover {
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

/* Premium-Variante hervorheben */
.vd-schulung-variante.vd-premium {
    border: 2px solid #4353ff;
    padding-top: 48px; /* Extra Platz für Empfohlen-Badge */
}

/* Empfohlen Badge */
.vd-empfohlen-badge,
.vd-schulung-variante.vd-premium::before {
    content: 'Empfohlen';
    position: absolute;
    top: -12px;
    left: 24px;
    background: #4353ff;
    color: white;
    padding: 6px 20px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ============================================
   Preis-Badge - Absolut oben rechts
   ============================================ */

.vd-preis-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #4353ff 0%, #6366f1 100%);
    color: white;
    padding: 12px 20px;
    border-radius: 12px;
    text-align: center;
    min-width: 100px;
    z-index: 10;
}

.vd-preis-badge .vd-preis {
    font-size: 26px;
    font-weight: 700;
    line-height: 1.2;
}

.vd-preis-badge .vd-preis-info {
    font-size: 11px;
    opacity: 0.9;
    margin-top: 2px;
}

.vd-preis-badge .vd-dauer {
    font-size: 12px;
    opacity: 0.85;
    margin-top: 6px;
    padding-top: 6px;
    border-top: 1px solid rgba(255,255,255,0.2);
}

/* ============================================
   SVG Icons
   ============================================ */

.vd-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    flex-shrink: 0;
}

/* Target Icon (First-Practice) */
.vd-icon-target::before {
    content: '';
    width: 28px;
    height: 28px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%234353ff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Ccircle cx='12' cy='12' r='6'/%3E%3Ccircle cx='12' cy='12' r='2'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}

/* Star Icon (Best-Practice) */
.vd-icon-star::before {
    content: '';
    width: 28px;
    height: 28px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%234353ff' stroke='%234353ff' stroke-width='2'%3E%3Cpolygon points='12 2 15.09 8.26 22 9.27 17 14.14 18.18 21.02 12 17.77 5.82 21.02 7 14.14 2 9.27 8.91 8.26 12 2'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}

/* Video Icon (Durchführung) */
.vd-icon-video::before {
    content: '';
    width: 20px;
    height: 20px;
    margin-right: 8px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%234353ff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='2' y='3' width='20' height='14' rx='2' ry='2'/%3E%3Cline x1='8' y1='21' x2='16' y2='21'/%3E%3Cline x1='12' y1='17' x2='12' y2='21'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    display: inline-block;
    vertical-align: middle;
}

/* ============================================
   Varianten-Header mit Icon
   ============================================ */

.vd-variante-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.vd-variante-titel {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0;
}

/* ============================================
   H2 Untertitel - Prominenter
   ============================================ */

.vd-untertitel {
    font-size: 28px !important;
    font-weight: 700 !important;
    color: #1a1a2e !important;
    margin: 0 0 20px 0 !important;
    line-height: 1.3 !important;
    max-width: calc(100% - 160px); /* Platz für Preis-Badge */
}

@media (max-width: 600px) {
    .vd-untertitel {
        font-size: 22px !important;
        max-width: 100%;
        margin-top: 60px !important; /* Platz für Badge auf Mobile */
    }
}

/* ============================================
   Beschreibung
   ============================================ */

.vd-beschreibung {
    color: #374151;
    line-height: 1.7;
    margin-bottom: 24px;
    font-size: 16px;
}

/* ============================================
   Abschnitte innerhalb der Variante
   ============================================ */

.vd-section {
    margin-bottom: 24px;
}

.vd-section:last-child {
    margin-bottom: 0;
}

.vd-section-title {
    font-size: 13px;
    font-weight: 600;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.vd-section p {
    color: #374151;
    line-height: 1.7;
    margin: 0;
}

/* ============================================
   Inhalte-Liste mit Checkmark Icons
   ============================================ */

.vd-inhalte-liste {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 12px;
}

.vd-inhalte-liste li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #374151;
    line-height: 1.5;
    padding-left: 0;
}

.vd-inhalte-liste li::before {
    content: '';
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    background-color: #f0f4ff;
    border-radius: 50%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%234353ff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
    background-size: 14px;
    background-position: center;
    background-repeat: no-repeat;
    margin-top: 2px;
}

/* Optional-Items - Am Ende, anderes Styling */
.vd-inhalte-liste li.vd-optional {
    color: #6b7280;
    font-style: italic;
}

.vd-inhalte-liste li.vd-optional::before {
    background-color: #f3f4f6;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%239ca3af' stroke-width='2'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3C/svg%3E");
    background-size: 16px;
}

/* ============================================
   Durchführungs-Sektion
   ============================================ */

.vd-durchfuehrung {
    background: #f8fafc;
    padding: 16px 20px;
    border-radius: 12px;
    margin-top: 24px;
}

.vd-durchfuehrung p {
    display: flex;
    align-items: center;
    margin: 0;
    font-size: 15px;
}

/* ============================================
   Bilder-Galerie
   ============================================ */

.vd-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin: 40px 0;
}

.vd-gallery img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.vd-gallery img:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* ============================================
   Responsive Anpassungen
   ============================================ */

@media (max-width: 768px) {
    .vd-schulung-variante {
        padding: 20px;
        padding-top: 80px; /* Mehr Platz für Badge */
    }

    .vd-preis-badge {
        top: 16px;
        right: 16px;
        padding: 10px 16px;
    }

    .vd-preis-badge .vd-preis {
        font-size: 22px;
    }

    .vd-variante-header {
        flex-wrap: wrap;
    }

    .vd-gallery {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   Trennlinie
   ============================================ */

.single-tribe_events .tribe-events-single-event-description hr {
    border: none;
    height: 1px;
    background: linear-gradient(90deg, transparent, #e5e7eb, transparent);
    margin: 40px 0;
}

/* ============================================
   Standard Headings im Event-Content
   ============================================ */

.single-tribe_events .tribe-events-single-event-description h2 {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 16px;
}

.single-tribe_events .tribe-events-single-event-description h3 {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a2e;
    margin-top: 32px;
    margin-bottom: 16px;
}

.single-tribe_events .tribe-events-single-event-description h4 {
    font-size: 13px;
    font-weight: 600;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 24px;
    margin-bottom: 8px;
}

/* ============================================
   Standard Listen im Event-Content
   ============================================ */

.single-tribe_events .tribe-events-single-event-description ul:not(.vd-inhalte-liste) {
    list-style: none;
    padding: 0;
    margin: 16px 0;
}

.single-tribe_events .tribe-events-single-event-description ul:not(.vd-inhalte-liste) li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    line-height: 1.6;
    color: #374151;
}

.single-tribe_events .tribe-events-single-event-description ul:not(.vd-inhalte-liste) li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    background: #4353ff;
    border-radius: 50%;
}

/* ============================================
   Event Featured Image - Full Width
   ============================================ */

.single-tribe_events .tribe-events-event-image {
    text-align: center;
    margin-bottom: 32px;
    width: 100%;
}

.single-tribe_events .tribe-events-event-image img {
    max-width: 100%;
    width: 100%;
    height: auto;
    border-radius: 0;
    box-shadow: none;
}

/* ============================================
   Praxis-Juwel Webinar Styles
   ============================================ */

/* Praxis-Juwel Badge */
.vd-praxis-juwel-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    color: #92400e;
    font-weight: 600;
    margin-bottom: 16px;
}

.vd-praxis-juwel-badge::before {
    content: '';
    width: 18px;
    height: 18px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23f59e0b'%3E%3Cpath d='M12 2L9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2z'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}

/* Tagline/Zitat */
.vd-tagline {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a2e;
    font-style: italic;
    margin: 24px 0;
    padding-left: 20px;
    border-left: 4px solid #4353ff;
    line-height: 1.4;
}

@media (max-width: 600px) {
    .vd-tagline {
        font-size: 20px;
    }
}

/* Intro Text */
.vd-intro {
    font-size: 17px;
    color: #374151;
    line-height: 1.8;
    margin-bottom: 24px;
}

/* Lernziele Liste */
.vd-lernziele {
    list-style: none;
    padding: 0;
    margin: 24px 0;
    display: grid;
    gap: 16px;
}

.vd-lernziele li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    color: #374151;
    line-height: 1.6;
    font-size: 16px;
}

.vd-lernziele li::before {
    content: '';
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    background-color: #ecfdf5;
    border-radius: 50%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2310b981' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M9 12l2 2 4-4'/%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3C/svg%3E");
    background-size: 20px;
    background-position: center;
    background-repeat: no-repeat;
    margin-top: 2px;
}

/* Info-Grid (Zielgruppe, Referent, Dauer, Preis) */
.vd-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 32px 0;
    padding: 24px;
    background: #f8fafc;
    border-radius: 16px;
}

.vd-info-item {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.vd-info-label {
    font-size: 12px;
    font-weight: 600;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.vd-info-value {
    font-size: 15px;
    color: #1a1a2e;
    line-height: 1.5;
}

.vd-info-value strong {
    font-weight: 600;
}

/* Referent Card */
.vd-referent {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    margin: 24px 0;
}

.vd-referent-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, #4353ff 0%, #6366f1 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.vd-referent-avatar::before {
    content: '';
    width: 32px;
    height: 32px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M12 12c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm0 2c-2.67 0-8 1.34-8 4v2h16v-2c0-2.66-5.33-4-8-4z'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}

.vd-referent-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.vd-referent-info {
    flex: 1;
}

.vd-referent-name {
    font-size: 17px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 4px 0;
}

.vd-referent-title {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.4;
}

/* Kompakt-Webinar Badge */
.vd-format-kompakt {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #f0f4ff;
    padding: 10px 16px;
    border-radius: 10px;
    font-size: 14px;
    color: #4353ff;
    font-weight: 500;
}

.vd-format-kompakt::before {
    content: '';
    width: 18px;
    height: 18px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%234353ff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpolyline points='12 6 12 12 16 14'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}

/* Zielgruppe Highlight */
.vd-zielgruppe {
    padding: 20px 24px;
    background: linear-gradient(135deg, #faf5ff 0%, #f3e8ff 100%);
    border-radius: 12px;
    border-left: 4px solid #8b5cf6;
    margin: 24px 0;
}

.vd-zielgruppe-title {
    font-size: 13px;
    font-weight: 600;
    color: #7c3aed;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.vd-zielgruppe p {
    margin: 0;
    color: #4c1d95;
    line-height: 1.6;
}

/* ============================================
   PRAXIS-WORKSHOP STYLE
   Inspiration: verfahrensdokumentation.pro/?page_id=23078
   ============================================ */

/* Workshop Section Container */
.vd-workshop-section {
    position: relative;
    padding: 40px 0;
    margin-bottom: 20px;
}

.vd-workshop-section.vd-premium-section {
    background: linear-gradient(135deg, #f8faff 0%, #f0f4ff 100%);
    padding: 40px 32px;
    border-radius: 20px;
    margin: 40px 0;
}

/* Section Label (gelb) */
.vd-section-label {
    display: inline-block;
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    color: #92400e;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 8px 16px;
    border-radius: 6px;
    margin-bottom: 20px;
}

/* Workshop Title (große H2) */
.vd-workshop-title {
    font-size: 32px !important;
    font-weight: 700 !important;
    color: #1a1a2e !important;
    line-height: 1.3 !important;
    margin: 0 0 24px 0 !important;
}

@media (max-width: 768px) {
    .vd-workshop-title {
        font-size: 26px !important;
    }
}

/* Lead Text (Zielrichtung) */
.vd-lead {
    font-size: 18px;
    font-weight: 500;
    color: #374151;
    line-height: 1.7;
    margin-bottom: 20px;
}

/* Durchführungstext */
.vd-durchfuehrung-text {
    font-size: 16px;
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 24px;
    padding: 16px 20px;
    background: #f9fafb;
    border-radius: 10px;
    border-left: 4px solid #4353ff;
}

/* CTA Button (gelb) */
.vd-cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white !important;
    font-size: 16px;
    font-weight: 600;
    padding: 14px 28px;
    border-radius: 10px;
    text-decoration: none !important;
    transition: transform 0.2s, box-shadow 0.2s;
    margin-top: 16px;
}

.vd-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(245, 158, 11, 0.35);
    color: white !important;
}

/* Feature Grid (3 Spalten) */
.vd-feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin: 40px 0;
    padding: 32px;
    background: #f8fafc;
    border-radius: 16px;
}

@media (max-width: 900px) {
    .vd-feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .vd-feature-grid {
        grid-template-columns: 1fr;
        padding: 20px;
    }
}

/* Feature Box */
.vd-feature-box {
    text-align: center;
    padding: 24px 16px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s, box-shadow 0.2s;
}

.vd-feature-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.vd-feature-box h4 {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 16px 0 8px 0;
}

.vd-feature-box p {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.5;
    margin: 0;
}

/* Feature Icons */
.vd-feature-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto;
    background: linear-gradient(135deg, #f0f4ff 0%, #e8eeff 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vd-feature-icon::before {
    content: '';
    width: 28px;
    height: 28px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

/* Interface Icon */
.vd-icon-interface::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%234353ff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='2' y='3' width='20' height='14' rx='2' ry='2'/%3E%3Cline x1='8' y1='21' x2='16' y2='21'/%3E%3Cline x1='12' y1='17' x2='12' y2='21'/%3E%3C/svg%3E");
}

/* Mandanten Icon */
.vd-icon-mandanten::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%234353ff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M17 21v-2a4 4 0 0 0-4-4H5a4 4 0 0 0-4 4v2'/%3E%3Ccircle cx='9' cy='7' r='4'/%3E%3Cpath d='M23 21v-2a4 4 0 0 0-3-3.87'/%3E%3Cpath d='M16 3.13a4 4 0 0 1 0 7.75'/%3E%3C/svg%3E");
}

/* Praxis Icon */
.vd-icon-praxis::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%234353ff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 2L2 7l10 5 10-5-10-5z'/%3E%3Cpath d='M2 17l10 5 10-5'/%3E%3Cpath d='M2 12l10 5 10-5'/%3E%3C/svg%3E");
}

/* Workflow Icon */
.vd-icon-workflow::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%234353ff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='22 12 18 12 15 21 9 3 6 12 2 12'/%3E%3C/svg%3E");
}

/* Tipps Icon */
.vd-icon-tipps::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%234353ff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M9 18l6-6-6-6'/%3E%3Cpath d='M15 18l6-6-6-6'/%3E%3C/svg%3E");
}

/* Positionierung Icon */
.vd-icon-positionierung::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%234353ff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cline x1='2' y1='12' x2='22' y2='12'/%3E%3Cpath d='M12 2a15.3 15.3 0 0 1 4 10 15.3 15.3 0 0 1-4 10 15.3 15.3 0 0 1-4-10 15.3 15.3 0 0 1 4-10z'/%3E%3C/svg%3E");
}

/* Preis Info Box */
.vd-preis-info-box {
    display: flex;
    justify-content: center;
    gap: 48px;
    padding: 24px 32px;
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 14px;
    margin: 24px 0 40px 0;
}

.vd-preis-info-box.vd-premium {
    border-color: #4353ff;
    background: linear-gradient(135deg, #fafaff 0%, #f5f7ff 100%);
}

@media (max-width: 500px) {
    .vd-preis-info-box {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

.vd-preis-details {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.vd-preis-label {
    font-size: 12px;
    font-weight: 600;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.vd-preis-value {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a2e;
}

.vd-preis-value.vd-highlight {
    color: #4353ff;
}

.vd-preis-suffix {
    font-size: 13px;
    color: #6b7280;
}

/* Empfohlen Badge (für Premium-Section) */
.vd-workshop-section .vd-empfohlen-badge {
    position: absolute;
    top: -12px;
    right: 32px;
    background: #4353ff;
    color: white;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 8px 20px;
    border-radius: 20px;
}

/* ============================================
   PRAXIS-WORKSHOP STYLE v2
   Software-Onboarding Seminar Layout
   ============================================ */

/* Hero Section */
.vd-hero-section {
    text-align: center;
    padding: 48px 24px;
    margin-bottom: 40px;
}

.vd-hero-title {
    font-size: 42px;
    font-weight: 700;
    color: #1a1a2e;
    line-height: 1.2;
    margin: 0 0 20px 0;
}

@media (max-width: 768px) {
    .vd-hero-title {
        font-size: 32px;
    }
}

.vd-highlight-text {
    color: #009ee3;
}

.vd-hero-lead {
    font-size: 18px;
    color: #6b7280;
    max-width: 700px;
    margin: 0 auto 24px;
    line-height: 1.7;
}

.vd-hero-badges {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.vd-hero-badge {
    font-size: 14px;
    font-weight: 500;
    color: #6b7280;
}

.vd-hero-format {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 28px;
    font-size: 15px;
    color: #6b7280;
}

.vd-format-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

/* Zielgruppe Section (hellblauer Hintergrund) */
.vd-zielgruppe-section {
    background: #F5F5FF;
    padding: 40px 32px;
    border-radius: 20px;
    margin-bottom: 40px;
}

.vd-section-badge {
    display: inline-block;
    background: #FFCE00;
    color: #1a1a2e;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 6px 14px;
    border-radius: 6px;
    margin-bottom: 16px;
}

.vd-section-heading {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 16px 0;
}

.vd-section-text {
    font-size: 16px;
    color: #6b7280;
    line-height: 1.7;
    max-width: 800px;
}

/* Inhalte Section */
.vd-inhalte-section {
    margin-bottom: 48px;
}

.vd-inhalte-section .vd-section-heading {
    text-align: center;
    margin-bottom: 32px;
}

/* Feature Box Icon als Emoji-Größe */
.vd-feature-box .vd-feature-icon {
    width: auto;
    height: auto;
    background: none;
    font-size: 40px;
    line-height: 1;
}

.vd-feature-box .vd-feature-icon::before {
    display: none;
}

/* Modul Section */
.vd-modul-section {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 40px;
    position: relative;
}

.vd-modul-section.vd-premium {
    border: 2px solid #009ee3;
    padding-top: 56px;
}

.vd-modul-badge {
    display: inline-block;
    background: #FFCE00;
    color: #1a1a2e;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 6px 14px;
    border-radius: 6px;
    margin-bottom: 16px;
}

.vd-modul-badge.vd-premium-badge {
    background: linear-gradient(135deg, #009ee3 0%, #0077b6 100%);
    color: #ffffff;
}

.vd-modul-title {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 20px 0;
    line-height: 1.3;
}

.vd-modul-beschreibung {
    font-size: 16px;
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: 24px;
}

.vd-inhalte-heading {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 24px 0 12px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Mehrwert-Box (Best-Practice) */
.vd-mehrwert-box {
    background: linear-gradient(135deg, #e0f2fe 0%, #bae6fd 100%);
    border-left: 4px solid #009ee3;
    padding: 20px 24px;
    border-radius: 0 12px 12px 0;
    margin-bottom: 24px;
}

.vd-mehrwert-box h4 {
    font-size: 15px;
    font-weight: 700;
    color: #0077b6;
    margin: 0 0 12px 0;
}

.vd-mehrwert-liste {
    list-style: none;
    padding: 0;
    margin: 0;
}

.vd-mehrwert-liste li {
    padding-left: 24px;
    position: relative;
    margin-bottom: 8px;
    font-size: 15px;
    color: #374151;
    line-height: 1.6;
}

.vd-mehrwert-liste li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #009ee3;
    font-weight: 700;
}

/* Preis Info Box - Flexbox Layout */
.vd-preis-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

/* Empfohlen Badge für Modul Section */
.vd-modul-section .vd-empfohlen-badge {
    position: absolute;
    top: -12px;
    right: 24px;
    background: #009ee3;
    color: white;
    font-size: 12px;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 20px;
}

/* Responsive */
@media (max-width: 768px) {
    .vd-modul-section {
        padding: 24px 20px;
    }

    .vd-modul-section.vd-premium {
        padding-top: 48px;
    }

    .vd-zielgruppe-section {
        padding: 28px 20px;
    }

    .vd-hero-section {
        padding: 32px 16px;
    }
}

/* ============================================
   STARTSEITEN-PATTERN (v3)
   Subheadline + Headline mit kursivem Highlight
   ============================================ */

/* Subheadline - Hellblauer Pill-Badge */
.vd-subheadline {
    display: inline-block;
    background: #e0f2fe;
    color: #0369a1;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 8px 20px;
    border-radius: 30px;
    margin-bottom: 16px;
}

/* Premium Variante - Blauer Gradient */
.vd-subheadline.vd-premium-subheadline {
    background: linear-gradient(135deg, #009ee3 0%, #0077b6 100%);
    color: #ffffff;
}

/* Main Headline - Zentriert */
.vd-main-headline {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a2e;
    line-height: 1.3;
    margin: 0 0 24px 0;
    text-align: center;
}

@media (max-width: 768px) {
    .vd-main-headline {
        font-size: 28px;
    }
}

/* Highlight Text - Blau + Kursiv */
.vd-highlight-italic {
    color: #009ee3;
    font-style: italic;
}

/* Section Wrapper - Zentriert */
.vd-section-wrapper {
    text-align: center;
    padding: 48px 24px;
    margin-bottom: 40px;
}

@media (max-width: 768px) {
    .vd-section-wrapper {
        padding: 32px 16px;
    }
}

.tribe-events-schedule {display:none !important;}