/* ===== SCHRIFTEN – NUR DIE IM LEITFADEN DEFINIERTEN ===== */
/* Barlow Condensed – nur Medium (500), Bold (700), Black (900) */
@font-face {
    font-family: 'Barlow Condensed';
    src: url('/wp-content/uploads/2026/03/BarlowCondensed-Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Barlow Condensed';
    src: url('/wp-content/uploads/2026/03/BarlowCondensed-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Barlow Condensed';
    src: url('/wp-content/uploads/2026/03/BarlowCondensed-Black.woff2') format('woff2');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

/* Inter – nur Regular (400), Medium (500), SemiBold (600) */
@font-face {
    font-family: 'Inter';
    src: url('/wp-content/uploads/2026/06/Inter-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Inter';
    src: url('/wp-content/uploads/2026/06/Inter-Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Inter';
    src: url('/wp-content/uploads/2026/06/Inter-SemiBold.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

/* ===== EVENT-KALENDER WRAPPER – LISTENANSICHT ===== */
#dahEventCalendar {
    --glassBg: rgba(255, 255, 255, 0.32);
    --glassBorder: rgba(255, 255, 255, 0.45);
    --glassBlur: 18px;
    --radius: 28px;
    --corpColor: #006532;
    --corpColorRGB: 0, 101, 50;

    font-family: "Inter", system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
    max-width: 860px;
    margin: 0 auto;
    padding: 2rem 1rem;
    color: #1a2b32;
}

/* ===== HEADER ===== */
.cal-list-header {
    text-align: center;
    margin-bottom: 2rem;
}

.cal-list-title {
    font-family: "Barlow Condensed", system-ui, sans-serif;
    font-weight: 900;
    font-size: clamp(36px, 8vw, 56px);
    line-height: 1.05;
    color: #006532;
    margin: 0 0 0.5rem 0;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.cal-list-subtitle {
    font-family: "Inter", system-ui, sans-serif;
    font-weight: 400;
    font-size: clamp(15px, 1.6vw, 18px);
    line-height: 1.5;
    color: #2c5a4a;
    margin: 0;
}

/* ===== BUTTONS ===== */
#dahEventCalendar .cal-expand-btn {
    display: inline-block;
    margin: 0.8rem 0.4rem;
    padding: 0.7rem 2rem;
    font-family: "Barlow Condensed", system-ui, sans-serif;
    font-weight: 900;
    font-size: 1rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #ffffff;
    background: var(--corpColor);
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 40px;
    cursor: pointer;
    transition: background 0.25s, border-color 0.25s, box-shadow 0.25s, transform 0.15s;
    box-shadow: 0 8px 20px -6px rgba(0,0,0,0.15);
    white-space: nowrap;
}

#dahEventCalendar .cal-expand-btn:hover {
    background: #004d26;
    border-color: rgba(255, 255, 255, 0.55);
    box-shadow: 0 12px 28px -8px rgba(0,0,0,0.25);
    transform: translateY(-1px);
}

#dahEventCalendar .cal-expand-btn:active {
    transform: scale(0.97);
}

.cal-past-buttons {
    text-align: center;
    margin-bottom: 2rem;
}

/* ===== LISTEN-CONTAINER ===== */
.cal-list-container {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

/* ===== MONATS-GRUPPE ===== */
.cal-month-group {
    position: relative;
    padding: 1.5rem 2rem;
    border-radius: var(--radius);
    transition: box-shadow 0.25s ease;
}

.cal-month-group::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: var(--glassBg);
    border: 1px solid var(--glassBorder);
    backdrop-filter: blur(var(--glassBlur)) saturate(1.25);
    -webkit-backdrop-filter: blur(var(--glassBlur)) saturate(1.25);
    z-index: -1;
    box-shadow: 0 20px 40px -12px rgba(0,0,0,0.08);
    transition: background 0.25s, border-color 0.25s, box-shadow 0.25s;
}

.cal-month-group.current::before {
    background: rgba(var(--corpColorRGB), 0.30);
    border-color: rgba(var(--corpColorRGB), 0.65);
    box-shadow: 0 24px 48px -16px rgba(var(--corpColorRGB), 0.35);
}

/* ===== MONATS-HEADER ===== */
.cal-month-header {
    display: flex;
    align-items: baseline;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.cal-month-name {
    font-family: "Barlow Condensed", system-ui, sans-serif;
    font-weight: 700;
    font-size: clamp(22px, 4vw, 32px);
    line-height: 1.2;
    color: #006532;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.cal-month-line {
    flex: 1;
    height: 2px;
    background: linear-gradient(90deg, rgba(0,101,50,0.3), transparent);
}

.cal-month-group.current .cal-month-name {
    color: #ffffff;
}

.cal-month-group.current .cal-month-line {
    background: linear-gradient(90deg, rgba(255,255,255,0.5), transparent);
}

/* ===== EVENTS-LISTE ===== */
.cal-events-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* ===== LISTEN-ELEMENT ===== */
.cal-list-item {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.25rem 1.5rem;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(4px);
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid rgba(255,255,255,0.3);
}

.cal-list-item:hover {
    background: rgba(var(--corpColorRGB), 0.35);
    border-color: rgba(var(--corpColorRGB), 0.6);
    transform: translateX(8px);
}

/* ===== NÄCHSTES EVENT – HERVORHEBUNG ===== */
.cal-list-item.next-event {
    background: linear-gradient(135deg, rgba(var(--corpColorRGB), 0.25), rgba(var(--corpColorRGB), 0.10));
    border: 2px solid var(--corpColor);
    box-shadow: 0 8px 30px -8px rgba(var(--corpColorRGB), 0.3);
    position: relative;
}

.cal-list-item.next-event::before {
    content: "⭐ Nächstes Event";
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--corpColor);
    color: #fff;
    font-family: "Barlow Condensed", system-ui, sans-serif;
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 2px 14px;
    border-radius: 20px;
    box-shadow: 0 2px 10px rgba(var(--corpColorRGB), 0.3);
}

.cal-list-item.next-event:hover {
    background: linear-gradient(135deg, rgba(var(--corpColorRGB), 0.35), rgba(var(--corpColorRGB), 0.20));
    transform: translateX(8px) scale(1.01);
    box-shadow: 0 12px 40px -10px rgba(var(--corpColorRGB), 0.4);
}

.cal-list-item.next-event .cal-item-title {
    color: var(--corpColor);
}

.cal-list-item.next-event .cal-item-arrow svg path {
    stroke: var(--corpColor);
}

/* Vergangene Events in der Liste */
.cal-list-item.past-event {
    opacity: 0.7;
}

.cal-list-item.past-event:hover {
    opacity: 0.9;
    background: rgba(100, 100, 100, 0.3);
}

.cal-month-group.current .cal-list-item:hover {
    background: rgba(255,255,255,0.3);
}

.cal-month-group.current .cal-list-item.next-event {
    background: rgba(255,255,255,0.4);
    border-color: #ffffff;
}

.cal-month-group.current .cal-list-item.next-event .cal-item-title {
    color: #ffffff;
}

.cal-month-group.current .cal-list-item.next-event::before {
    background: rgba(255,255,255,0.9);
    color: var(--corpColor);
}

.cal-month-group.current .cal-list-item.next-event .cal-item-arrow svg path {
    stroke: #ffffff;
}

/* ===== BILD IN DER LISTE – BACKGROUND-IMAGE VARIANTE ===== */
.cal-item-image {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    border-radius: 16px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.cal-list-item:hover .cal-item-image {
    transform: scale(1.05);
}

/* ===== INHALT ===== */
.cal-item-content {
    flex: 1;
}

.cal-item-date {
    font-family: "Inter", system-ui, sans-serif;
    font-weight: 400;
    font-size: 0.8rem;
    color: #2c5a4a;
    margin-bottom: 0.25rem;
    letter-spacing: 0.3px;
}

.cal-item-duration-badge {
    display: inline-block;
    margin-left: 8px;
    padding: 1px 10px;
    background: rgba(0,101,50,0.15);
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--corpColor);
}

.cal-list-item.next-event .cal-item-duration-badge {
    background: rgba(0,101,50,0.25);
}

.cal-month-group.current .cal-item-date {
    color: rgba(255,255,255,0.8);
}

.cal-month-group.current .cal-item-duration-badge {
    background: rgba(255,255,255,0.2);
    color: rgba(255,255,255,0.9);
}

.cal-item-title {
    font-family: "Barlow Condensed", system-ui, sans-serif;
    font-weight: 700;
    font-size: clamp(18px, 2.5vw, 22px);
    line-height: 1.2;
    margin: 0 0 0.25rem 0;
    color: #0d2e21;
}

.cal-month-group.current .cal-item-title {
    color: #ffffff;
}

.cal-item-location {
    font-family: "Inter", system-ui, sans-serif;
    font-weight: 400;
    font-size: 0.8rem;
    color: #5a7a6e;
}

.cal-month-group.current .cal-item-location {
    color: rgba(255,255,255,0.7);
}

/* Vergangen-Badge */
.cal-item-past-badge {
    display: inline-block;
    margin-top: 0.5rem;
    padding: 2px 8px;
    background: rgba(100, 100, 100, 0.3);
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    color: #666;
}

/* ===== PFEIL ===== */
.cal-item-arrow {
    flex-shrink: 0;
    opacity: 0.5;
    transition: opacity 0.3s, transform 0.3s;
}

.cal-list-item:hover .cal-item-arrow {
    opacity: 1;
    transform: translateX(4px);
}

.cal-item-arrow svg {
    display: block;
}

.cal-month-group.current .cal-item-arrow svg path {
    stroke: #ffffff;
}

/* ===== KEINE EVENTS ===== */
.cal-no-events {
    text-align: center;
    padding: 4rem 2rem;
    background: var(--glassBg);
    backdrop-filter: blur(var(--glassBlur));
    border-radius: var(--radius);
    border: 1px solid var(--glassBorder);
}

.cal-no-events-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.cal-no-events h3 {
    font-family: "Barlow Condensed", system-ui, sans-serif;
    font-weight: 700;
    font-size: 1.8rem;
    margin: 0 0 0.5rem 0;
    color: #006532;
}

.cal-no-events p {
    font-family: "Inter", system-ui, sans-serif;
    font-weight: 400;
    color: #5a7a6e;
    margin: 0;
}

/* ===== LOADING ===== */
.cal-loading {
    text-align: center;
    padding: 3rem;
    color: #2c5a4a;
    font-family: "Inter", system-ui, sans-serif;
}

/* ===== POPUP OVERLAY ===== */
#dahEventCalendar .cal-popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.35);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 99999;
    justify-content: center;
    align-items: center;
}
#dahEventCalendar .cal-popup-overlay.active {
    display: flex;
}

/* ===== POPUP – MIT MAX-HÖHE UND SCROLL ===== */
#dahEventCalendar .cal-popup {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.32);
    backdrop-filter: blur(22px) saturate(1.25);
    -webkit-backdrop-filter: blur(22px) saturate(1.25);
    border: 1px solid rgba(255, 255, 255, 0.55);
    border-radius: 28px;
    z-index: 100000;
    min-width: 320px;
    max-width: 680px;
    width: 90vw;
    max-height: 80vh;
    box-shadow: 0 30px 60px -16px rgba(0,0,0,0.25);
    text-align: left;
    color: #0a1a1f;
    overflow: hidden;
}

#dahEventCalendar .cal-popup.active {
    display: block;
}

