.plnev-list {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: min(1240px, 100%);
    margin: 0 auto;
}

.plnev-list__cards {
    display: flex;
    flex-direction: column;
    gap: 14px;
    width: 100%;
}

.plnev-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 10px;
}

.plnev-filters__button {
    min-height: 38px;
    padding: 0 14px;
    border: 0;
    border-radius: 999px;
    background: #eef2fb;
    color: #22326f;
    font-size: 14px;
    font-weight: 800;
    cursor: pointer;
}

.plnev-filters__button.is-active {
    background: linear-gradient(135deg, #4f9533 0%, #1d4f16 100%);
    color: #fff;
}

.plnev-card-wrap {
    width: 100%;
}

.plnev-card-wrap.is-hidden {
    display: none;
}

.plnev-month-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 14px;
    border-radius: 16px;
    background: #f4f6fb;
}

.plnev-month-nav__label {
    font-size: 18px;
    font-weight: 700;
    color: #1d2350;
}

.plnev-month-nav__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 92px;
    min-height: 38px;
    padding: 0 14px;
    border-radius: 999px;
    background: linear-gradient(135deg, #4f9533 0%, #1d4f16 100%);
    color: #fff;
    text-decoration: none;
    font-weight: 700;
}

.plnev-month-nav__link.is-disabled {
    visibility: hidden;
    pointer-events: none;
}

.plnev-card {
    cursor: pointer;
    position: relative;
    border-radius: 18px;
    padding: 18px 18px 16px;
    color: #fff;
    background: linear-gradient(135deg, var(--plnev-card-start, #448c33) 0%, var(--plnev-card-end, #173f14) 100%);
    box-shadow: 0 18px 40px rgba(17, 56, 18, 0.26);
}

.plnev-card.is-live-now {
    filter: saturate(1.14) brightness(1.05);
}

.plnev-card.is-highlighted {
    box-shadow: 0 0 0 2px #ff4d4f;
}

.plnev-card__header {
    margin-bottom: 14px;
}

.plnev-card__progress {
    display: none;
    position: relative;
    height: 22px;
    margin: -2px 0 12px;
}

.plnev-card.is-live-now .plnev-card__progress {
    display: block;
}

.plnev-card__live-badge {
    position: absolute;
    top: 50%;
    right: 14px;
    transform: translateY(-50%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 20px;
    padding: 0 8px;
    border-radius: 999px;
    background: rgba(24, 34, 22, 0.72);
    color: #9cff89;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.08em;
    z-index: 3;
}

.plnev-card__progress-track {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 10px;
    transform: translateY(-50%);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.26);
}

.plnev-card__progress-track::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 16px;
    right: 16px;
    height: 4px;
    transform: translateY(-50%);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.45);
}

.plnev-card__progress-thumb {
    position: absolute;
    top: 50%;
    width: 18px;
    height: 18px;
    transform: translate(-50%, -50%);
    border-radius: 999px;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
}

.plnev-card__title-row {
    display: flex;
    align-items: center;
}

.plnev-card__gecko {
    position: absolute;
    top: -14px;
    right: 10px;
    width: 62px;
    height: auto;
    z-index: 2;
    pointer-events: none;
}

.plnev-card__title {
    margin: 0;
    font-size: 20px;
    line-height: 1.05;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.01em;
    color: #fff;
}

.plnev-card h1.plnev-card__title,
.plnev-card h2.plnev-card__title,
.plnev-card h3.plnev-card__title,
.plnev-card h4.plnev-card__title,
.plnev-card .plnev-card__title,
.plnev-card .plnev-card__title a,
.plnev-card .plnev-card__subtitle,
.plnev-card .plnev-card__subtitle a {
    color: #fff !important;
}

.plnev-card__subtitle {
    margin-top: 6px;
    font-size: 18px;
    line-height: 1.02;
    font-weight: 800;
    text-transform: uppercase;
    color: #fff;
}

.plnev-card__body {
    display: grid;
    grid-template-columns: 86px minmax(0, 300px) minmax(112px, 144px);
    gap: 12px;
    align-items: start;
}

.plnev-card__poster img,
.plnev-card__poster-placeholder {
    width: 86px;
    height: 86px;
    border-radius: 10px;
    display: block;
    object-fit: cover;
    background: rgba(255, 255, 255, 0.12);
}

.plnev-card__poster-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.plnev-card__meta {
    display: grid;
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 10px;
}

.plnev-card__date {
    display: flex;
    align-items: flex-start;
    gap: 5px;
    text-align: center;
}

