/*
    ====================
    EVENT-SEITE: Intro, Projekt-Blöcke, Facts-Box, Tags
    ====================
    Ergänzt style.css nur um Regeln für diese Seite.
    Nutzt die bestehenden CSS-Variablen aus style.css.
    Ersetzt den früheren Inline-<style>-Block in event.html,
    damit diese Seite gleich aufgebaut ist wie socialmedia.css / gallery.css.
*/
.event-intro {
    max-width: 720px;
}

/* Jedes Projekt nutzt .subpage-subtitle (aus style.css) als Titel-Trenner,
   damit der optische Abstand/Rahmen identisch zu fotografie.html /
   creative-innovation.html ist. */
.event-project-caption {
    font-size: 1.05rem;
    line-height: 1.7;
    color: rgba(244, 164, 96, 0.85);
    max-width: 720px;
    margin-bottom: 1.8rem;
}

.event-content p,
.event-content ul {
    max-width: 720px;
}

.tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 1.8rem;
}
.tag {
    display: inline-block;
    background: rgba(244, 164, 96, 0.1);
    border: 1px solid rgba(244, 164, 96, 0.3);
    color: var(--accent-color);
    padding: 7px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
}

.facts-box {
    display: flex;
    flex-wrap: wrap;
    gap: 15px 40px;
    margin-bottom: 2.5rem;
    padding: 20px 25px;
    background: rgba(244, 164, 96, 0.06);
    border: 1px solid rgba(244, 164, 96, 0.2);
    border-radius: 8px;
}
.fact-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--accent-color);
    margin-bottom: 4px;
}
.fact-value {
    color: rgba(244, 164, 96, 0.85);
}

/* Vertikales Format (Shorts) innerhalb des bestehenden .subpage-embed-video
   Wrappers – analog zur 16:9-Variante, aber mit 9:16-Seitenverhältnis. */
.subpage-embed-video.shorts {
    max-width: 320px;
    padding-bottom: 568px; /* entspricht ca. 9:16 bei 320px Breite */
    margin-left: auto;
    margin-right: auto;
}