/* Scrollbarer Inhalt */
#dahEventCalendar .cal-popup .cal-popup-content {
    max-height: calc(80vh - 20px);
    overflow-y: auto;
    padding: clamp(28px, 4vw, 48px) clamp(28px, 4vw, 40px);
    scrollbar-width: thin;
    scrollbar-color: var(--corpColor) rgba(255,255,255,0.3);
}

/* Webkit Scrollbar Styling */
#dahEventCalendar .cal-popup .cal-popup-content::-webkit-scrollbar {
    width: 6px;
}

#dahEventCalendar .cal-popup .cal-popup-content::-webkit-scrollbar-track {
    background: rgba(255,255,255,0.2);
    border-radius: 3px;
}

#dahEventCalendar .cal-popup .cal-popup-content::-webkit-scrollbar-thumb {
    background: var(--corpColor);
    border-radius: 3px;
}

#dahEventCalendar .cal-popup .cal-popup-content::-webkit-scrollbar-thumb:hover {
    background: #004d26;
}

/* Schließen-Button (bleibt fixiert) */
#dahEventCalendar .cal-popup .close-btn {
    position: fixed;
    top: 16px;
    right: 20px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    font-size: 1.4rem;
    cursor: pointer;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0d2e21;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 100001;
}
#dahEventCalendar .cal-popup .close-btn:hover {
    background: var(--corpColor);
    color: #F9FFEA;
    transform: translateY(-2px);
}

