/* ─── Ironhorse Kalender — ARD-Look ─────────────────────────────────────────── */

:root {
    --ifk-bg:           #0d0d0d;
    --ifk-surface:      #1a1a2e;
    --ifk-card:         #16213e;
    --ifk-card-hover:   #1e2d50;
    --ifk-accent:       #e94560;
    --ifk-text:         #ffffff;
    --ifk-text-muted:   #9898b0;
    --ifk-border:       rgba(255, 255, 255, 0.08);
    --ifk-radius:       4px;
    --ifk-transition:   0.2s ease;
}

/* ═══════════════════════════════════════════════════════════════════════════════
   EVENTLISTE — Shortcode [ife_kalender]
   ═══════════════════════════════════════════════════════════════════════════════ */

.ife-kalender {
    padding: 2rem 0;
}

.ife-kalender__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.ife-kalender__empty {
    color: var(--ifk-text-muted);
    text-align: center;
    padding: 4rem 0;
    font-size: 1rem;
}

/* ─── Kachel ─────────────────────────────────────────────────────────────────── */

.ife-card {
    background:    var(--ifk-card);
    border-radius: var(--ifk-radius);
    overflow:      hidden;
    transition:    transform var(--ifk-transition), box-shadow var(--ifk-transition), background var(--ifk-transition);
}

.ife-card:hover {
    transform:  translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.5);
    background: var(--ifk-card-hover);
}

.ife-card__link {
    display:         block;
    text-decoration: none;
    color:           inherit;
}

/* ─── Bild 16:9 ───────────────────────────────────────────────────────────────── */

.ife-card__image-wrap {
    position:    relative;
    width:       100%;
    padding-top: 56.25%;
    overflow:    hidden;
    background:  var(--ifk-surface);
}

