/* ── Pink Radio Events Archive — scoped to .pevt-masthead, .pevt-month-strip, .pevt ── */

.post-type-archive-event .dhrk-ajax-content,
.post-type-archive-event .qw-content-wrapper,
.tax-eventseries .dhrk-ajax-content,
.tax-music_genre .dhrk-ajax-content,
.tax-venue .dhrk-ajax-content,
.tax-eventseries .qw-content-wrapper,
.tax-music_genre .qw-content-wrapper,
.tax-venue .qw-content-wrapper { background: #0d0d0d; }

.post-type-archive-event #qwFixedHeader::after,
.tax-eventseries #qwFixedHeader::after,
.tax-music_genre #qwFixedHeader::after,
.tax-venue #qwFixedHeader::after {
    content: '';
    position: absolute; bottom: -2px; left: 0; right: 0; height: 2px;
    background: linear-gradient(90deg, #e8005a 0%, rgba(232,0,90,0.3) 50%, transparent 100%);
    z-index: 1; pointer-events: none;
}

/* ── VARIABLES ── */
.pevt-masthead,
.pevt-month-strip,
.pevt,
.pevt-modal-overlay {
    --pevt-pink:   #e8005a;
    --pevt-pink-d: rgba(232,0,90,0.12);
    --pevt-bg:     #0d0d0d;
    --pevt-s1:     #141414;
    --pevt-s2:     #1c1c1c;
    --pevt-border: rgba(255,255,255,0.07);
    --pevt-bh:     rgba(255,255,255,0.14);
    --pevt-text:   #f0f0f0;
    --pevt-muted:  #888;
    --pevt-dim:    #555;
}

/* ── MASTHEAD ── */
.pevt-masthead {
    position: relative;
    width: 100%;
    padding: 5.5rem 0 3.5rem;
    background: linear-gradient(115deg, rgba(178, 0, 232, 0.12) 0%, rgba(232,0,90,0.02) 42%, transparent 66%);
    overflow: hidden;
    -webkit-font-smoothing: antialiased;
}
.pevt-masthead::after {
    content: 'EVENTS';
    position: absolute;
    right: 1%; top: 50%;
    transform: translateY(-65%);
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(100px, 14vw, 195px);
    letter-spacing: 14px;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255,255,255,0.045);
    line-height: 1; pointer-events: none; user-select: none; white-space: nowrap;
}
.pevt-masthead__inner {
    max-width: 1180px;
    margin: 0 2.5rem auto;
    padding: 0 2rem;
    position: relative; z-index: 1;
    display: flex; align-items: flex-end; justify-content: space-between; gap: 2rem;
}
.pevt-masthead__left { flex: 1; }
.pevt-masthead__eyebrow { display: flex; align-items: center; gap: 8px; margin-bottom: 0.5rem; }
.pevt-masthead__label {
    font-family: 'DM Sans', sans-serif; font-size: 10px; font-weight: 500;
    letter-spacing: 3px; text-transform: uppercase; color: var(--pevt-pink);
}
.pevt-masthead__dot { width: 3px; height: 3px; border-radius: 50%; background: var(--pevt-dim); flex-shrink: 0; }
.pevt-count { font-size: 11px; color: var(--pevt-dim); font-weight: 300; }
.post-type-archive-event .pevt-masthead__title,
.tax-eventseries .pevt-masthead__title,
.tax-music_genre .pevt-masthead__title,
.tax-venue .pevt-masthead__title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(80px, 12vw, 160px);
    letter-spacing: 8px; line-height: 0.88; margin: 0 0 0.9rem;
    background: linear-gradient(95deg, #ffffff 30%, var(--pevt-pink) 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

/* Genre/venue names are long, multi-word Greek phrases — "EVENTS" sizing wraps
   them into 3 lines that collide with the eyebrow/count above and the
   sub-line below, so give the taxonomy masthead its own, calmer scale. */
.tax-eventseries .pevt-masthead__title,
.tax-music_genre .pevt-masthead__title,
.tax-venue .pevt-masthead__title {
    font-size: clamp(34px, 5.2vw, 64px);
    letter-spacing: 1px;
    line-height: 1.15;
    max-width: 70%;
}
@media (max-width: 680px) {
    .tax-eventseries .pevt-masthead__title,
    .tax-music_genre .pevt-masthead__title,
    .tax-venue .pevt-masthead__title { max-width: 100%; }
}
.pevt-masthead__sub { font-size: 13px; color: var(--pevt-muted); font-weight: 300; margin: 0; }
.pevt-masthead__stats { display: flex; gap: 2.5rem; padding-bottom: 4px; flex-shrink: 0; }
.pevt-stat { text-align: right; }
.pevt-stat__num { font-family: 'Bebas Neue', sans-serif; font-size: 48px; line-height: 1; color: var(--pevt-pink); }
.pevt-stat__label {
    font-family: 'DM Sans', sans-serif; font-size: 10px; letter-spacing: 2px;
    text-transform: uppercase; color: var(--pevt-dim); margin-top: 2px;
}

/* ── MONTH STRIP ── */
.pevt-month-strip {
    background: #111;
    border-top: 1px solid var(--pevt-border);
    border-bottom: 1px solid var(--pevt-border);
    display: flex; align-items: stretch;
    overflow-x: auto; scrollbar-width: none;
    padding: 0 2rem;
    -webkit-font-smoothing: antialiased;
}
.pevt-month-strip::-webkit-scrollbar { display: none; }
.pevt-month-tab {
    padding: 1rem 1.6rem;
    cursor: pointer;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 15px; letter-spacing: 2px;
    color: var(--pevt-dim);
    border-bottom: 3px solid transparent;
    border-top: none; border-left: none; border-right: none;
    white-space: nowrap; transition: color .2s;
    user-select: none;
    display: flex; flex-direction: column; align-items: center; gap: 2px;
    background: none;
}
.pevt-month-tab__count {
    font-family: 'DM Sans', sans-serif; font-size: 10px; letter-spacing: 1px;
    color: transparent; transition: color .2s;
}
.pevt-month-tab.active { color: var(--pevt-text); border-bottom-color: var(--pevt-pink); }
.pevt-month-tab.active .pevt-month-tab__count { color: var(--pevt-pink); }
.pevt-month-tab:hover { color: var(--pevt-muted); }

/* ── MAIN CONTAINER ── */
.pevt {
    font-family: 'DM Sans', sans-serif;
    background: var(--pevt-bg); color: var(--pevt-text);
    padding: 0 2rem 5rem;
    max-width: 1180px; margin: 0 auto;
    -webkit-font-smoothing: antialiased;
}

/* ── CONTROLS ── */
.pevt-controls {
    display: flex; align-items: center; justify-content: space-between;
    padding: 1.5rem 0 1.25rem;
    border-bottom: 1px solid var(--pevt-border);
    flex-wrap: wrap; gap: 1rem;
}
.pevt-controls__left { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
.pevt-genre-btn {
    font-family: 'DM Sans', sans-serif; font-size: 11px; font-weight: 500;
    letter-spacing: 1px; text-transform: uppercase;
    padding: 6px 14px; border: 1px solid var(--pevt-border);
    border-radius: 3px; background: none; cursor: pointer;
    color: var(--pevt-muted); transition: all .2s;
}
.pevt-genre-btn:hover { border-color: var(--pevt-bh); color: var(--pevt-text); }
.pevt-genre-btn.active { border-color: var(--pevt-pink); color: var(--pevt-pink); background: var(--pevt-pink-d); }
.pevt-controls__right { display: flex; align-items: center; gap: 8px; }
.pevt-search-box {
    display: flex; align-items: center;
    background: var(--pevt-s1); border: 1px solid var(--pevt-border);
    border-radius: 3px; overflow: hidden;
}
.pevt-search-box input {
    border: none; outline: none; padding: 7px 12px;
    font-family: 'DM Sans', sans-serif; font-size: 12px;
    background: transparent; color: var(--pevt-text); width: 180px;
}
.pevt-search-box input::placeholder { color: var(--pevt-dim); }
.pevt-search-box button {
    background: none; border: none; padding: 7px 10px;
    cursor: pointer; color: var(--pevt-dim);
    display: flex; align-items: center; transition: color .2s;
}
.pevt-search-box button svg { width: 13px; height: 13px; }
.pevt-search-box button:hover { color: var(--pevt-pink); }
.pevt-view-btns { display: flex; gap: 3px; }
.pevt-vbtn {
    width: 34px; height: 34px; border-radius: 3px;
    border: 1px solid var(--pevt-border); background: transparent; color: var(--pevt-dim);
    cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all .15s;
}
.pevt-vbtn svg { width: 13px; height: 13px; stroke: currentColor; fill: none; }
.pevt-vbtn:hover { border-color: var(--pevt-bh); color: var(--pevt-muted); }
.pevt-vbtn.active { border-color: var(--pevt-pink); color: var(--pevt-pink); background: var(--pevt-pink-d); }

/* ── NEXT UP BANNER ── */
.pevt-next-up {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 2rem;
    background: var(--pevt-s1);
    padding: 1.25rem 1.5rem;
    margin: 1.5rem 0 0;
    cursor: pointer;
    transition: background .2s;
    border-left: 3px solid var(--pevt-pink);
}
.pevt-next-up:hover { background: var(--pevt-s2); }
.pevt-next-up__label {
    font-family: 'DM Sans', sans-serif; font-size: 10px; font-weight: 500;
    letter-spacing: 2.5px; text-transform: uppercase; color: var(--pevt-pink);
}
.pevt-next-up__center { display: flex; align-items: center; gap: 1.5rem; }
.pevt-next-up__date {
    display: flex; flex-direction: column; align-items: center;
    background: var(--pevt-pink); padding: .5rem .9rem; border-radius: 3px; flex-shrink: 0;
}
.pevt-next-up__day { font-family: 'Bebas Neue', sans-serif; font-size: 30px; line-height: 1; color: #fff; }
.pevt-next-up__month {
    font-family: 'DM Sans', sans-serif; font-size: 9px; letter-spacing: 2px;
    text-transform: uppercase; color: rgba(255,255,255,0.75);
}
.pevt-next-up__title { font-family: 'Bebas Neue', sans-serif; font-size: 24px; letter-spacing: .5px; color: var(--pevt-text); }
.pevt-next-up__meta {
    font-family: 'DM Sans', sans-serif; font-size: 11px; font-weight: 300;
    color: var(--pevt-dim); margin-top: 3px; display: flex; gap: 12px;
}
.pevt-next-up__badge {
    font-family: 'Bebas Neue', sans-serif; font-size: 11px; letter-spacing: 2px;
    background: var(--pevt-pink-d); border: 1px solid var(--pevt-pink); color: var(--pevt-pink);
    padding: 4px 12px; border-radius: 3px;
    display: flex; align-items: center; gap: 6px; flex-shrink: 0;
}
.pevt-pulse {
    width: 6px; height: 6px; background: var(--pevt-pink); border-radius: 50%;
    animation: pevtPulse 1.5s ease-in-out infinite;
}
@keyframes pevtPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%       { opacity: .3; transform: scale(.6); }
}

/* ── GRID VIEW ── */
.pevt-grid {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 14px; margin-top: 1.5rem;
    animation: pevtFadeUp .4s ease both;
}
.pevt-card {
    background: var(--pevt-s1); overflow: hidden;
    cursor: pointer; transition: transform .25s, box-shadow .25s;
    display: flex; flex-direction: column; position: relative;
    text-decoration: none; color: inherit;
    border: 1px solid var(--pevt-border); border-radius: 3px;
}
.pevt-card:hover { transform: translateY(-4px); box-shadow: 0 10px 32px rgba(0,0,0,.5); border-color: rgba(255,255,255,0.14); z-index: 1; }
.pevt-card__poster {
    aspect-ratio: 2/3; overflow: hidden;
    background: #1a1218; position: relative; flex-shrink: 0;
}
.pevt-card__poster img {
    width: 100%; height: 100%; object-fit: cover; display: block;
    transition: transform .5s; filter: brightness(.9);
}
.pevt-card:hover .pevt-card__poster img { transform: scale(1.05); filter: brightness(1); }
.pevt-card__poster-ph {
    width: 100%; height: 100%;
    background: linear-gradient(160deg, #1a0a10 0%, #2d1520 60%, #1a0a10 100%);
    display: flex; align-items: center; justify-content: center;
}
.pevt-card__date {
    position: absolute; top: 12px; left: 12px;
    background: rgba(13,13,13,.9); padding: 6px 10px; border-radius: 2px; text-align: center;
}
.pevt-card__date-day { font-family: 'Bebas Neue', sans-serif; font-size: 22px; line-height: 1; color: #fff; }
.pevt-card__date-mon {
    font-family: 'DM Sans', sans-serif; font-size: 9px; letter-spacing: 2px;
    text-transform: uppercase; color: rgba(255,255,255,.55);
}
.pevt-card__genre {
    position: absolute; top: 12px; right: 12px;
    font-family: 'DM Sans', sans-serif; font-size: 9px; font-weight: 500;
    letter-spacing: 1.5px; text-transform: uppercase;
    background: var(--pevt-pink); color: #fff; padding: 4px 8px; border-radius: 2px;
}
.pevt-card__body { padding: .9rem .9rem 1.1rem; flex: 1; display: flex; flex-direction: column; }
.pevt-card__venue {
    font-family: 'DM Sans', sans-serif; font-size: 9px; font-weight: 500;
    letter-spacing: 1.5px; text-transform: uppercase; color: var(--pevt-pink);
    margin-bottom: .3rem; display: flex; align-items: center; gap: 4px;
}
.pevt-card__venue svg { width: 8px; height: 8px; stroke: currentColor; fill: none; opacity: .6; flex-shrink: 0; }
.pevt-card__title {
    font-family: 'Bebas Neue', sans-serif; font-size: 18px; line-height: 1.1;
    color: var(--pevt-text); margin-bottom: .3rem; flex: 1; letter-spacing: .5px;
}
.pevt-card__artists { font-size: 11px; color: var(--pevt-muted); font-weight: 300; margin-bottom: .7rem; line-height: 1.4; }
.pevt-card__footer { display: flex; align-items: center; justify-content: space-between; }
.pevt-ticket-btn {
    font-family: 'Bebas Neue', sans-serif; font-size: 11px; letter-spacing: 2px;
    color: var(--pevt-pink); border: 1px solid var(--pevt-pink);
    padding: 5px 12px; border-radius: 2px; cursor: pointer; text-decoration: none;
    transition: all .2s; display: inline-flex; align-items: center; gap: 5px; background: none;
}
.pevt-ticket-btn svg { width: 10px; height: 10px; stroke: currentColor; fill: none; }
.pevt-ticket-btn:hover { background: var(--pevt-pink); color: #fff; }
.pevt-card__time { font-family: 'DM Sans', sans-serif; font-size: 10px; color: var(--pevt-dim); }

/* ── LIST VIEW ── */
.pevt-list { display: flex; flex-direction: column; margin-top: 2px; }
.pevt-list-item {
    display: grid; grid-template-columns: 72px 80px 1fr auto;
    align-items: center; gap: 0;
    border-bottom: 1px solid var(--pevt-border);
    cursor: pointer; transition: background .15s; overflow: hidden;
    text-decoration: none; color: inherit;
    animation: pevtFadeUp .4s ease both;
}
.pevt-list-item:hover { background: var(--pevt-pink-d); }
.pevt-list-item:hover .pevt-li__title { color: var(--pevt-pink); }
.pevt-li__date {
    padding: 1.1rem 1.25rem 1.1rem 0;
    display: flex; flex-direction: column; align-items: flex-start;
}
.pevt-li__day { font-family: 'Bebas Neue', sans-serif; font-size: 30px; line-height: 1; color: var(--pevt-text); }
.pevt-li__weekday {
    font-family: 'DM Sans', sans-serif; font-size: 9px; letter-spacing: 1.5px;
    text-transform: uppercase; color: var(--pevt-dim);
}
.pevt-li__poster { width: 64px; height: 64px; border-radius: 2px; object-fit: cover; display: block; background: var(--pevt-s2); flex-shrink: 0; }
.pevt-li__body { padding: 1.1rem 1.25rem; border-left: 2px solid transparent; transition: border-color .2s; }
.pevt-list-item:hover .pevt-li__body { border-left-color: var(--pevt-pink); }
.pevt-li__venue {
    font-family: 'DM Sans', sans-serif; font-size: 10px; font-weight: 500;
    letter-spacing: 1.5px; text-transform: uppercase; color: var(--pevt-pink); margin-bottom: 2px;
}
.pevt-li__title {
    font-family: 'Bebas Neue', sans-serif; font-size: 20px; letter-spacing: .5px;
    color: var(--pevt-text); margin-bottom: 2px; transition: color .2s;
}
.pevt-li__artists { font-size: 12px; color: var(--pevt-muted); font-weight: 300; }
.pevt-li__action { padding: 0 1.25rem 0 1rem; display: flex; align-items: center; gap: .6rem; }
.pevt-li__genre {
    font-family: 'DM Sans', sans-serif; font-size: 9px; font-weight: 500; letter-spacing: 1.5px;
    text-transform: uppercase; background: var(--pevt-s2); color: var(--pevt-muted);
    padding: 4px 8px; border-radius: 2px; white-space: nowrap;
}

/* ── CALENDAR VIEW ── */
.pevt-calendar { padding-top: 1.5rem; animation: pevtFadeUp .4s ease both; }
.pevt-cal__month { margin-bottom: 3rem; }
.pevt-cal__header { display: flex; align-items: center; margin-bottom: 1rem; }
.pevt-cal__title { font-family: 'Bebas Neue', sans-serif; font-size: 24px; letter-spacing: 2px; color: var(--pevt-text); }
.pevt-cal__grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 2px; }
.pevt-cal__dow {
    font-family: 'DM Sans', sans-serif; font-size: 9px; font-weight: 500;
    letter-spacing: 2px; text-transform: uppercase; color: var(--pevt-dim);
    text-align: center; padding: .5rem 0;
}
.pevt-cal__day {
    background: var(--pevt-s1); min-height: 68px; padding: .45rem .5rem;
    position: relative; cursor: default; transition: background .15s;
}
.pevt-cal__day.has-event { cursor: pointer; }
.pevt-cal__day.has-event:hover { background: var(--pevt-s2); }
.pevt-cal__day.other-month { background: transparent; opacity: .2; }
.pevt-cal__day.today { box-shadow: inset 0 0 0 2px var(--pevt-pink); }
.pevt-cal__day-num {
    font-family: 'DM Sans', sans-serif; font-size: 10px; letter-spacing: 1px;
    color: var(--pevt-dim); margin-bottom: .3rem;
}
.pevt-cal__day.today .pevt-cal__day-num { color: var(--pevt-pink); font-weight: 600; }
.pevt-cal__event-dot {
    background: var(--pevt-s2); color: var(--pevt-text);
    font-family: 'Bebas Neue', sans-serif; font-size: 10px; letter-spacing: .5px;
    padding: 2px 5px; border-radius: 1px; margin-bottom: 2px;
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis; line-height: 1.4;
}
.pevt-cal__event-dot.accent { background: var(--pevt-pink); color: #fff; }

/* ── MODAL ── */
.pevt-modal-overlay {
    position: fixed; inset: 0;
    background: rgba(0,0,0,.82); z-index: 300;
    display: flex; align-items: center; justify-content: center;
    opacity: 0; pointer-events: none; transition: opacity .25s; padding: 2rem;
}
.pevt-modal-overlay.open { opacity: 1; pointer-events: all; }
.pevt-modal {
    background: var(--pevt-s1); max-width: 660px; width: 100%;
    border-radius: 4px; overflow: hidden;
    display: grid; grid-template-columns: 200px 1fr;
    transform: translateY(20px); transition: transform .25s;
    border: 1px solid var(--pevt-border);
}
.pevt-modal-overlay.open .pevt-modal { transform: translateY(0); }
.pevt-modal__poster { background: var(--pevt-s2); position: relative; min-height: 260px; }
.pevt-modal__poster img { width: 100%; height: 100%; object-fit: cover; display: block; }
.pevt-modal__poster-ph {
    width: 100%; height: 100%; min-height: 260px;
    background: linear-gradient(160deg, #1a0a10, #2d1520);
    display: flex; align-items: center; justify-content: center;
}
.pevt-modal__body { padding: 1.75rem; display: flex; flex-direction: column; }
.pevt-modal__close {
    background: none; border: none; cursor: pointer; color: var(--pevt-dim);
    align-self: flex-end; padding: 0; transition: color .2s; margin-bottom: .9rem;
}
.pevt-modal__close svg { width: 18px; height: 18px; }
.pevt-modal__close:hover { color: var(--pevt-pink); }
.pevt-modal__tag {
    font-family: 'DM Sans', sans-serif; font-size: 10px; font-weight: 500;
    letter-spacing: 2px; text-transform: uppercase; color: var(--pevt-pink);
    margin-bottom: .6rem; display: flex; align-items: center; gap: 8px;
}
.pevt-modal__tag::before { content: ''; display: block; width: 14px; height: 1px; background: var(--pevt-pink); }
.pevt-modal__title {
    font-family: 'Bebas Neue', sans-serif; font-size: 32px; line-height: 1;
    color: var(--pevt-text); letter-spacing: .5px; margin-bottom: .9rem;
}
.pevt-modal__details { display: flex; flex-direction: column; gap: .5rem; margin-bottom: 1rem; }
.pevt-modal__detail {
    display: flex; align-items: flex-start; gap: 9px;
    font-size: 12px; color: var(--pevt-muted); font-weight: 300;
}
.pevt-modal__detail svg { width: 12px; height: 12px; stroke: currentColor; fill: none; flex-shrink: 0; margin-top: 1px; }
.pevt-modal__desc {
    font-size: 13px; color: var(--pevt-dim); line-height: 1.65;
    margin-bottom: 1.5rem; font-style: italic;
}
.pevt-modal__actions { display: flex; gap: .6rem; margin-top: auto; flex-wrap: wrap; }
.pevt-modal__btn-primary {
    font-family: 'Bebas Neue', sans-serif; font-size: 12px; letter-spacing: 2px;
    background: var(--pevt-pink); color: #fff; border: none;
    padding: 10px 18px; border-radius: 2px; cursor: pointer;
    text-decoration: none; display: flex; align-items: center; gap: 7px; transition: opacity .2s;
}
.pevt-modal__btn-primary:hover { opacity: .85; }
.pevt-modal__btn-primary svg { width: 12px; height: 12px; stroke: currentColor; fill: none; }
.pevt-modal__btn-sec {
    font-family: 'Bebas Neue', sans-serif; font-size: 12px; letter-spacing: 2px;
    background: none; color: var(--pevt-muted);
    border: 1px solid var(--pevt-border); padding: 10px 18px; border-radius: 2px;
    cursor: pointer; transition: all .2s; text-decoration: none;
    display: inline-flex; align-items: center;
}
.pevt-modal__btn-sec:hover { border-color: var(--pevt-bh); color: var(--pevt-text); }

/* ── EMPTY ── */
.pevt-empty { text-align: center; padding: 5rem 0; }
.pevt-empty strong { display: block; font-family: 'Bebas Neue', sans-serif; font-size: 42px; color: var(--pevt-text); margin-bottom: .5rem; }
.pevt-empty p { font-family: 'DM Sans', sans-serif; font-size: 11px; letter-spacing: 1px; color: var(--pevt-dim); }

/* ── PAGINATION ── */
.pevt-pagination { display: flex; align-items: center; justify-content: center; gap: 6px; margin-top: 2.5rem; }
.pevt-pbtn {
    height: 36px; min-width: 36px; padding: 0 10px;
    border: 1px solid var(--pevt-border); background: transparent; color: var(--pevt-muted);
    font-family: 'DM Sans', sans-serif; font-size: 13px;
    cursor: pointer; border-radius: 3px;
    display: flex; align-items: center; justify-content: center; transition: all .15s;
}
.pevt-pbtn:hover:not(:disabled) { border-color: var(--pevt-bh); color: var(--pevt-text); }
.pevt-pbtn.active { background: var(--pevt-pink); border-color: var(--pevt-pink); color: #fff; }
.pevt-pbtn:disabled { opacity: .3; cursor: default; }
.pevt-pbtn svg { width: 13px; height: 13px; stroke: currentColor; fill: none; }
.pevt-pdots { color: var(--pevt-dim); font-size: 13px; padding: 0 4px; }

/* ── ANIMATION ── */
@keyframes pevtFadeUp {
    from { opacity: 0; transform: translateY(10px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
    .pevt-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 960px) {
    .pevt-grid { grid-template-columns: repeat(2, 1fr); }
    .pevt-masthead__inner { flex-direction: column; align-items: flex-start; }
    .pevt-masthead__stats { align-self: flex-start; }
    .pevt-modal { grid-template-columns: 1fr; }
    .pevt-modal__poster { min-height: 220px; }
}
@media (max-width: 600px) {
    .pevt { padding: 0 1rem 4rem; }
    .pevt-masthead { padding: 3rem 0 0; }
    .pevt-masthead::after { font-size: 90px; }
    .pevt-masthead__inner { padding: 0 1rem 2rem; }
    .pevt-month-strip { padding: 0 1rem; }
    .pevt-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
    .pevt-list-item { grid-template-columns: 56px 1fr; }
    .pevt-li__poster { display: none; }
    .pevt-li__action { display: none; }
}