/* Header: Titel + Datum */
#dahEventCalendar .cal-popup-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

/* Titel */
#dahEventCalendar .cal-popup h4 {
    font-family: "Barlow Condensed", system-ui, sans-serif !important;
    font-weight: 900 !important;
    font-size: clamp(28px, 4.2vw, 38px) !important;
    color: #ffffff !important;
    background-color: var(--corpColor) !important;
    display: inline-block !important;
    padding: 6px 20px !important;
    margin: 0 !important;
    border-radius: 4px !important;
    letter-spacing: 0.02em !important;
    text-transform: uppercase !important;
    line-height: 1.1 !important;
    flex-shrink: 1;
}

/* Datum */
#dahEventCalendar .cal-popup .cal-ev-date {
    font-family: "Inter", system-ui, sans-serif;
    font-weight: 400;
    font-size: 0.9rem;
    color: #2c5a4a;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    display: inline-block;
    padding: 4px 14px;
    border-radius: 40px;
    white-space: nowrap;
    flex-shrink: 0;
    margin: 0;
    border: 1px solid rgba(255, 255, 255, 0.4);
}

/* Ort */
#dahEventCalendar .cal-popup .cal-ev-location {
    font-family: "Barlow Condensed", system-ui, sans-serif;
    font-weight: 900;
    font-size: clamp(18px, 2.8vw, 24px);
    color: var(--corpColor);
    margin: 6px 0 4px 0;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    line-height: 1.2;
}