.ife-card__image {
    position:   absolute;
    inset:      0;
    width:      100%;
    height:     100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.ife-card:hover .ife-card__image {
    transform: scale(1.04);
}

.ife-card__image--placeholder {
    position:   absolute;
    inset:      0;
    background: linear-gradient(135deg, var(--ifk-surface) 0%, #0f1a30 100%);
}

.ife-card__image--placeholder::after {
    content:          '🎪';
    position:         absolute;
    inset:            0;
    display:          flex;
    align-items:      center;
    justify-content:  center;
    font-size:        3rem;
    opacity:          0.25;
}

/* ─── Kachelinhalt ────────────────────────────────────────────────────────────── */

.ife-card__body {
    padding: 1rem 1.25rem 1.5rem;
}

.ife-card__date {
    color:          var(--ifk-accent);
    font-size:      0.75rem;
    font-weight:    700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    margin:         0 0 0.5rem;
    line-height:    1.4;
}

.ife-card__title {
    color:       var(--ifk-text);
    font-size:   1.05rem;
    font-weight: 700;
    margin:      0 0 0.6rem;
    line-height: 1.35;
}

.ife-card__location {
    color:          var(--ifk-text-muted);
    font-size:      0.75rem;
    margin:         0 0 0.5rem;
    line-height:    1.4;
}

.ife-card__excerpt {
    color:                   var(--ifk-text-muted);
    font-size:               0.875rem;
    line-height:             1.6;
    margin:                  0;
    display:                 -webkit-box;
    -webkit-line-clamp:      3;
    -webkit-box-orient:      vertical;
    overflow:                hidden;
}

/* ─── Vergangene Events (+past) ───────────────────────────────────────────────── */

.ife-card--past {
    opacity: 0.45;
}

.ife-card--past:hover {
    opacity: 0.65;
}

/* ─── Listen-Ansicht (view:list) ─────────────────────────────────────────────── */

.ife-kalender--list .ife-kalender__grid {
    display: none;
}

.ife-kalender__list {
    list-style: none;
    margin:     0;
    padding:    8px 0;
}

.ife-list-item {
    border-bottom: 1px solid var(--ifk-border);
    transition:    background var(--ifk-transition);
}

.ife-list-item:last-child {
    border-bottom: none;
}

.ife-list-item:hover {
    background: var(--ifk-card);
}

.ife-list-item__link {
    display:         flex;
    align-items:     baseline;
    gap:             16px;
    padding:         12px 4px;
    text-decoration: none;
    color:           inherit;
}

.ife-list-item__date {
    color:       var(--ifk-accent);
    font-size:   0.75rem;
    font-weight: 700;
    white-space: nowrap;
    min-width:   160px;
    flex-shrink: 0;
}

.ife-list-item__location {
    color:        var(--ifk-text-muted);
    font-size:    0.75rem;
    min-width:    110px;
    flex-shrink:  0;
    white-space:  nowrap;
    overflow:     hidden;
    text-overflow: ellipsis;
}

.ife-list-item__title {
    color:       var(--ifk-text);
    font-size:   0.95rem;
    font-weight: 700;
    line-height: 1.3;
}

.ife-list-item--past {
    opacity: 0.45;
}

/* ═══════════════════════════════════════════════════════════════════════════════
   EINZELANSICHT — /e/{slug}
   ═══════════════════════════════════════════════════════════════════════════════ */

.ife-event-single {
    background: var(--ifk-bg);
    color:      var(--ifk-text);
    min-height: 80vh;
}

/* ─── Hero ────────────────────────────────────────────────────────────────────── */

.ife-event-page .ife-event-single__hero {
    /* Full-width breakout — funktioniert mit den meisten Themes */
    width:     100vw;
    position:  relative;
    left:      50%;
    transform: translateX(-50%);
    overflow:  hidden;
}

.ife-event-single__hero-img {
    display:    block;
    width:      100%;
    height:     60vh;
    min-height: 320px;
    max-height: 600px;
    object-fit: cover;
}

.ife-event-single__hero-overlay {
    position:   absolute;
    inset:      0;
    background: linear-gradient(
        to top,
        rgba(13, 13, 13, 0.92) 0%,
        rgba(13, 13, 13, 0.35) 50%,
        transparent             100%
    );
}

.ife-event-single__hero-content {
    position:  absolute;
    bottom:    0;
    left:      0;
    right:     0;
    padding:   2rem 2.5rem 2.5rem;
    max-width: 1000px;
    margin:    0 auto;
}

/* ─── Header (ohne Bild) ──────────────────────────────────────────────────────── */

.ife-event-single__header {
    padding:    3rem 0 2rem;
    max-width:  900px;
    margin:     0 auto;
    padding-left:  1.5rem;
    padding-right: 1.5rem;
}

/* ─── Datum + Zeit ────────────────────────────────────────────────────────────── */

.ife-event-single__date {
    color:          var(--ifk-accent);
    font-size:      0.85rem;
    font-weight:    700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    margin:         0 0 0.75rem;
    display:        flex;
    align-items:    center;
    gap:            0.75rem;
    flex-wrap:      wrap;
}

.ife-event-single__time {
    color:          var(--ifk-text-muted);
    font-weight:    400;
    letter-spacing: 0;
    text-transform: none;
}

/* ─── Titel ───────────────────────────────────────────────────────────────────── */

.ife-event-single__title {
    color:       var(--ifk-text);
    font-size:   clamp(1.75rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.15;
    margin:      0;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.6);
}

/* ─── Body ────────────────────────────────────────────────────────────────────── */

.ife-event-single__body {
    max-width: 900px;
    margin:    0 auto;
    padding:   2.5rem 1.5rem 4rem;
}

.ife-event-single__stages {
    color:       var(--ifk-text-muted);
    font-size:   0.875rem;
    margin:      0 0 1.75rem;
    line-height: 1.5;
    display:     flex;
    flex-wrap:   wrap;
    align-items: center;
    gap:         0.5rem;
}

.ife-event-single__stages-label {
    color:       var(--ifk-text);
    font-weight: 600;
}

.ife-stage-btn {
    background:    transparent;
    border:        1px solid var(--ifk-border, #333);
    color:         var(--ifk-text-muted);
    font-size:     0.82rem;
    padding:       3px 12px;
    border-radius: 20px;
    cursor:        pointer;
    transition:    border-color 0.15s, color 0.15s;
}
.ife-stage-btn:hover {
    border-color: var(--ifk-accent, #e94560);
    color:        var(--ifk-accent, #e94560);
}

/* ─── Eventbeschreibung ───────────────────────────────────────────────────────── */

.ife-event-single__content {
    color:         var(--ifk-text-muted);
    font-size:     1rem;
    line-height:   1.75;
    margin-bottom: 3rem;
}

.ife-event-single__content p:first-child { margin-top: 0; }
.ife-event-single__content p:last-child  { margin-bottom: 0; }

.ife-event-single__content a {
    color:           var(--ifk-accent);
    text-decoration: underline;
}

/* ─── Ort ─────────────────────────────────────────────────────────────────────── */

.ife-event-single__location {
    display:       flex;
    align-items:   baseline;
    gap:           0.4rem;
    flex-wrap:     wrap;
    margin-bottom: 1.25rem;
    font-size:     0.9rem;
}

.ife-event-single__location-pin {
    flex-shrink: 0;
}

.ife-event-single__location-name {
    color:       var(--ifk-text);
    font-weight: 600;
}

.ife-event-single__location-address {
    color: var(--ifk-text-muted);
}

.ife-event-single__location-address::before {
    content: '· ';
}

/* ─── Karte ───────────────────────────────────────────────────────────────────── */

.ife-event-single__map {
    margin-bottom: 2.5rem;
    border-radius: var(--ifk-radius);
    overflow:      hidden;
    border:        1px solid var(--ifk-border);
}

.ife-event-single__map iframe {
    display: block;
    width:   100%;
    height:  320px;
    border:  0;
}

.ife-leaflet-map {
    display: block;
    width:   100%;
    height:  320px;
}

/* Leaflet Popup */
.leaflet-popup-content-wrapper {
    background: #1a1a2e;
    color:      #e0e0e0;
    border:     1px solid #2a2a4a;
    border-radius: 6px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.5);
}
.leaflet-popup-tip { background: #1a1a2e; }
.leaflet-popup-content { font-size: 0.88rem; line-height: 1.4; }

/* Custom Marker Pins */
.ife-map-pin {
    border-radius: 50%;
    border: 2px solid #fff;
    box-shadow: 0 2px 6px rgba(0,0,0,0.5);
}
.ife-map-pin--event {
    width:  20px;
    height: 20px;
    background: #e94560;
}
.ife-map-pin--stage {
    width:  16px;
    height: 16px;
    background: #f0a500;
}

.ife-event-single__map-link {
    display:          block;
    padding:          0.5rem 0.75rem;
    background:       var(--ifk-surface);
    color:            var(--ifk-text-muted);
    font-size:        0.75rem;
    text-decoration:  none;
    text-align:       right;
    transition:       color var(--ifk-transition);
}

.ife-event-single__map-link:hover {
    color: var(--ifk-text);
}

/* ─── Timetable-Bereich ───────────────────────────────────────────────────────── */

.ife-event-single__timetable {
    margin-top: 2rem;
}

.ife-event-single__section-title {
    color:          var(--ifk-text);
    font-size:      1.25rem;
    font-weight:    700;
    margin:         0 0 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom:  1px solid var(--ifk-border);
    letter-spacing: 0.03em;
}

/* ─── Tagenavigation (mehrtägige Events) ─────────────────────────────────────── */

.ife-timetable-nav {
    display:   flex;
    flex-wrap: wrap;
    gap:       0.5rem;
    margin-bottom: 1.5rem;
}

.ife-timetable-nav__btn {
    background:     var(--ifk-surface);
    color:          var(--ifk-text-muted);
    border:         1px solid var(--ifk-border);
    border-radius:  var(--ifk-radius);
    padding:        0.45rem 0.9rem;
    font-size:      0.8rem;
    font-weight:    600;
    letter-spacing: 0.03em;
    cursor:         pointer;
    transition:     background var(--ifk-transition), color var(--ifk-transition), border-color var(--ifk-transition);
    font-family:    inherit;
}

.ife-timetable-nav__btn:hover {
    background:   var(--ifk-card);
    color:        var(--ifk-text);
    border-color: rgba(255, 255, 255, 0.2);
}

.ife-timetable-nav__btn.is-active {
    background:   var(--ifk-accent);
    color:        #fff;
    border-color: var(--ifk-accent);
}

.ife-timetable-panel.is-hidden {
    display: none;
}

.ife-timetable-panel__placeholder {
    color:     var(--ifk-text-muted);
    font-size: 0.875rem;
    padding:   1rem 0;
}

/* ═══════════════════════════════════════════════════════════════════════════════
   ARTIST-PROFILSEITE — /artist/{slug}
   ═══════════════════════════════════════════════════════════════════════════════ */

.ife-artist-single {
    background: var(--ifk-bg);
    color:      var(--ifk-text);
    min-height: 80vh;
}

.ife-artist-single__inner {
    max-width: 900px;
    margin:    0 auto;
    padding:   3rem 1.5rem 5rem;
}

/* ─── Header: Avatar + Meta nebeneinander ──────────────────────────────────── */

.ife-artist-single__header {
    display:     flex;
    gap:         2.5rem;
    align-items: flex-start;
    margin-bottom: 3rem;
}

.ife-artist-single__avatar {
    flex-shrink: 0;
    width:       200px;
    height:      200px;
    border-radius: var(--ifk-radius);
    overflow:    hidden;
    background:  var(--ifk-surface);
}

.ife-artist-single__avatar-img {
    display:    block;
    width:      100%;
    height:     100%;
    object-fit: cover;
}

.ife-artist-single__meta {
    flex: 1;
    min-width: 0;
    padding-top: 0.25rem;
}

.ife-artist-single__name {
    color:       var(--ifk-text);
    font-size:   clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 800;
    line-height: 1.1;
    margin:      0 0 1rem;
}

.ife-artist-single__kurz {
    color:       var(--ifk-text-muted);
    font-size:   1rem;
    line-height: 1.65;
    margin:      0 0 1.5rem;
}

/* ─── Social-Links ─────────────────────────────────────────────────────────── */

.ife-artist-single__social {
    display:   flex;
    flex-wrap: wrap;
    gap:       0.5rem;
}

.ife-artist-single__social-link {
    display:         inline-block;
    padding:         0.3rem 0.75rem;
    background:      var(--ifk-surface);
    color:           var(--ifk-text-muted);
    border:          1px solid var(--ifk-border);
    border-radius:   var(--ifk-radius);
    font-size:       0.8rem;
    font-weight:     600;
    text-decoration: none;
    transition:      background var(--ifk-transition), color var(--ifk-transition), border-color var(--ifk-transition);
}

.ife-artist-single__social-link:hover {
    background:   var(--ifk-card-hover);
    color:        var(--ifk-accent);
    border-color: var(--ifk-accent);
}

/* ─── Promovideo ───────────────────────────────────────────────────────────── */

.ife-artist-single__video {
    margin-bottom: 3rem;
    border-radius: var(--ifk-radius);
    overflow:      hidden;
    background:    var(--ifk-surface);
    aspect-ratio:  16 / 9;
}

.ife-artist-single__video iframe,
.ife-artist-single__video embed,
.ife-artist-single__video object {
    display: block;
    width:   100%;
    height:  100%;
    border:  0;
}

.ife-artist-single__video p {
    padding: 1rem;
    margin:  0;
}

.ife-artist-single__video a {
    color: var(--ifk-accent);
}

/* ─── Langbeschreibung ─────────────────────────────────────────────────────── */

.ife-artist-single__content {
    color:       var(--ifk-text-muted);
    font-size:   1rem;
    line-height: 1.75;
}

.ife-artist-single__content p:first-child { margin-top: 0; }
.ife-artist-single__content p:last-child  { margin-bottom: 0; }

.ife-artist-single__content a {
    color:           var(--ifk-accent);
    text-decoration: underline;
}

/* ═══════════════════════════════════════════════════════════════════════════════
   ARTIST SLOTS — Wann & Wo
   ═══════════════════════════════════════════════════════════════════════════════ */

.ife-artist-slots {
    margin-top:  2.5rem;
    padding-top: 2rem;
    border-top:  1px solid rgba(255,255,255,0.08);
}

.ife-artist-slots__title {
    font-size:      0.8rem;
    font-weight:    700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color:          var(--ifk-text-muted);
    margin:         0 0 1.1rem;
}

.ife-artist-slots__list {
    list-style: none;
    margin:     0;
    padding:    0;
    display:    flex;
    flex-direction: column;
    gap:        0.65rem;
}

.ife-artist-slots__item {
    display:     flex;
    align-items: center;
    flex-wrap:   wrap;
    gap:         0.4rem;
    font-size:   0.95rem;
    line-height: 1.4;
}

.ife-artist-slots__item--past {
    opacity: 0.38;
}

.ife-artist-slots__date {
    color:       var(--ifk-accent);
    font-weight: 600;
}

.ife-artist-slots__sep {
    color:    rgba(255,255,255,0.25);
    font-size: 0.85em;
}

.ife-artist-slots__time {
    color: var(--ifk-text);
}

.ife-artist-slots__stage {
    background:    rgba(255,255,255,0.09);
    border-radius: 100px;
    padding:       0.1em 0.6em;
    font-size:     0.82rem;
    color:         var(--ifk-text-muted);
}

.ife-artist-slots__event {
    color:           var(--ifk-text-muted);
    font-size:       0.88rem;
    text-decoration: none;
}

.ife-artist-slots__event:hover {
    color: var(--ifk-text);
}

.ife-artist-slots__ical {
    text-decoration: none;
    font-size:       0.85rem;
    opacity:         0.55;
    transition:      opacity 0.15s;
    margin-left:     0.2rem;
}

.ife-artist-slots__ical:hover {
    opacity: 1;
}

/* ─── Share-Button ─────────────────────────────────────────────────────────── */

.ife-artist-single__actions {
    display:     flex;
    align-items: center;
    flex-wrap:   wrap;
    gap:         0.5rem;
    margin-top:  0.5rem;
}

.ife-artist-single__share,
.ife-artist-single__qr-btn {
    display:       inline-flex;
    align-items:   center;
    gap:           0.3em;
    padding:       0.3rem 0.75rem;
    background:    transparent;
    color:         var(--ifk-text-muted);
    border:        1px solid var(--ifk-border);
    border-radius: var(--ifk-radius);
    font-size:     0.8rem;
    font-weight:   600;
    cursor:        pointer;
    transition:    background var(--ifk-transition), color var(--ifk-transition), border-color var(--ifk-transition);
}

.ife-artist-single__share:hover,
.ife-artist-single__qr-btn:hover {
    background:   var(--ifk-card-hover);
    color:        var(--ifk-accent);
    border-color: var(--ifk-accent);
}

.ife-artist-single__share-feedback {
    font-size: 0.8rem;
    color:     var(--ifk-accent);
}

/* ─── QR-Dialog ────────────────────────────────────────────────────────────── */

.ife-qr-dialog {
    border:        none;
    border-radius: 12px;
    background:    #1a1a1a;
    color:         #fff;
    padding:       0;
    max-width:     340px;
    width:         90vw;
    box-shadow:    0 24px 64px rgba(0,0,0,0.7);
}

.ife-qr-dialog::backdrop {
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(4px);
}

.ife-qr-dialog__inner {
    padding:        1.5rem;
    display:        flex;
    flex-direction: column;
    align-items:    center;
    gap:            1rem;
}

.ife-qr-dialog__svg {
    background:    #fff;
    border-radius: 8px;
    padding:       12px;
    line-height:   0;
}

.ife-qr-dialog__svg svg {
    display: block;
    width:   220px;
    height:  220px;
}

.ife-qr-dialog__label {
    font-weight: 700;
    font-size:   1.05rem;
    margin:      0;
}

.ife-qr-dialog__url {
    font-size:   0.72rem;
    color:       rgba(255,255,255,0.4);
    word-break:  break-all;
    text-align:  center;
    margin:      0;
}

.ife-qr-dialog__actions {
    display: flex;
    gap:     0.6rem;
}

.ife-qr-dialog__download,
.ife-qr-dialog__close {
    padding:       0.4rem 1rem;
    border-radius: var(--ifk-radius);
    border:        1px solid var(--ifk-border);
    font-size:     0.82rem;
    font-weight:   600;
    cursor:        pointer;
    transition:    background var(--ifk-transition), color var(--ifk-transition);
}

.ife-qr-dialog__download {
    background: var(--ifk-accent);
    color:      #fff;
    border-color: var(--ifk-accent);
}

.ife-qr-dialog__download:hover {
    background: #c73050;
}

.ife-qr-dialog__close {
    background: transparent;
    color:      var(--ifk-text-muted);
}

.ife-qr-dialog__close:hover {
    background: rgba(255,255,255,0.08);
    color:      #fff;
}

/* ═══════════════════════════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════════════════════════ */

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

@media ( max-width: 580px ) {
    .ife-kalender__grid {
        grid-template-columns: 1fr;
    }

    .ife-event-single__hero-img {
        height: 50vw;
        min-height: 220px;
    }

    .ife-event-single__hero-content {
        padding: 1.25rem 1.25rem 1.75rem;
    }

    .ife-event-single__body {
        padding: 1.75rem 1rem 3rem;
    }

    .ife-artist-single__header {
        flex-direction: column;
        gap:            1.5rem;
    }

    .ife-artist-single__avatar {
        width:  140px;
        height: 140px;
    }

    .ife-artist-single__inner {
        padding: 2rem 1rem 4rem;
    }
}

/* ─── Stage-Panel (Slide-up) ───────────────────────────────────────────────── */
.ife-stage-panel {
    display: none;
}
.ife-stage-panel--open {
    display: block;
}
.ife-stage-panel__backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    z-index: 900;
    animation: ifk-fade-in 0.15s ease;
}
.ife-stage-panel__drawer {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 560px;
    max-height: 85vh;
    overflow-y: auto;
    background: #1a1a2e;
    border-radius: 16px 16px 0 0;
    z-index: 901;
    animation: ifk-slide-up 0.22s ease;
}
@keyframes ifk-fade-in {
    from { opacity: 0; } to { opacity: 1; }
}
@keyframes ifk-slide-up {
    from { transform: translateX(-50%) translateY(40px); opacity: 0; }
    to   { transform: translateX(-50%) translateY(0);    opacity: 1; }
}
.ife-stage-panel__close {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(255,255,255,0.1);
    border: none;
    color: #e0e0e0;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 0.9rem;
    z-index: 2;
}
.ife-stage-panel__close:hover { background: rgba(255,255,255,0.2); }

.ife-sp-image {
    width: 100%;
    aspect-ratio: 16/9;
    background-size: cover;
    background-position: center;
    border-radius: 16px 16px 0 0;
}
.ife-sp-body {
    padding: 20px 20px 32px;
}
.ife-sp-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #e0e0e0;
    margin: 0 0 10px;
}
.ife-sp-address, .ife-sp-meta {
    font-size: 0.85rem;
    color: #8888aa;
    margin: 0 0 8px;
}
.ife-sp-desc {
    font-size: 0.9rem;
    color: #8888aa;
    line-height: 1.6;
    margin: 12px 0;
}
.ife-sp-social {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 14px;
}
.ife-sp-map {
    width: 100%;
    height: 180px;
    border-radius: 10px;
    overflow: hidden;
    margin-top: 16px;
}

.ife-sp-pill {
    background: #16213e;
    border: 1px solid #2a2a4a;
    color: #e0e0e0;
    font-size: 0.78rem;
    padding: 4px 12px;
    border-radius: 20px;
    text-decoration: none;
    transition: border-color 0.15s, color 0.15s;
}
.ife-sp-pill:hover {
    border-color: #e94560;
    color: #e94560;
}

/* ─── Rückblick-Badge ───────────────────────────────────────────────────────── */

.ife-event-single__rueckblick-badge {
    display:          inline-block;
    background:       rgba(233,69,96,0.85);
    color:            #fff;
    font-size:        0.7rem;
    font-weight:      700;
    letter-spacing:   0.1em;
    text-transform:   uppercase;
    padding:          3px 10px;
    border-radius:    20px;
    margin-bottom:    0.6rem;
}

/* ─── Stats-Zeile ───────────────────────────────────────────────────────────── */

.ife-event-single__stats {
    display:     flex;
    gap:         2rem;
    margin-top:  2rem;
    padding:     1.25rem 0;
    border-top:  1px solid rgba(255,255,255,0.08);
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.ife-stat {
    display:        flex;
    flex-direction: column;
    align-items:    center;
    gap:            0.15rem;
}

.ife-stat__num {
    font-size:   2rem;
    font-weight: 800;
    color:       #e94560;
    line-height: 1;
}

.ife-stat__label {
    font-size:   0.75rem;
    color:       #9a9ab0;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

/* ─── Galerie (öffentlich, Event-Detailseite) ───────────────────────────────── */

.ife-event-single__gallery {
    margin-top: 2.5rem;
}

.ife-gallery-grid-pub {
    display:               grid;
    grid-template-columns: repeat(4, 1fr);
    gap:                   0.5rem;
    margin-top:            1.25rem;
}

.ife-gallery-item {
    aspect-ratio: 1 / 1;
    border:       none;
    padding:      0;
    cursor:       pointer;
    border-radius: 6px;
    overflow:     hidden;
    background:   #16213e;
}

.ife-gallery-item img {
    width:      100%;
    height:     100%;
    object-fit: cover;
    display:    block;
    transition: transform 0.2s ease, opacity 0.2s;
}

.ife-gallery-item:hover img {
    transform: scale(1.05);
    opacity:   0.85;
}

/* ─── Lightbox (<dialog>) ───────────────────────────────────────────────────── */

.ife-gallery-dialog {
    position:         fixed;
    inset:            0;
    margin:           auto;
    border:           none;
    background:       rgba(8,8,20,0.95);
    max-width:        100vw;
    max-height:       100vh;
    width:            100vw;
    height:           100vh;
    display:          flex;
    align-items:      center;
    justify-content:  center;
    padding:          0;
}

.ife-gallery-dialog::backdrop {
    background: rgba(0,0,0,0.85);
}

.ife-gallery-dialog__img {
    max-width:    90vw;
    max-height:   88vh;
    object-fit:   contain;
    border-radius: 4px;
    display:      block;
}

.ife-gallery-dialog__close {
    position:    absolute;
    top:         1rem;
    right:       1rem;
    background:  rgba(255,255,255,0.1);
    border:      none;
    color:       #fff;
    font-size:   1.2rem;
    width:       36px;
    height:      36px;
    border-radius: 50%;
    cursor:      pointer;
    display:     flex;
    align-items: center;
    justify-content: center;
    transition:  background 0.15s;
}

.ife-gallery-dialog__close:hover {
    background: #e94560;
}

.ife-gallery-dialog__nav {
    position:    absolute;
    top:         50%;
    transform:   translateY(-50%);
    background:  rgba(255,255,255,0.1);
    border:      none;
    color:       #fff;
    font-size:   2rem;
    width:       48px;
    height:      48px;
    border-radius: 50%;
    cursor:      pointer;
    display:     flex;
    align-items: center;
    justify-content: center;
    transition:  background 0.15s;
    line-height: 1;
}

.ife-gallery-dialog__nav:hover {
    background: rgba(233,69,96,0.7);
}

.ife-gallery-dialog__nav--prev { left:  1rem; }
.ife-gallery-dialog__nav--next { right: 1rem; }

@media ( max-width: 640px ) {
    .ife-gallery-grid-pub {
        grid-template-columns: repeat(3, 1fr);
    }
    .ife-event-single__stats {
        gap: 1.25rem;
    }
    .ife-stat__num { font-size: 1.5rem; }
}

/* ─── PDF-Downloads (Event-Detailseite) ────────────────────────────────────── */

.ife-event-single__pdfs {
    margin-top: 2.5rem;
}

.ife-pdf-items {
    display:        flex;
    flex-direction: column;
    gap:            0.75rem;
    margin-top:     1.25rem;
}

.ife-pdf-item {
    border:        1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    overflow:      hidden;
    background:    rgba(255,255,255,0.03);
}

.ife-pdf-item__summary {
    display:     flex;
    align-items: center;
    gap:         0.6rem;
    padding:     0.75rem 1rem;
    cursor:      pointer;
    list-style:  none;
    user-select: none;
    transition:  background 0.15s;
}

.ife-pdf-item__summary::-webkit-details-marker { display: none; }

.ife-pdf-item__summary:hover {
    background: rgba(255,255,255,0.05);
}

.ife-pdf-item__icon {
    font-size:   1.1rem;
    flex-shrink: 0;
}

.ife-pdf-item__title {
    flex:        1;
    font-weight: 500;
    font-size:   0.95rem;
    color:       #f0f0f0;
}

.ife-pdf-item__toggle-hint::before {
    content:     '▾';
    color:       #e94560;
    font-size:   0.8rem;
    transition:  transform 0.2s;
    display:     inline-block;
}

.ife-pdf-item[open] .ife-pdf-item__toggle-hint::before {
    transform: rotate(-180deg);
}

.ife-pdf-item__body {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding:    1rem;
}

.ife-pdf-iframe {
    width:        100%;
    height:       600px;
    border:       none;
    border-radius: 4px;
    background:   #fff;
    display:      block;
}

.ife-pdf-download {
    display:         inline-block;
    margin-top:      0.75rem;
    color:           #e94560;
    text-decoration: none;
    font-size:       0.875rem;
    font-weight:     500;
    border:          1px solid rgba(233,69,96,0.4);
    border-radius:   20px;
    padding:         0.3rem 0.9rem;
    transition:      background 0.15s, color 0.15s;
}

.ife-pdf-download:hover {
    background: rgba(233,69,96,0.12);
    color:      #ff6b85;
}

@media ( max-width: 640px ) {
    .ife-pdf-iframe { height: 420px; }
}

/* Light-Mode */
html.its-light .ife-pdf-item {
    border-color: rgba(0,0,0,0.12);
    background:   rgba(0,0,0,0.02);
}
html.its-light .ife-pdf-item__summary:hover { background: rgba(0,0,0,0.04); }
html.its-light .ife-pdf-item__title         { color: #1a1a1a; }
html.its-light .ife-pdf-item__body          { border-top-color: rgba(0,0,0,0.1); }

/* ─── Line-Up Grid (Event-Detailseite) ─────────────────────────────────────── */

.ife-event-single__lineup {
    margin-top: 2.5rem;
}

.ife-genre-filter {
    display:   flex;
    flex-wrap: wrap;
    gap:       0.5rem;
    margin-bottom: 0.25rem;
}

.ife-genre-pill {
    padding:       0.3rem 1rem;
    border-radius: 999px;
    border:        1px solid rgba(255,255,255,0.2);
    background:    transparent;
    color:         rgba(255,255,255,0.55);
    font-size:     0.82rem;
    cursor:        pointer;
    transition:    background 0.15s, color 0.15s, border-color 0.15s;
}

.ife-genre-pill:hover {
    border-color: #e94560;
    color:        #fff;
}

.ife-genre-pill--active {
    background:   #e94560;
    border-color: #e94560;
    color:        #fff;
    font-weight:  700;
}

.ife-lineup-grid {
    display:               grid;
    grid-template-columns: repeat(5, 1fr);
    gap:                   1rem;
    margin-top:            1.25rem;
}

.ife-lineup-tile {
    display:         flex;
    flex-direction:  column;
    align-items:     center;
    gap:             0.5rem;
    text-decoration: none;
    color:           inherit;
}

.ife-lineup-tile__photo {
    width:         100%;
    aspect-ratio:  1 / 1;
    border-radius: 8px;
    overflow:      hidden;
    background:    #16213e;
}

.ife-lineup-tile__photo img {
    width:      100%;
    height:     100%;
    object-fit: cover;
    display:    block;
    transition: transform 0.2s ease;
}

.ife-lineup-tile:hover .ife-lineup-tile__photo img {
    transform: scale(1.05);
}

.ife-lineup-tile__photo-placeholder {
    width:      100%;
    height:     100%;
    background: linear-gradient(135deg, #16213e 0%, #0f3460 100%);
}

.ife-lineup-tile__name {
    font-size:   0.82rem;
    font-weight: 600;
    text-align:  center;
    color:       #e0e0e0;
    line-height: 1.3;
    transition:  color 0.15s;
}

.ife-lineup-tile:hover .ife-lineup-tile__name {
    color: #e94560;
}

@media ( max-width: 900px ) {
    .ife-lineup-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media ( max-width: 640px ) {
    .ife-lineup-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.75rem;
    }
}

@media ( max-width: 400px ) {
    .ife-lineup-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ─── Bühnen-Detailseite /b/{slug} ─────────────────────────────────────────── */

.ife-stage-single {
    max-width:  900px;
    margin:     0 auto;
    padding:    0 0 4rem;
    color:      #e0e0e0;
}

.ife-stage-single__hero {
    position:   relative;
    width:      100%;
    height:     340px;
    overflow:   hidden;
}

.ife-stage-single__hero-img {
    width:      100%;
    height:     100%;
    object-fit: cover;
    display:    block;
}

.ife-stage-single__hero-overlay {
    position:   absolute;
    inset:      0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.1) 0%, rgba(10,10,26,0.75) 100%);
}

.ife-stage-single__hero-content {
    position:   absolute;
    bottom:     0;
    left:       0;
    right:      0;
    padding:    1.5rem 2rem 2rem;
}

.ife-stage-single__header {
    padding: 2.5rem 2rem 0;
}

.ife-stage-single__title {
    font-size:   2rem;
    font-weight: 800;
    color:       #fff;
    margin:      0 0 0.4rem;
    line-height: 1.2;
}

.ife-stage-single__address {
    font-size: 0.9rem;
    color:     rgba(255,255,255,0.7);
    margin:    0;
}

.ife-stage-single__body {
    padding: 2rem 2rem 0;
}

.ife-stage-single__social {
    display:     flex;
    flex-wrap:   wrap;
    gap:         0.5rem;
    margin-bottom: 1.5rem;
}

.ife-stage-single__pill {
    background:      transparent;
    border:          1px solid #2a2a4a;
    color:           #e0e0e0;
    font-size:       0.8rem;
    padding:         5px 14px;
    border-radius:   20px;
    text-decoration: none;
    transition:      border-color 0.15s, color 0.15s;
}

.ife-stage-single__pill:hover {
    border-color: #e94560;
    color:        #e94560;
}

.ife-stage-single__desc {
    font-size:   0.95rem;
    line-height: 1.7;
    color:       #c8c8c8;
    margin-bottom: 1.5rem;
}

.ife-stage-single__meta-line {
    font-size:     0.88rem;
    color:         #c8c8c8;
    margin:        0.4rem 0;
    line-height:   1.5;
}

.ife-stage-single__meta-label {
    font-weight: 600;
    color:       #e0e0e0;
}

.ife-stage-single__map {
    margin:        1.5rem 0;
    border-radius: 10px;
    overflow:      hidden;
}

.ife-stage-single__slots {
    margin-top: 2.5rem;
}

.ife-stage-slots__list {
    list-style:    none;
    margin:        1rem 0 0;
    padding:       0;
    display:       flex;
    flex-direction: column;
    gap:           0;
}

.ife-stage-slots__item {
    display:     flex;
    flex-wrap:   wrap;
    align-items: baseline;
    gap:         0 0.35rem;
    padding:     0.6rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    font-size:   0.88rem;
}

.ife-stage-slots__item:last-child {
    border-bottom: none;
}

.ife-stage-slots__artist {
    font-weight: 600;
    color:       #fff;
}

.ife-stage-single__past {
    margin-top: 1.5rem;
}

.ife-stage-single__past-toggle {
    cursor:      pointer;
    font-size:   0.88rem;
    color:       #7a7a9a;
    user-select: none;
    padding:     0.5rem 0;
    list-style:  none;
}

.ife-stage-single__past-toggle::-webkit-details-marker { display: none; }
.ife-stage-single__past-toggle::before { content: '▸ '; }
details[open] .ife-stage-single__past-toggle::before { content: '▾ '; }

.ife-stage-slots__list--past .ife-stage-slots__item {
    opacity: 0.45;
}

.ife-stage-single__no-slots {
    color:      #7a7a9a;
    font-size:  0.9rem;
    margin-top: 2rem;
}

/* Stage-Panel: Profil-Link */
.ife-sp-profile-link {
    display:          inline-block;
    margin-top:       1rem;
    color:            #e94560;
    font-size:        0.88rem;
    font-weight:      600;
    text-decoration:  none;
}

.ife-sp-profile-link:hover {
    text-decoration: underline;
}

@media ( max-width: 580px ) {
    .ife-stage-single__hero  { height: 52vw; min-height: 200px; }
    .ife-stage-single__body,
    .ife-stage-single__header { padding-left: 1rem; padding-right: 1rem; }
    .ife-stage-single__hero-content { padding: 1rem 1rem 1.5rem; }
    .ife-stage-single__title { font-size: 1.5rem; }
}

/* ═══════════════════════════════════════════════════════════════════════════════
   "HEUTE LÄUFT"-BANNER
   ═══════════════════════════════════════════════════════════════════════════════ */

.ife-kalender__banner {
    display:        flex;
    align-items:    center;
    flex-wrap:      wrap;
    gap:            0.6rem 1rem;
    background:     rgba(233, 69, 96, 0.12);
    border:         1px solid rgba(233, 69, 96, 0.35);
    border-radius:  var(--ifk-radius);
    padding:        0.75rem 1.25rem;
    margin-bottom:  1.5rem;
}

.ife-kalender__banner-dot {
    width:         10px;
    height:        10px;
    border-radius: 50%;
    background:    var(--ifk-accent);
    flex-shrink:   0;
    animation:     ifk-pulse 1.8s ease-in-out infinite;
}

@keyframes ifk-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%      { opacity: 0.5; transform: scale(0.8); }
}

.ife-kalender__banner-text {
    color:     var(--ifk-text);
    font-size: 0.9rem;
    flex:      1;
    min-width: 0;
}

.ife-kalender__banner-text strong {
    color: var(--ifk-accent);
}

.ife-kalender__banner-link {
    display:         inline-block;
    background:      var(--ifk-accent);
    color:           #fff;
    font-size:       0.8rem;
    font-weight:     700;
    padding:         0.35rem 0.9rem;
    border-radius:   var(--ifk-radius);
    text-decoration: none;
    white-space:     nowrap;
    transition:      background var(--ifk-transition);
    flex-shrink:     0;
}

.ife-kalender__banner-link:hover {
    background: #c9304c;
}

/* ═══════════════════════════════════════════════════════════════════════════════
   FILTER-LEISTE (+filter)
   ═══════════════════════════════════════════════════════════════════════════════ */

.ife-kalender__filter-bar {
    display:       flex;
    flex-wrap:     wrap;
    gap:           0.5rem;
    margin-bottom: 1.5rem;
}

.ife-kalender__filter-btn {
    background:     var(--ifk-surface);
    color:          var(--ifk-text-muted);
    border:         1px solid var(--ifk-border);
    border-radius:  var(--ifk-radius);
    padding:        0.45rem 1.1rem;
    font-size:      0.82rem;
    font-weight:    600;
    letter-spacing: 0.03em;
    cursor:         pointer;
    transition:     background var(--ifk-transition), color var(--ifk-transition), border-color var(--ifk-transition);
    font-family:    inherit;
}

.ife-kalender__filter-btn:hover {
    background:   var(--ifk-card);
    color:        var(--ifk-text);
    border-color: rgba(255, 255, 255, 0.2);
}

.ife-kalender__filter-btn--active {
    background:   var(--ifk-accent);
    color:        #fff;
    border-color: var(--ifk-accent);
}

.ife-kalender__filter-btn--active:hover {
    background: #c9304c;
}

/* ─── Live-Badge auf der Kachel ───────────────────────────────────────────── */

.ife-card__image-wrap {
    position: relative;
}

.ife-card__live-badge {
    position:    absolute;
    top:         0.6rem;
    left:        0.6rem;
    background:  var(--ifk-accent);
    color:       #fff;
    font-size:   0.68rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding:     2px 8px;
    border-radius: 3px;
    z-index:     2;
}

.ife-card__recurring-badge {
    position:    absolute;
    top:         0.6rem;
    right:       0.6rem;
    background:  rgba(0,0,0,0.55);
    color:       #fff;
    font-size:   0.68rem;
    font-weight: 600;
    padding:     2px 8px;
    border-radius: 3px;
    z-index:     2;
    backdrop-filter: blur(4px);
}

/* ═══════════════════════════════════════════════════════════════════════════════
   "WEITERE ARTISTS"-KARUSSEL (Artist-Profilseite)
   ═══════════════════════════════════════════════════════════════════════════════ */

.ife-artist-more {
    margin-top:  2.5rem;
    padding-top: 2rem;
    border-top:  1px solid rgba(255, 255, 255, 0.08);
}

.ife-artist-more__title {
    font-size:      0.8rem;
    font-weight:    700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color:          var(--ifk-text-muted);
    margin:         0 0 1.25rem;
}

.ife-artist-more__scroll {
    display:             flex;
    gap:                 1rem;
    overflow-x:          auto;
    padding-bottom:      0.75rem;
    scroll-snap-type:    x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width:     thin;
    scrollbar-color:     rgba(255,255,255,0.12) transparent;
}

.ife-artist-more__scroll::-webkit-scrollbar {
    height: 4px;
}

.ife-artist-more__scroll::-webkit-scrollbar-track {
    background: transparent;
}

.ife-artist-more__scroll::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 2px;
}

.ife-artist-more__tile {
    flex:            0 0 120px;
    display:         flex;
    flex-direction:  column;
    align-items:     center;
    gap:             0.5rem;
    text-decoration: none;
    color:           inherit;
    scroll-snap-align: start;
}

.ife-artist-more__photo {
    width:         100%;
    aspect-ratio:  1 / 1;
    border-radius: 8px;
    overflow:      hidden;
    background:    var(--ifk-surface);
}

.ife-artist-more__photo img {
    width:      100%;
    height:     100%;
    object-fit: cover;
    display:    block;
    transition: transform 0.2s ease;
}

.ife-artist-more__tile:hover .ife-artist-more__photo img {
    transform: scale(1.05);
}

.ife-artist-more__photo-placeholder {
    width:      100%;
    height:     100%;
    background: linear-gradient(135deg, #16213e 0%, #0f3460 100%);
}

.ife-artist-more__name {
    font-size:   0.78rem;
    font-weight: 600;
    text-align:  center;
    color:       #e0e0e0;
    line-height: 1.3;
    transition:  color 0.15s;
    width:       100%;
    overflow:    hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.ife-artist-more__tile:hover .ife-artist-more__name {
    color: var(--ifk-accent);
}

/* ─── B2B-Act-Einzelseite (/b2b/{slug}) ──────────────────────────────────── */

.ife-b2b-single {
    max-width:  900px;
    margin:     0 auto;
    padding:    0 1.5rem 4rem;
}

.ife-b2b-single__inner {
    display:        flex;
    flex-direction: column;
    gap:            2rem;
}

.ife-b2b-single__hero {
    width:         100%;
    max-height:    420px;
    overflow:      hidden;
    border-radius: 12px;
}

.ife-b2b-single__hero-img {
    width:       100%;
    height:      420px;
    object-fit:  cover;
    display:     block;
}

.ife-b2b-single__header {
    display:     flex;
    align-items: flex-start;
    gap:         1.5rem;
}

.ife-b2b-single__meta {
    display:        flex;
    flex-direction: column;
    gap:            0.4rem;
}

.ife-b2b-single__bnb-badge {
    display:         inline-block;
    background:      var(--ifk-accent, #e94560);
    color:           #fff;
    font-size:       0.75rem;
    font-weight:     700;
    letter-spacing:  0.05em;
    padding:         3px 10px;
    border-radius:   20px;
    align-self:      flex-start;
}

.ife-b2b-single__title {
    font-size:   2rem;
    font-weight: 700;
    color:       #fff;
    margin:      0;
    line-height: 1.2;
}

.ife-b2b-single__kurz {
    font-size:  1rem;
    color:      #b0b0b0;
    margin:     0;
    max-width:  600px;
}

/* Artists-Grid (Reihe mit BNB-Separator) */

.ife-b2b-single__lineup {
    display:        flex;
    flex-wrap:      wrap;
    align-items:    center;
    gap:            1rem;
}

.ife-b2b-single__sep {
    font-size:   0.78rem;
    font-weight: 700;
    color:       var(--ifk-accent, #e94560);
    background:  rgba(233,69,96,0.12);
    padding:     4px 10px;
    border-radius: 20px;
    align-self:  center;
    flex-shrink: 0;
}

.ife-b2b-single__artist {
    display:        flex;
    align-items:    center;
    gap:            0.75rem;
    text-decoration: none;
    padding:        0.75rem 1rem;
    background:     rgba(255,255,255,0.03);
    border:         1px solid rgba(255,255,255,0.07);
    border-radius:  10px;
    transition:     background 0.15s, border-color 0.15s;
    flex:           0 0 auto;
}

.ife-b2b-single__artist:hover {
    background:    rgba(233,69,96,0.08);
    border-color:  rgba(233,69,96,0.3);
}

.ife-b2b-single__artist-photo {
    width:         64px;
    height:        64px;
    border-radius: 50%;
    overflow:      hidden;
    flex-shrink:   0;
    background:    rgba(255,255,255,0.05);
    display:       flex;
    align-items:   center;
    justify-content: center;
    font-size:     1.5rem;
}

.ife-b2b-single__artist-photo img {
    width:       100%;
    height:      100%;
    object-fit:  cover;
}

.ife-b2b-single__artist-photo-placeholder {
    width:       100%;
    height:      100%;
    display:     flex;
    align-items: center;
    justify-content: center;
    font-size:   1.5rem;
}

.ife-b2b-single__artist-info {
    display:        flex;
    flex-direction: column;
    gap:            0.2rem;
}

.ife-b2b-single__artist-name {
    font-size:   1rem;
    font-weight: 600;
    color:       #e0e0e0;
}

.ife-b2b-single__artist-sub {
    font-size:  0.82rem;
    color:      #888;
}

.ife-b2b-single__social {
    display:  flex;
    gap:      0.4rem;
    flex-wrap: wrap;
    margin-top: 0.2rem;
}

.ife-b2b-single__social-link {
    font-size:     0.72rem;
    background:    rgba(255,255,255,0.07);
    color:         #aaa;
    padding:       2px 8px;
    border-radius: 20px;
}

.ife-b2b-single__content {
    color:       #c0c0c0;
    line-height: 1.7;
    font-size:   0.95rem;
}

@media (max-width: 600px) {
    .ife-b2b-single__title  { font-size: 1.5rem; }
    .ife-b2b-single__lineup { flex-direction: column; align-items: stretch; }
    .ife-b2b-single__sep    { align-self: flex-start; }
    .ife-b2b-single__hero-img { height: 220px; }
}

/* ── Artist: Subtitle + Genre ─────────────────────────────────────────────── */

.ife-artist-single__subtitle {
    color:       #aaa;
    font-size:   1rem;
    margin:      0.15rem 0 0.4rem;
    font-style:  italic;
}

.ife-artist-single__genres {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-bottom: 0.5rem;
}

.ife-artist-single__genre {
    display:       inline-block;
    font-size:     0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    background:    rgba(233,69,96,0.15);
    color:         #e94560;
    padding:       2px 10px;
    border-radius: 20px;
}

/* ── Workshop Single ──────────────────────────────────────────────────────── */

.ife-workshop-single__hero {
    width: 100%;
    max-height: 420px;
    overflow: hidden;
}
.ife-workshop-single__hero-img {
    width: 100%;
    max-height: 420px;
    object-fit: cover;
    display: block;
}
.ife-workshop-single__inner {
    max-width: 820px;
    margin: 0 auto;
    padding: 2rem 1.5rem 4rem;
}
.ife-workshop-single__badge {
    display:       inline-block;
    font-size:     0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    background:    rgba(233,69,96,0.15);
    color:         #e94560;
    padding:       3px 10px;
    border-radius: 20px;
    margin-bottom: 0.6rem;
}
.ife-workshop-single__title {
    font-size:   2rem;
    font-weight: 700;
    margin:      0 0 0.2rem;
    color:       #fff;
}
.ife-workshop-single__subtitle {
    color:       #aaa;
    font-size:   1rem;
    font-style:  italic;
    margin:      0 0 1.5rem;
}
.ife-workshop-single__section-title {
    font-size:   0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color:       #888;
    margin:      2rem 0 0.8rem;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    padding-bottom: 0.3rem;
}
.ife-workshop-single__artist-list {
    display:   flex;
    gap:       1.2rem;
    flex-wrap: wrap;
}
.ife-workshop-single__artist {
    display:        flex;
    flex-direction: column;
    align-items:    center;
    gap:            0.5rem;
    text-decoration: none;
    color:          #ddd;
    font-size:      0.9rem;
}
.ife-workshop-single__artist-photo {
    width:         80px;
    height:        80px;
    border-radius: 50%;
    overflow:      hidden;
    background:    #2a2a2a;
}
.ife-workshop-single__artist-photo img {
    width:      100%;
    height:     100%;
    object-fit: cover;
}
.ife-workshop-single__artist-photo-placeholder {
    width:  100%;
    height: 100%;
    background: linear-gradient(135deg, #333 0%, #222 100%);
}
.ife-workshop-single__kurz {
    color:      #bbb;
    font-size:  1.05rem;
    line-height: 1.6;
    margin-top: 1.5rem;
}
.ife-workshop-single__content {
    color:       #c0c0c0;
    line-height: 1.75;
    font-size:   0.95rem;
    margin-top:  1.5rem;
}

/* ── Gastro Single ───────────────────────────────────────────────────────── */

.ife-gastro-single__hero {
    width: 100%;
    max-height: 380px;
    overflow: hidden;
}
.ife-gastro-single__hero-img {
    width: 100%;
    max-height: 380px;
    object-fit: cover;
    display: block;
}
.ife-gastro-single__inner {
    max-width: 820px;
    margin: 0 auto;
    padding: 2rem 1.5rem 4rem;
}
.ife-gastro-single__badge {
    display:       inline-block;
    font-size:     0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    background:    rgba(255,200,80,0.12);
    color:         #f0c040;
    padding:       3px 10px;
    border-radius: 20px;
    margin-bottom: 0.6rem;
}
.ife-gastro-single__title {
    font-size:   2rem;
    font-weight: 700;
    margin:      0 0 0.2rem;
    color:       #fff;
}
.ife-gastro-single__subtitle {
    color:      #aaa;
    font-size:  1rem;
    font-style: italic;
    margin:     0 0 0.8rem;
}
.ife-gastro-single__social {
    display:   flex;
    gap:       0.4rem;
    flex-wrap: wrap;
    margin-bottom: 0.5rem;
}
.ife-gastro-single__section-title {
    font-size:   0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color:       #888;
    margin:      2rem 0 0.8rem;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    padding-bottom: 0.3rem;
}
.ife-gastro-single__kurz {
    color:      #bbb;
    font-size:  1.05rem;
    line-height: 1.6;
    margin-top: 1rem;
}
.ife-gastro-single__content {
    color:       #c0c0c0;
    line-height: 1.75;
    font-size:   0.95rem;
    margin-top:  1.5rem;
}
.ife-gastro-single__schedule-list {
    list-style: none;
    padding:    0;
    margin:     0;
}
.ife-gastro-single__schedule-item {
    display:    flex;
    gap:        0.5rem;
    align-items: baseline;
    padding:    0.4rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    color: #ddd;
}
.ife-gastro-single__schedule-item--past {
    opacity: 0.4;
}
.ife-gastro-single__schedule-date {
    color:      #e94560;
    min-width:  130px;
    font-size:  0.9rem;
}
.ife-gastro-single__schedule-sep {
    color: #555;
}
.ife-gastro-single__schedule-time {
    font-size: 0.9rem;
}
.ife-gastro-single__infra-list {
    display: grid;
    grid-template-columns: max-content 1fr;
    gap:     0.3rem 1.5rem;
    color:   #ccc;
    font-size: 0.9rem;
}
.ife-gastro-single__infra-list dt {
    color: #888;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    align-self: center;
}
.ife-gastro-single__prices-content {
    color:       #c0c0c0;
    font-size:   0.9rem;
    line-height: 1.7;
    background:  rgba(255,255,255,0.04);
    border-radius: 8px;
    padding:     1rem 1.2rem;
}

@media (max-width: 600px) {
    .ife-workshop-single__title { font-size: 1.5rem; }
    .ife-gastro-single__title   { font-size: 1.5rem; }
    .ife-gastro-single__infra-list { grid-template-columns: 1fr; }
}

.ifk-notfound-notice {
    background: #1a1a2e;
    border-left: 4px solid #e94560;
    color: #ccc;
    padding: 14px 18px;
    margin-bottom: 24px;
    border-radius: 4px;
    font-size: 0.95rem;
}

/* ─── 404-Seite ─────────────────────────────────────────────────────────── */

.ifk-404-wrap {
    background: #0d0d1a;
    min-height: 100vh;
    color: #e0e0e0;
}

.ifk-404-hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 24px 72px;
    position: relative;
}

.ifk-404-number {
    font-size: clamp(7rem, 20vw, 14rem);
    font-weight: 900;
    line-height: 1;
    color: #e94560;
    opacity: 0.15;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    user-select: none;
    letter-spacing: -4px;
}

.ifk-404-title {
    font-size: clamp(1.6rem, 4vw, 2.4rem);
    font-weight: 700;
    color: #fff;
    margin: 0 0 12px;
    position: relative;
}

.ifk-404-sub {
    font-size: 1rem;
    color: #888;
    margin: 0 0 36px;
    position: relative;
}

.ifk-404-btn {
    display: inline-block;
    background: #e94560;
    color: #fff;
    text-decoration: none;
    padding: 13px 28px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.95rem;
    position: relative;
    transition: background 0.2s;
}

.ifk-404-btn:hover {
    background: #c73650;
    color: #fff;
}

.ifk-404-events {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 24px 80px;
}

.ifk-404-events-title {
    font-size: 1rem;
    font-weight: 600;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin: 0 0 20px;
}

.ifk-404-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

@media (max-width: 640px) {
    .ifk-404-grid { grid-template-columns: 1fr; }
}

.ifk-404-card {
    display: flex;
    flex-direction: column;
    background: #1a1a2e;
    border-radius: 6px;
    overflow: hidden;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
}

.ifk-404-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}

.ifk-404-card__img {
    width: 100%;
    aspect-ratio: 16/9;
    background: #111128 center/cover no-repeat;
}

.ifk-404-card__body {
    padding: 14px 16px 16px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.ifk-404-card__date {
    font-size: 0.8rem;
    font-weight: 700;
    color: #e94560;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.ifk-404-card__loc {
    font-size: 0.78rem;
    color: #888;
}

.ifk-404-card__title {
    font-size: 1rem;
    font-weight: 600;
    color: #e0e0e0;
    margin-top: 4px;
}

/* ─── Showcase-Profilseite (/showcase/{slug}) ─────────────────────────────── */

.ife-showcase-single {
    --showcase-color: #e94560;
    --showcase-rgb: 233,69,96;
    background:  var(--ifk-bg);
    color:       var(--ifk-text);
    min-height:  80vh;
}

.ife-showcase-single__hero {
    position: relative;
    width: 100%;
    max-height: 420px;
    overflow: hidden;
}

.ife-showcase-single__hero-img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
}

.ife-showcase-single__hero-tint {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 40%, rgba(0,0,0,0.65) 100%);
}

.ife-showcase-single__inner {
    max-width: 760px;
    margin: 0 auto;
    padding: 40px 24px 60px;
}

.ife-showcase-single__header {
    margin-bottom: 28px;
}

.ife-showcase-single__badge {
    display: inline-block;
    background: var(--showcase-color);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: 4px;
    padding: 3px 10px;
    margin-bottom: 12px;
}

.ife-showcase-single__title {
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1.15;
    margin: 0;
    color: var(--showcase-color);
}

.ife-showcase-single__kurz {
    font-size: 1.1rem;
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 24px;
    border-left: 3px solid var(--showcase-color);
    padding-left: 16px;
}

.ife-showcase-single__content {
    font-size: 1rem;
    color: #ccc;
    line-height: 1.7;
    margin-bottom: 40px;
}

.ife-showcase-single__content p {
    margin: 0 0 1em;
}

.ife-showcase-single__slots {
    margin-top: 40px;
    border-top: 1px solid rgba(var(--showcase-rgb), 0.3);
    padding-top: 28px;
}

.ife-showcase-single__section-title {
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--showcase-color);
    margin: 0 0 16px;
}

.ife-showcase-single__slot-artist {
    color: #e0e0e0;
    font-weight: 600;
}

.ife-showcase-single__slot-artist-link {
    color: #e0e0e0;
    text-decoration: none;
}
.ife-showcase-single__slot-artist-link:hover {
    color: var(--showcase-color);
    text-decoration: underline;
}

.ife-artist-slots__stage a {
    color: var(--ifk-text-muted);
    text-decoration: none;
}
.ife-artist-slots__stage a:hover {
    color: var(--ifk-text);
    text-decoration: underline;
}

@media (max-width: 600px) {
    .ife-showcase-single__title { font-size: 1.7rem; }
    .ife-showcase-single__inner { padding: 28px 16px 40px; }
    .ife-showcase-single__hero-img { height: 240px; }
}

/* ==========================================================================
   Artist-Karussell (auto-scroll, event detail page)
   ========================================================================== */

.ife-artist-carousel {
    overflow: hidden;
    width: 100%;
    padding: 20px 0;
    background: #0a0a0a;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    /* Fade-out-Masken links und rechts */
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
    mask-image:         linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
}

.ife-artist-carousel__track {
    display: flex;
    gap: 12px;
    width: max-content;
    animation: ife-carousel-scroll 30s linear infinite; /* JS übernimmt nach Load */
    cursor: grab;
}

.ife-artist-carousel__track:active {
    cursor: grabbing;
}

@keyframes ife-carousel-scroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

.ife-carousel-tile {
    position: relative;
    display: block;
    width: 160px;
    height: 160px;
    flex-shrink: 0;
    border-radius: 8px;
    overflow: hidden;
    text-decoration: none;
}

.ife-carousel-tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    display: block;
}

.ife-carousel-tile:hover img {
    transform: scale(1.06);
}

.ife-carousel-tile__name {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px 10px 8px;
    font-size: 12px;
    font-weight: 600;
    color: #fff;
    text-align: center;
    background: linear-gradient(transparent, rgba(0,0,0,0.75));
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    opacity: 0;
    transition: opacity 0.25s;
}

.ife-carousel-tile:hover .ife-carousel-tile__name {
    opacity: 1;
}

/* ==========================================================================
   TIMETABLE CTA Button
   ========================================================================== */

.ife-timetable-cta {
    text-align: center;
    padding: 52px 16px 44px;
}

.ife-timetable-btn {
    display: inline-block;
    font-size: clamp(2rem, 6vw, 3.8rem);
    font-weight: 900;
    letter-spacing: 0.12em;
    text-decoration: none;
    padding: 22px 56px;
    border-radius: 10px;
    color: #fff;
    background: linear-gradient(135deg, #e94560 0%, #ff6b35 30%, #c026d3 60%, #7c3aed 80%, #e94560 100%);
    background-size: 300% 300%;
    animation: ife-btn-gradient 4s ease infinite, ife-btn-glow 2.5s ease-in-out infinite;
    text-shadow: 0 2px 12px rgba(0,0,0,0.5);
    transition: transform 0.2s, letter-spacing 0.2s;
}

.ife-timetable-btn:hover {
    transform: scale(1.05);
    letter-spacing: 0.16em;
    color: #fff;
}

@keyframes ife-btn-gradient {
    0%   { background-position: 0% 50%; }
    50%  { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes ife-btn-glow {
    0%, 100% {
        box-shadow:
            0 0 20px rgba(233,69,96,0.5),
            0 0 40px rgba(233,69,96,0.25),
            0 0 80px rgba(192,38,211,0.15);
    }
    50% {
        box-shadow:
            0 0 40px rgba(233,69,96,0.8),
            0 0 80px rgba(233,69,96,0.4),
            0 0 140px rgba(192,38,211,0.3),
            0 0 200px rgba(124,58,237,0.15);
    }
}

/* ==========================================================================
   Lineup-Platzhalter mit Logo-Animation (Artists ohne Foto)
   ========================================================================== */

.ife-lineup-tile__photo-logo {
    background: linear-gradient(135deg, #141414 0%, #1e0a1e 50%, #0a0a14 100%);
    background-size: 200% 200%;
    animation: ife-logo-bg 6s ease infinite;
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes ife-logo-bg {
    0%, 100% { background-position: 0% 50%; }
    50%       { background-position: 100% 50%; }
}

.ife-lineup-logo-anim {
    width: 55%;
    height: 55%;
    object-fit: contain;
    opacity: 0.35;
    animation: ife-logo-pulse 3.5s ease-in-out infinite;
    filter: grayscale(30%);
}

@keyframes ife-logo-pulse {
    0%, 100% { opacity: 0.25; transform: scale(0.93); }
    50%       { opacity: 0.55; transform: scale(1.05); filter: drop-shadow(0 0 8px rgba(233,69,96,0.4)); }
}

.ife-lineup-logo-emoji {
    font-size: 2.5rem;
    opacity: 0.5;
    animation: ife-logo-pulse 3.5s ease-in-out infinite;
}

/* ==========================================================================
   Mini-Timetable auf Artist-Profilseiten
   ========================================================================== */

.ife-artist-mini-tts {
    padding: 0 0 4px;
}

.ife-mini-tt {
    background: #131320;
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 20px;
}

.ife-mini-tt--live {
    border-color: rgba(233,69,96,0.35);
    box-shadow: 0 0 24px rgba(233,69,96,0.12);
}

.ife-mini-tt--past {
    opacity: 0.55;
}

/* Header */
.ife-mini-tt__header {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    padding: 10px 14px;
    background: rgba(255,255,255,0.04);
    border-bottom: 1px solid rgba(255,255,255,0.07);
    font-size: 0.78rem;
    color: var(--ifk-text-muted);
}

.ife-mini-tt__date {
    font-weight: 600;
    color: var(--ifk-text);
}

.ife-mini-tt__sep {
    color: rgba(255,255,255,0.2);
}

.ife-mini-tt__stage {
    color: var(--ifk-accent);
    text-decoration: none;
    font-weight: 500;
}

.ife-mini-tt__stage:hover {
    text-decoration: underline;
}

.ife-mini-tt__event-link {
    color: var(--ifk-text-muted);
    text-decoration: none;
    margin-left: auto;
    font-size: 0.73rem;
    transition: color 0.15s;
}

.ife-mini-tt__event-link:hover {
    color: var(--ifk-text);
}

.ife-mini-tt__live-badge {
    background: var(--ifk-accent);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    padding: 2px 7px;
    border-radius: 20px;
    text-transform: uppercase;
    animation: ife-live-pulse 1.8s ease-in-out infinite;
}

@keyframes ife-live-pulse {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0.6; }
}

/* Slots list */
.ife-mini-tt__slots {
    padding: 6px 0;
}

/* Regular row */
.ife-mini-tt__row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 7px 14px;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    transition: background 0.15s;
}

.ife-mini-tt__row:last-child {
    border-bottom: none;
}

.ife-mini-tt__row:hover {
    background: rgba(255,255,255,0.03);
}

.ife-mini-tt__row-time {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--ifk-accent);
    white-space: nowrap;
    min-width: 70px;
    font-variant-numeric: tabular-nums;
}

.ife-mini-tt__row-name {
    font-size: 0.88rem;
    color: var(--ifk-text);
    text-decoration: none;
    transition: color 0.15s;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

a.ife-mini-tt__row-name:hover {
    color: var(--ifk-accent);
}

/* Self slot — big anchored card */
.ife-mini-tt__self {
    position: relative;
    overflow: hidden;
    min-height: 120px;
    display: flex;
    align-items: flex-end;
    border-left: 3px solid var(--ifk-accent);
    background: #0d0d1a;
    box-shadow: inset 0 0 0 1px rgba(233,69,96,0.12);
}

.ife-mini-tt__self--now {
    box-shadow:
        inset 0 0 0 1px rgba(233,69,96,0.4),
        0 0 30px rgba(233,69,96,0.18);
}

.ife-mini-tt__self-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.22;
    filter: blur(6px) saturate(0.7);
    transform: scale(1.08);
    transition: opacity 0.4s;
}

.ife-mini-tt__self--now .ife-mini-tt__self-bg {
    opacity: 0.32;
}

.ife-mini-tt__self-content {
    position: relative;
    z-index: 1;
    padding: 16px 18px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.ife-mini-tt__now-badge {
    display: inline-block;
    background: var(--ifk-accent);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    padding: 2px 8px;
    border-radius: 20px;
    text-transform: uppercase;
    width: fit-content;
    margin-bottom: 4px;
    animation: ife-live-pulse 1.8s ease-in-out infinite;
}

.ife-mini-tt__self-time {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--ifk-accent);
    font-variant-numeric: tabular-nums;
}

.ife-mini-tt__self-name {
    font-size: 1.35rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    text-shadow: 0 2px 12px rgba(0,0,0,0.7);
}

@media (max-width: 600px) {
    .ife-mini-tt__self-name { font-size: 1.1rem; }
    .ife-mini-tt__header { font-size: 0.73rem; }
}

/* ── Artist Slots: Anmeldungs-Link ──────────────────────────────────────── */
.ife-artist-slots__anmeldung {
    display: inline-flex;
    align-items: center;
    margin-left: 6px;
    padding: 2px 8px;
    background: rgba(233,69,96,.12);
    border: 1px solid rgba(233,69,96,.4);
    border-radius: 12px;
    color: #e94560;
    font-size: .78rem;
    font-weight: 600;
    text-decoration: none;
    transition: background .15s;
    vertical-align: middle;
}
.ife-artist-slots__anmeldung:hover {
    background: rgba(233,69,96,.22);
    color: #e94560;
}
