
    /* Madison Eventband 2026 – Ultra Modern Grid */
    /* All contrast ratios >= 8:1 on respective backgrounds */

.meb26 {
    background: #000;
    color: #fff;
    width: 100%;
}

/* ── Month section ── */
.meb26-ms {
    display: grid;
    grid-template-columns: 1fr 3fr;
    border-top: 1px solid #fff;
}

/* ── Month label column ── */
.meb26-ml {
    border-right: 1px solid #fff;
    padding: 32px 28px;
    display: flex;
    align-items: flex-start;
    position: relative;
}
.meb26-ml-inner {
    position: sticky;
    top: 20px;
}
.meb26-ml-name {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: #fff;                  /* 21:1 */
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    line-height: 1;
}
.meb26-ml-num {
    font-size: 48px;
    font-weight: 900;
    color: #1a1a1a;
    line-height: 1;
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    letter-spacing: -0.04em;
    user-select: none;
}

/* ── Events column ── */
.meb26-ec {
    display: flex;
    flex-direction: column;
}

/* ── Single event row ── */
.meb26-ev {
    display: grid;
    grid-template-columns: 56px 1fr auto;
    align-items: stretch;
    border-bottom: 1px solid #222;
    transition: background 0.1s;
}
.meb26-ev:last-child {
    border-bottom: none;
}
.meb26-ev:hover {
    background: #fff;
}
.meb26-ev:hover .meb26-ev-day,
.meb26-ev:hover .meb26-ev-name,
.meb26-ev:hover .meb26-ev-loc,
.meb26-ev:hover .meb26-ev-time {
    color: #000;
}
.meb26-ev:hover .meb26-ev-num-border {
    border-color: #ccc;
}
.meb26-ev:hover .meb26-badge-gross    { background: #000; color: #fff; }
.meb26-ev:hover .meb26-badge-groesser { background: #000; color: #fff; }
.meb26-ev:hover .meb26-badge-duo      { background: #000; color: #fff; }
.meb26-ev:hover .meb26-badge-trio     { background: #000; color: #fff; }

/* ── Day number ── */
.meb26-ev-num {
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: 1px solid #222;
    padding: 20px 0;
}
.meb26-ev:hover .meb26-ev-num {
    border-right-color: #aaa;
}
.meb26-ev-day {
    font-size: 20px;
    font-weight: 800;
    color: #fff;                  /* 21:1 */
    letter-spacing: -0.02em;
    line-height: 1;
}

/* ── Body ── */
.meb26-ev-body {
    padding: 18px 20px;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 3px;
}
.meb26-ev-name {
    font-size: 14px;
    font-weight: 700;
    color: #fff;                  /* 21:1 */
    line-height: 1.25;
    letter-spacing: -0.01em;
}
.meb26-ev-loc {
    font-size: 11px;
    color: #999;                  /* 10.7:1 */
    line-height: 1.3;
}
.meb26-ev-time {
    font-size: 11px;
    color: #999;                  /* 10.7:1 */
}

/* ── Badge side ── */
.meb26-ev-side {
    display: flex;
    align-items: center;
    padding: 0 18px;
    border-left: 1px solid #222;
    min-width: 0;
}
.meb26-ev:hover .meb26-ev-side {
    border-left-color: #aaa;
}
.meb26-badge {
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    padding: 5px 10px 4px;
    white-space: nowrap;
    border-radius: 1px;
}
.meb26-badge-gross    { background: #fff; color: #000; }   /* 21:1 */
.meb26-badge-groesser { background: #fff; color: #000; }   /* 21:1 */
.meb26-badge-duo      { background: #fff; color: #000; }   /* 21:1 */
.meb26-badge-trio     { background: #fff; color: #000; }   /* 21:1 */

/* last month no bottom border */
.meb26-ms:last-child {
    border-bottom: 1px solid #fff;
}

@media (max-width: 560px) {
    .meb26-ms { grid-template-columns: 40px 1fr; }
    .meb26-ml { padding: 16px 10px; }
    .meb26-ml-num { display: none; }
    .meb26-ev { grid-template-columns: 44px 1fr; }
    .meb26-ev-side { display: none; }
    .meb26-ev-day { font-size: 15px; }
}