/* ===== FORMATIERTE BESCHREIBUNG ===== */
#dahEventCalendar .cal-popup .cal-ev-desc {
    font-family: "Inter", system-ui, sans-serif;
    font-weight: 400;
    font-size: clamp(14px, 1.4vw, 16px);
    color: #13262e;
    margin: 12px 0 12px 0;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
}

/* Absätze in der Beschreibung */
#dahEventCalendar .cal-popup .cal-ev-desc p {
    margin: 0 0 12px 0;
}

#dahEventCalendar .cal-popup .cal-ev-desc p:last-child {
    margin-bottom: 0;
}

/* Zeilenumbruch */
#dahEventCalendar .cal-popup .cal-ev-desc br {
    display: block;
    margin: 4px 0;
}

/* Listen in der Beschreibung */
#dahEventCalendar .cal-popup .cal-ev-desc ul,
#dahEventCalendar .cal-popup .cal-ev-desc ol {
    margin: 8px 0 12px 0;
    padding-left: 24px;
}

#dahEventCalendar .cal-popup .cal-ev-desc ul {
    list-style-type: disc;
}

#dahEventCalendar .cal-popup .cal-ev-desc ol {
    list-style-type: decimal;
}

#dahEventCalendar .cal-popup .cal-ev-desc li {
    margin-bottom: 4px;
    line-height: 1.5;
}

/* Überschriften in der Beschreibung */
#dahEventCalendar .cal-popup .cal-ev-desc h2,
#dahEventCalendar .cal-popup .cal-ev-desc h3,
#dahEventCalendar .cal-popup .cal-ev-desc h4 {
    font-family: "Barlow Condensed", system-ui, sans-serif;
    margin: 16px 0 8px 0;
    letter-spacing: 0.01em;
}

#dahEventCalendar .cal-popup .cal-ev-desc h2 {
    font-weight: 900;
    font-size: 1.6em;
    color: #006532;
    text-transform: uppercase;
}

#dahEventCalendar .cal-popup .cal-ev-desc h3 {
    font-weight: 700;
    font-size: 1.3em;
    color: #2c5a4a;
}

#dahEventCalendar .cal-popup .cal-ev-desc h4 {
    font-weight: 600;
    font-size: 1.1em;
    color: #1a4a3a;
}

/* Fett, Kursiv etc. */
#dahEventCalendar .cal-popup .cal-ev-desc strong,
#dahEventCalendar .cal-popup .cal-ev-desc b {
    font-weight: 600;
    color: #0d2e21;
}

