/**
 * ============================================================================
 * LINE DANCE CLUB - COUNTRY MEETS MODERN (LDC STYLE)
 * ============================================================================
 * 
 * @package     LDC_productive
 * @module      Global Layout & Boxen
 * @component   ldc_story.css
 * 
 * @description Alles was zu Stories gehört (Bsp The Club About Us)
 * @version     1.0.1
 * @created     2026-08-21
 * ============================================================================
 */

/* --- STORY KOMPONENTEN (Global) --- */
/* Scrollbarer Textbereich */
.ldc-story-content {
    color: var(--ldc-orange) !important;
    flex-grow: 1;
    overflow-y: auto;
    padding-right: 15px;
    margin-bottom: 5px;
    display: flex;
    flex-direction: column;
    width: 100%;
    max-height: 500px;
    scrollbar-width: thin;
    scrollbar-color: var(--ldc-gold) rgba(0, 0, 0, 0.2);
    
}

.ldc-story-content-mit-pic {
    max-height: 200px;
}

/* Kapitel-Überschriften mit Akzent-Pin und dezenter Trennlinie */
.ldc-story-content h3 {
    text-transform: uppercase;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.ldc-story-content h3:first-of-type {
    margin-top: 0;
}

/* Standard Text-Absätze */
.ldc-story-content p {
    font-weight: 200;
    color: var(--ldc-text-light, #ffffff) !important;
    line-height: 1.3;
    margin: 10px;
    margin-bottom: 18px;
    font-size: 1.05rem;
}

.ldc-story-content p strong {
    color: var(--ldc-gold, #f0c674) !important;
    font-weight: 700;
}

.ldc-story-quote {
    background: rgba(0, 0, 0, 0.35);
    border-left: 1px solid var(--ldc-gold);
    border-right: 1px solid var(--ldc-gold);
    margin-bottom: 10px;
    padding: 14px 20px;
    border-radius: 5px;
    color: var(--ldc-gold, #f0c674) !important;
    font-weight: 600 !important;
    text-align: center;
}
    
.ldc-story-highlight {
    text-align: center !important;
    color: var(--ldc-green) !important;
    font-weight: 800 !important;
    font-size: 1.5rem;
    border-radius: 10px;
/*    border-top: 2px solid var(--ldc-green); */
/*    border-bottom: 2px solid var(--ldc-green); */
}

/* Basis-Anpassung für Monitor-Ansicht: Mehr Raum für Content */
@media (min-width: 1024px) {

    /* Optional: Falls du möchtest, dass der Text im Container auf dem PC 
       etwas "luftiger" ist */
    .ldc-story-content, 
    {
        padding: 0px 20px 20px 20px !important;
    }
}

@media (max-width: 768px), (pointer: coarse) {
    .ldc-story-content {
        width: auto !important;
        max-width: none !important;
        height: auto !important;
        max-height: none !important;
        overflow: visible !important; /* Deaktiviert 
        
        /* 3. Starre Außenränder aufheben */
        margin-left: 0 !important;
        margin-right: 0 !important;

        /* 4. Leichtes Innenabstand-Polster (damit der Text nicht am Displayrand klebt) */
        box-sizing: border-box !important;      /*  den inneren Scrollbalken */
    }
    .ldc-story-highlight,
    .ldc-story-quote {
        width: 100%;
        margin: 10px;
        box-sizing: border-box;
    }
    .ldc-story-header-box h2 {
        font-size: 1.4rem;
    }
    .ldc-story-header-box .ldc-story-subtitle {
        font-size: 0.9rem;
    }
    .ldc-story-content h3 {
        font-size: 1.1rem;
    }
    .ldc-story-content p {
        font-size: 0.95rem;
    }
    .ldc-story-content p.ldc-story-highlight {
        font-size: 1.05rem !important;
    }
}