.plnev-card__date-main,
.plnev-card__date-end {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.plnev-card__day,
.plnev-card__month {
    font-size: 12px;
    line-height: 1;
    font-weight: 800;
}

.plnev-card__date-number {
    margin: 4px 0 3px;
    font-size: 38px;
    line-height: 0.9;
    font-weight: 900;
}

.plnev-card__date-divider {
    margin: 17px 0 0;
    font-size: 11px;
    line-height: 1;
    font-weight: 800;
}

.plnev-card__day--end {
    margin-top: 0;
    font-size: 10px;
}

.plnev-card__date-number--end {
    margin: 2px 0 0;
    font-size: 18px;
    line-height: 0.95;
}

.plnev-card__details {
    display: flex;
    flex-direction: column;
    gap: 5px;
    min-width: 0;
}

.plnev-card__line {
    display: flex;
    align-items: flex-start;
    gap: 7px;
    min-width: 0;
}

.plnev-card__icon {
    flex: 0 0 auto;
    width: 15px;
    text-align: center;
    font-size: 13px;
    line-height: 1.3;
}

.plnev-card__line-text {
    min-width: 0;
    font-size: 13px;
    line-height: 1.3;
    font-weight: 700;
    color: #fff;
}

.plnev-card__tags {
    display: flex;
    flex-direction: column;
    gap: 7px;
    padding-top: 1px;
    justify-self: start;
    align-self: start;
    min-width: 0;
}

.plnev-card__tag-row {
    display: flex;
    gap: 8px;
    align-items: baseline;
    justify-content: flex-start;
    min-width: 0;
}

.plnev-card__tag-label {
    flex: 0 0 auto;
    font-size: 12px;
    font-style: italic;
    font-weight: 700;
    opacity: 0.95;
    color: #fff;
}

.plnev-card__tag-value {
    min-width: 0;
    font-size: 13px;
    line-height: 1.25;
    font-weight: 800;
    color: #fff;
}

.plnev-card__ticket-link {
    position: absolute;
    right: 14px;
    bottom: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 32px;
    padding: 0 12px;
    border-radius: 999px;
    background: linear-gradient(135deg, #ffb11b 0%, #ff6f0f 100%);
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    font-weight: 900;
    z-index: 2;
}

.plnev-modal[hidden] {
    display: none;
}

.plnev-modal {
    position: fixed;
    inset: 0;
    z-index: 99999;
}

.plnev-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(9, 13, 46, 0.72);
    backdrop-filter: blur(4px);
}

.plnev-modal__dialog {
    position: relative;
    z-index: 1;
    width: min(960px, calc(100vw - 24px));
    max-height: calc(100vh - 24px);
    margin: 12px auto;
    overflow: auto;
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 24px 80px rgba(10, 15, 50, 0.28);
}

.plnev-modal__close {
    position: sticky;
    top: 12px;
    left: calc(100% - 56px);
    z-index: 2;
    width: 42px;
    height: 42px;
    margin: 12px 12px 0 auto;
    border: 0;
    border-radius: 999px;
    background: rgba(34, 44, 128, 0.08);
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
}

.plnev-modal__content {
    padding: 4px 24px 24px;
}

.plnev-card--modal-summary {
    margin-bottom: 28px;
}

.plnev-modal-card__gallery {
    display: grid;
    gap: 12px;
    margin-top: 18px;
    margin-bottom: 22px;
}

.plnev-modal-card__cover {
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 18px;
    object-fit: contain;
    background: #111;
}

.plnev-modal-card__thumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.plnev-modal-card__thumb-button {
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
    border-radius: 12px;
    overflow: hidden;
    opacity: 0.72;
}

.plnev-modal-card__thumb-button.is-active {
    opacity: 1;
    box-shadow: 0 0 0 3px rgba(36, 52, 200, 0.2);
}

.plnev-modal-card__thumb {
    width: 88px;
    height: 68px;
    border-radius: 12px;
    object-fit: cover;
}

.plnev-modal-card__description {
    color: #22294a;
    font-size: 16px;
    line-height: 1.65;
    margin-bottom: 20px;
}

.plnev-modal-card__posts {
    display: grid;
    gap: 16px;
    margin-bottom: 20px;
}

.plnev-modal-card__post {
    display: grid;
    grid-template-columns: 150px minmax(0, 1fr);
    gap: 18px;
    align-items: start;
    padding: 18px 20px;
    border-radius: 28px;
    background: linear-gradient(135deg, #ffffff 0%, #f7fbf7 100%);
    box-shadow: inset 0 0 0 1px rgba(160, 198, 168, 0.36), 0 10px 32px rgba(148, 184, 152, 0.18);
    text-decoration: none;
}

.plnev-modal-card__post-image {
    width: 150px;
    height: 150px;
    border-radius: 20px;
    object-fit: cover;
    display: block;
    background: #eef4ef;
}

.plnev-modal-card__post-image.is-placeholder {
    background: #eef4ef;
}

.plnev-modal-card__post-content {
    min-width: 0;
}

.plnev-modal-card__post-title {
    margin-bottom: 10px;
    color: #28303d;
    font-size: 28px;
    line-height: 1.06;
    font-weight: 800;
}

.plnev-modal-card__post-excerpt {
    color: #8b8f96;
    font-size: 20px;
    line-height: 1.28;
    letter-spacing: 0.02em;
}

.plnev-modal-card__ticket-button {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 58px;
    margin-top: 12px;
    margin-bottom: 26px;
    padding: 0 20px;
    border-radius: 18px;
    background: linear-gradient(135deg, #ffb11b 0%, #ff6f0f 100%);
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    font-weight: 900;
    box-shadow: 0 14px 28px rgba(255, 132, 25, 0.26);
}

.plnev-modal-card__footer-actions {
    margin-bottom: 20px;
}

.plnev-modal-card__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.plnev-modal-card__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 46px;
    padding: 0 16px;
    border-radius: 999px;
    background: #eff2fb;
    color: #1a245f;
    text-decoration: none;
    font-weight: 800;
}

.plnev-modal-card__button.is-ticket {
    background: linear-gradient(135deg, #ffb11b 0%, #ff6f0f 100%);
    color: #fff;
}

.plnev-modal-card__button-icon {
    font-size: 16px;
}

.plnev-modal-card__location-name {
    margin-top: 10px;
    color: #20284a;
    font-size: 18px;
    font-weight: 800;
}

.plnev-modal-card__meta-list {
    display: grid;
    gap: 8px;
    margin-top: 14px;
}

.plnev-modal-card__meta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    color: #2a3156;
    font-size: 15px;
    line-height: 1.35;
}

.plnev-modal-card__meta-label {
    font-weight: 900;
}

.plnev-modal-card__meta-value {
    font-weight: 600;
}

.plnev-modal-card__map {
    margin-top: 24px;
    overflow: hidden;
    border-radius: 18px;
    background: #f2f5ff;
}

.plnev-modal-card__map iframe {
    width: 100%;
    height: 320px;
    border: 0;
    display: block;
}

.plnev-empty,
.plnev-error {
    padding: 18px 20px;
    border-radius: 16px;
    background: #f6f8fd;
    color: #27315b;
    font-weight: 700;
}

@media (max-width: 760px) {
    .plnev-card__body {
        grid-template-columns: 72px minmax(0, 1fr) minmax(92px, 120px);
        gap: 10px;
    }

    .plnev-card__tags {
        grid-column: auto;
        padding-top: 0;
    }

    .plnev-card__poster img,
    .plnev-card__poster-placeholder {
        width: 72px;
        height: 72px;
    }

    .plnev-card__title {
        font-size: 18px;
    }

    .plnev-card__subtitle {
        font-size: 15px;
    }

    .plnev-card__gecko {
        top: -10px;
        right: 8px;
        width: 52px;
    }

    .plnev-modal__content {
        padding: 4px 16px 20px;
    }
}

@media (max-width: 540px) {
    .plnev-month-nav {
        flex-wrap: wrap;
        justify-content: center;
    }

    .plnev-card {
        padding: 16px;
    }

    .plnev-card__body {
        grid-template-columns: 72px minmax(0, 1fr);
        gap: 8px 12px;
    }

    .plnev-card__meta {
        grid-template-columns: 72px minmax(0, 1fr);
        gap: 10px;
    }

    .plnev-card__tags {
        grid-column: 2;
        grid-row: 2;
        gap: 6px;
        margin-top: 4px;
        width: 100%;
    }

    .plnev-card__tag-row {
        display: grid;
        grid-template-columns: 54px minmax(0, 1fr);
        gap: 8px;
        align-items: start;
    }

    .plnev-card__date {
        gap: 4px;
    }

    .plnev-card__date-divider {
        margin-top: 12px;
    }

    .plnev-card__details {
        padding-top: 2px;
    }

    .plnev-card__line {
        gap: 6px;
    }

    .plnev-card__line-text,
    .plnev-card__tag-label,
    .plnev-card__tag-value {
        line-height: 1.2;
    }

    .plnev-card__tag-label {
        padding-top: 1px;
    }

    .plnev-card__date-number {
        font-size: 32px;
    }

    .plnev-card__date-number--end {
        font-size: 16px;
    }

    .plnev-card__date-divider {
        margin-top: 14px;
    }

    .plnev-card__line-text,
    .plnev-card__tag-value {
        font-size: 12px;
    }

    .plnev-card__tag-label {
        font-size: 11px;
    }

    .plnev-modal-card__post {
        grid-template-columns: 96px minmax(0, 1fr);
        gap: 12px;
        padding: 14px;
        border-radius: 20px;
    }

    .plnev-modal-card__post-image {
        width: 96px;
        height: 96px;
        border-radius: 14px;
    }

    .plnev-modal-card__post-title {
        font-size: 20px;
    }

    .plnev-modal-card__post-excerpt {
        font-size: 16px;
    }
}