#dahEventCalendar .cal-popup .cal-ev-desc em,
#dahEventCalendar .cal-popup .cal-ev-desc i {
    font-style: italic;
}

/* Links in der Beschreibung */
#dahEventCalendar .cal-popup .cal-ev-desc a {
    color: #006532;
    text-decoration: underline;
    text-underline-offset: 2px;
}

#dahEventCalendar .cal-popup .cal-ev-desc a:hover {
    color: #004d26;
}

/* Event-Bild im Popup */
#dahEventCalendar .cal-popup .cal-ev-image {
    max-width: 100%;
    height: auto;
    max-height: 300px;
    border-radius: 12px;
    margin-top: 12px;
    display: none;
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

/* ===== POPUP NAVIGATION ===== */
#dahEventCalendar .cal-popup-nav {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 16px;
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.28);
}

#dahEventCalendar .cal-popup-nav button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(0, 101, 50, 0.3);
    border-radius: 50%;
    width: 36px;
    height: 36px;
    font-size: 1.1rem;
    cursor: pointer;
    color: #006532;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    font-family: "Inter", system-ui, sans-serif;
}

#dahEventCalendar .cal-popup-nav button:hover {
    background: var(--corpColor);
    color: #F9FFEA;
    transform: translateY(-2px);
}

#dahEventCalendar .cal-popup-nav button:disabled {
    opacity: 0.3;
    cursor: default;
    transform: none;
}

#dahEventCalendar .cal-popup-nav .cal-event-indicator {
    font-family: "Inter", system-ui, sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: #2c5a4a;
    min-width: 60px;
    text-align: center;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 600px) {
    #dahEventCalendar {
        padding: 1rem;
    }
    
    .cal-list-header {
        margin-bottom: 1.5rem;
    }
    
    .cal-month-group {
        padding: 1rem 1.25rem;
    }
    
    .cal-list-item {
        padding: 1rem;
        gap: 1rem;
        flex-wrap: wrap;
    }
    
    .cal-item-image {
        width: 50px;
        height: 50px;
    }
    
    .cal-item-arrow {
        margin-left: auto;
    }
    
    /* Nächstes Event - Responsive */
    .cal-list-item.next-event::before {
        content: "⭐";
        top: -8px;
        right: 10px;
        font-size: 0.8rem;
        padding: 2px 8px;
    }
    
    #dahEventCalendar .cal-popup {
        width: 95vw;
        max-height: 85vh;
    }
    
    #dahEventCalendar .cal-popup .cal-popup-content {
        padding: 1.8rem 1.4rem;
        max-height: calc(85vh - 20px);
    }
    
    #dahEventCalendar .cal-popup h4 {
        font-size: clamp(22px, 6vw, 28px) !important;
        padding: 5px 14px !important;
    }
    
    #dahEventCalendar .cal-popup .cal-ev-location {
        font-size: clamp(16px, 4vw, 20px);
    }
    
    #dahEventCalendar .cal-popup-header {
        flex-direction: column;
        gap: 8px;
    }
    
    #dahEventCalendar .cal-popup .cal-ev-image {
        max-width: 100%;
        width: 100%;
        height: auto;
    }
    
    #dahEventCalendar .cal-popup .cal-ev-desc ul,
    #dahEventCalendar .cal-popup .cal-ev-desc ol {
        padding-left: 20px;
    }
    
    #dahEventCalendar .cal-popup .cal-ev-desc h2 {
        font-size: 1.4em;
    }
    
    #dahEventCalendar .cal-popup .cal-ev-desc h3 {
        font-size: 1.2em;
    }
}

@media (max-width: 480px) {
    .cal-list-item {
        flex-direction: column;
        text-align: center;
    }
    
    .cal-item-image {
        width: 80px;
        height: 80px;
        margin-bottom: 0.5rem;
        margin-left: auto;
        margin-right: auto;
    }
    
    .cal-item-arrow {
        display: none;
    }
    
    .cal-month-header {
        justify-content: center;
    }
    
    .cal-month-line {
        display: none;
    }
    
    /* Nächstes Event - klein */
    .cal-list-item.next-event::before {
        content: "⭐";
        top: -6px;
        right: 50%;
        transform: translateX(50%);
        font-size: 0.7rem;
        padding: 2px 8px;
    }
}