/* Premium page — isolated from the shared application styles. */

body[data-page="premium"] {
    background: var(--purple);
}

.premium-v2 {
    --premium-panel: #15102a;
    --premium-panel-raised: #1c1535;
    --premium-faint: rgba(255, 255, 240, 0.08);
    --premium-line: rgba(255, 255, 240, 0.16);
    --premium-muted: rgba(255, 255, 240, 0.67);
    position: relative;
    isolation: isolate;
    display: block;
    width: 100%;
    overflow: hidden;
    color: var(--ivory);
    background: var(--purple);
}

.premium-v2::before {
    content: "";
    position: absolute;
    z-index: -1;
    inset: 0 0 auto;
    height: 760px;
    pointer-events: none;
    background:
        radial-gradient(circle at 82% 18%, rgba(220, 20, 60, 0.2), transparent 31%),
        radial-gradient(circle at 16% 10%, rgba(153, 0, 0, 0.14), transparent 28%),
        linear-gradient(rgba(255, 255, 240, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 240, 0.025) 1px, transparent 1px);
    background-size: auto, auto, 64px 64px, 64px 64px;
    -webkit-mask-image: linear-gradient(to bottom, #000 0%, transparent 92%);
    mask-image: linear-gradient(to bottom, #000 0%, transparent 92%);
}

.premium-v2 h1,
.premium-v2 h2,
.premium-v2 h3,
.premium-v2 p {
    margin: 0;
}

.premium-v2-kicker {
    color: var(--crimson-bright);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.premium-v2-hero {
    display: grid;
    grid-template-columns: minmax(0, 1180px);
    justify-content: center;
    place-items: center;
    width: min(1320px, calc(100% - 68px));
    min-height: 610px;
    margin: 0 auto;
    padding: 112px 0 96px;
}

.premium-v2-hero-copy {
    display: grid;
    justify-items: center;
    gap: 24px;
    width: 100%;
    text-align: center;
}

.premium-v2-hero h1 {
    max-width: none;
    color: var(--white);
    font-size: clamp(54px, 7vw, 94px);
    font-weight: 700;
    line-height: 0.92;
    letter-spacing: -0.025em;
    text-transform: uppercase;
    white-space: nowrap;
}

.premium-v2-lede {
    max-width: 760px;
    color: var(--premium-muted);
    font-size: clamp(18px, 1.7vw, 23px);
    line-height: 1.55;
}

.premium-v2-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 8px;
}

.premium-v2 .premium-v2-button,
.premium-v2 .premium-v2-plan-action {
    width: auto;
    min-height: 48px;
    padding: 10px 22px;
    font-size: 16px;
    font-weight: 600;
}

.premium-v2-plans {
    padding: 104px 34px 118px;
    background: linear-gradient(180deg, rgba(255, 255, 240, 0.035), rgba(255, 255, 240, 0.012));
    border-block: 1px solid var(--premium-line);
}

.premium-v2-section-heading {
    display: grid;
    gap: 15px;
    width: min(760px, 100%);
    margin: 0 auto 48px;
    text-align: center;
}

.premium-v2-section-heading .premium-v2-kicker {
    justify-self: center;
}

.premium-v2-section-heading h2 {
    color: var(--white);
    font-size: clamp(40px, 4.2vw, 64px);
    line-height: 0.98;
    text-transform: uppercase;
}

.premium-v2-section-heading > p:last-child {
    color: var(--premium-muted);
    font-size: 18px;
    line-height: 1.6;
}

.premium-v2-billing-selector {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 7px;
    width: min(620px, 100%);
    margin: 4px auto 3px;
    padding: 7px;
    background: rgba(13, 6, 34, 0.62);
    border: 1px solid var(--premium-line);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.2);
}

.premium-v2-billing-option {
    display: grid;
    gap: 5px;
    min-width: 0;
    min-height: 78px;
    padding: 13px 18px;
    color: var(--premium-muted);
    background: transparent;
    border: 1px solid transparent;
    font: inherit;
    text-align: left;
    cursor: pointer;
    transition: color 160ms ease, background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.premium-v2-billing-option strong {
    color: var(--ivory);
    font-size: 20px;
    line-height: 1.1;
}

.premium-v2-billing-option-heading {
    display: flex;
    flex-wrap: wrap;
    gap: 7px 10px;
    align-items: center;
    justify-content: space-between;
}

.premium-v2-billing-saving {
    display: inline-flex;
    align-items: center;
    min-height: 23px;
    padding: 3px 7px;
    color: var(--white);
    background: var(--crimson);
    border: 1px solid rgba(220, 20, 60, 0.55);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.04em;
    line-height: 1;
    text-transform: uppercase;
}

.premium-v2-billing-option small {
    font-size: 12px;
    line-height: 1.35;
}

.premium-v2-billing-option:hover:not(.is-active) {
    color: var(--ivory);
    background: rgba(255, 255, 240, 0.055);
    border-color: rgba(255, 255, 240, 0.13);
}

.premium-v2-billing-option.is-active {
    color: rgba(13, 6, 34, 0.7);
    background: var(--ivory);
    border-color: var(--ivory);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.22);
}

.premium-v2-billing-option.is-active strong {
    color: var(--purple);
}

.premium-v2-billing-option.is-active .premium-v2-billing-saving {
    color: var(--white);
}

.premium-v2-billing-option:active {
    transform: translateY(1px);
}

.premium-v2-plan-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
    width: min(1160px, 100%);
    margin: 0 auto;
}

.premium-v2-plan-card {
    position: relative;
    display: grid;
    grid-template-rows: auto auto 1fr auto;
    gap: 28px;
    min-width: 0;
    min-height: 660px;
    padding: clamp(28px, 3.2vw, 48px);
    background: var(--premium-panel);
    border: 1px solid var(--premium-line);
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.24);
}

.premium-v2-plan-free {
    border-top: 4px solid rgba(255, 255, 240, 0.36);
}

.premium-v2-plan-premium {
    background:
        radial-gradient(circle at 100% 0%, rgba(220, 20, 60, 0.18), transparent 38%),
        var(--premium-panel-raised);
    border-color: rgba(220, 20, 60, 0.56);
    border-top: 4px solid var(--crimson-bright);
}

.premium-v2-plan-header {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 20px;
}

.premium-v2-plan-header > div {
    display: grid;
    gap: 9px;
}

.premium-v2-plan-label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: max-content;
    min-height: 25px;
    padding: 4px 9px;
    color: var(--ivory);
    background: rgba(255, 255, 240, 0.09);
    border: 1px solid rgba(255, 255, 240, 0.18);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    line-height: 1;
    text-transform: uppercase;
}

.premium-v2-plan-premium .premium-v2-plan-label {
    color: var(--white);
    background: rgba(220, 20, 60, 0.17);
    border-color: rgba(220, 20, 60, 0.52);
}

.premium-v2-plan-header h3 {
    color: var(--white);
    font-size: clamp(42px, 4vw, 58px);
    line-height: 1;
}

.premium-v2-price {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    align-items: baseline;
    justify-content: flex-end;
    color: var(--premium-muted);
    text-align: right;
}

.premium-v2-price strong {
    color: var(--white);
    font-size: clamp(29px, 3vw, 40px);
    line-height: 1;
}

.premium-v2-price-prefix {
    flex-basis: 100%;
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.premium-v2-plan-intro {
    max-width: 440px;
    color: var(--premium-muted);
    font-size: 17px;
    line-height: 1.55;
}

.premium-v2-feature-list {
    display: grid;
    align-content: start;
    gap: 0;
    margin: 0;
    padding: 0;
    list-style: none;
}

.premium-v2-feature-list li {
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 13px;
    align-items: start;
    padding: 18px 0;
    border-top: 1px solid var(--premium-faint);
}

.premium-v2-feature-list li:last-child {
    border-bottom: 1px solid var(--premium-faint);
}

.premium-v2-feature-list li > span:last-child {
    display: grid;
    gap: 4px;
}

.premium-v2-feature-list strong {
    color: var(--white);
    font-size: 18px;
    line-height: 1.2;
}

.premium-v2-feature-list small {
    color: var(--premium-muted);
    font-size: 14px;
    line-height: 1.42;
}

.premium-v2-feature-list li.is-limited strong,
.premium-v2-feature-list li.is-limited small {
    color: rgba(255, 255, 240, 0.5);
}

.premium-v2-feature-state {
    display: grid;
    place-items: center;
    width: 29px;
    height: 29px;
    border-radius: 50%;
    font-size: 15px;
    font-weight: 800;
}

.premium-v2-feature-state.is-included {
    color: var(--white);
    background: var(--crimson);
}

.premium-v2-feature-state.is-limited {
    color: rgba(255, 255, 240, 0.62);
    background: rgba(255, 255, 240, 0.09);
}

.premium-v2 .premium-v2-plan-action {
    justify-self: stretch;
    color: var(--ivory);
    border-color: rgba(255, 255, 240, 0.42);
}

.premium-v2-unavailable {
    display: grid;
    place-items: center;
    min-height: 50px;
    padding: 10px 16px;
    color: rgba(255, 255, 240, 0.72);
    background: rgba(255, 255, 240, 0.055);
    border: 1px solid rgba(255, 255, 240, 0.17);
    font-weight: 600;
    text-align: center;
}

.premium-v2-plan-status {
    display: grid;
    gap: 10px;
}

.premium-v2-billing-summary {
    min-height: 20px;
    color: var(--ivory);
    font-size: 13px;
    line-height: 1.45;
    text-align: center;
}

.premium-v2-price-note {
    color: rgba(255, 255, 240, 0.46);
    font-size: 11px;
    line-height: 1.4;
    text-align: center;
}

.premium-v2-showcase {
    width: min(1320px, calc(100% - 68px));
    margin: 0 auto;
    padding: 120px 0 130px;
}

.premium-v2-section-heading-wide {
    width: min(900px, 100%);
    margin-bottom: 74px;
}

.premium-v2-experience {
    display: grid;
    grid-template-columns: minmax(250px, 0.72fr) minmax(0, 1.55fr);
    gap: clamp(42px, 6vw, 90px);
    align-items: center;
    padding: 72px 0;
    border-top: 1px solid var(--premium-line);
}

.premium-v2-experience:last-child {
    border-bottom: 1px solid var(--premium-line);
}

.premium-v2-experience-copy {
    display: grid;
    gap: 15px;
}

.premium-v2-experience-number {
    color: rgba(255, 255, 240, 0.3);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.12em;
}

.premium-v2-experience-copy h3 {
    color: var(--white);
    font-size: clamp(34px, 3.5vw, 50px);
    line-height: 1.02;
    text-transform: uppercase;
}

.premium-v2-experience-copy > p:not(.premium-v2-kicker):not(.premium-v2-availability) {
    color: var(--premium-muted);
    font-size: 17px;
    line-height: 1.62;
}

.premium-v2-availability {
    margin-top: 6px !important;
    padding-top: 16px;
    color: var(--ivory);
    border-top: 1px solid var(--premium-faint);
    font-size: 13px;
    line-height: 1.45;
}

.premium-v2-availability span {
    display: inline-grid;
    place-items: center;
    width: 21px;
    height: 21px;
    margin-right: 7px;
    color: var(--white);
    background: var(--crimson);
    border-radius: 50%;
    font-size: 11px;
}

.premium-v2-ui-window {
    min-width: 0;
    overflow: hidden;
    color: var(--ink);
    background: var(--ivory);
    border-top: 4px solid var(--crimson);
    box-shadow: 0 34px 90px rgba(0, 0, 0, 0.34);
}

.premium-v2-match-window {
    background: #f4f0e5;
    box-shadow:
        0 34px 90px rgba(0, 0, 0, 0.34),
        0 0 0 1px rgba(255, 255, 240, 0.08);
}

.premium-v2-window-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    min-height: 50px;
    padding: 12px 18px;
    color: var(--ivory);
    background: #17112c;
    border-bottom: 1px solid rgba(255, 255, 240, 0.14);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-align: center;
    text-transform: uppercase;
}

.premium-v2-match-summary {
    display: grid;
    grid-template-columns: auto 58px minmax(150px, 1fr) auto;
    gap: 11px 16px;
    align-items: center;
    padding: 20px 22px;
    background:
        linear-gradient(90deg, rgba(42, 168, 118, 0.12), rgba(42, 168, 118, 0.025) 68%),
        #f8f5eb;
    border-bottom: 1px solid rgba(13, 6, 34, 0.1);
}

.premium-v2-result,
.premium-v2-kda {
    display: grid;
    gap: 2px;
}

.premium-v2-result span {
    color: #177653;
    font-size: 17px;
    font-weight: 700;
}

.premium-v2-result strong,
.premium-v2-kda span {
    color: var(--muted);
    font-size: 12px;
}

.premium-v2-champion-mark {
    display: block;
    width: 56px;
    height: 56px;
    object-fit: cover;
    background: var(--purple);
    border: 2px solid #24956d;
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(42, 168, 118, 0.1);
}

.premium-v2-kda strong {
    color: var(--ink);
    font-size: 20px;
}

.premium-v2-match-meta {
    display: grid;
    gap: 3px;
    text-align: right;
}

.premium-v2-match-meta span {
    color: var(--muted);
    font-size: 11px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.premium-v2-match-meta strong {
    color: var(--ink);
    font-size: 13px;
}

.premium-v2-item-slots {
    display: flex;
    grid-column: 3 / -1;
    flex-wrap: wrap;
    gap: 4px;
}

.premium-v2-item-slots img {
    display: block;
    width: 29px;
    height: 29px;
    object-fit: cover;
    color: transparent;
    background: #251c36;
    border: 1px solid rgba(13, 6, 34, 0.22);
    border-radius: 3px;
}

.premium-v2-analysis-panel {
    display: grid;
    gap: 19px;
    padding: 24px;
}

.premium-v2-analysis-heading {
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 18px;
}

.premium-v2-analysis-heading > div {
    display: grid;
    gap: 5px;
    max-width: 600px;
}

.premium-v2-analysis-heading span,
.premium-v2-metrics span {
    color: var(--muted);
    font-size: 11px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.premium-v2-analysis-heading strong {
    color: var(--ink);
    font-size: clamp(22px, 2.4vw, 28px);
    line-height: 1.08;
}

.premium-v2-analysis-heading p {
    max-width: 590px;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.45;
}

.premium-v2-analysis-heading .premium-v2-signal {
    padding: 7px 9px;
    color: #6b2840;
    background: rgba(153, 0, 0, 0.075);
    border: 1px solid rgba(153, 0, 0, 0.12);
    font-weight: 700;
    white-space: nowrap;
}

.premium-v2-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
}

.premium-v2-metrics p {
    display: grid;
    gap: 3px;
    padding: 12px 13px;
    background: #ece7dc;
    border: 1px solid rgba(13, 6, 34, 0.075);
    border-left: 3px solid rgba(153, 0, 0, 0.42);
}

.premium-v2-metrics strong {
    color: var(--crimson);
    font-size: 18px;
}

.premium-v2-trajectory {
    display: grid;
    gap: 7px;
    min-width: 0;
    margin: 0;
    padding: 12px;
    color: var(--ivory);
    background: #26223f;
}

.premium-v2-trajectory {
    gap: 10px;
    padding: 14px 15px 12px;
    background:
        radial-gradient(circle at 76% 14%, rgba(220, 20, 60, 0.09), transparent 34%),
        #1c1831;
    border: 1px solid rgba(255, 255, 240, 0.09);
}

.premium-v2-trajectory svg {
    display: block;
    width: 100%;
    height: auto;
}

.premium-v2-trajectory figcaption {
    color: rgba(255, 255, 240, 0.58);
    font-size: 10px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.premium-v2-trajectory figcaption {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 15px;
    align-items: center;
    text-transform: none;
}

.premium-v2-trajectory figcaption span {
    display: inline-flex;
    gap: 6px;
    align-items: center;
}

.premium-v2-trajectory figcaption i {
    display: inline-block;
    width: 17px;
    height: 3px;
    border-radius: 999px;
}

.premium-v2-trajectory figcaption i.is-win-like {
    background: #43c897;
}

.premium-v2-trajectory figcaption i.is-loss-like {
    background: var(--crimson-bright);
}

.premium-v2-trajectory figcaption i.is-review {
    width: 8px;
    height: 8px;
    background: var(--crimson-bright);
    border: 1px solid var(--ivory);
    border-radius: 50%;
}

.premium-v2-match-zone.is-win-like {
    fill: rgba(42, 168, 118, 0.075);
}

.premium-v2-match-zone.is-loss-like {
    fill: rgba(220, 20, 60, 0.075);
}

.premium-v2-match-axis {
    stroke: rgba(255, 255, 240, 0.5);
    stroke-width: 1.1;
}

.premium-v2-match-segment {
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 3.8;
}

.premium-v2-match-segment.is-win-like {
    stroke: #43c897;
}

.premium-v2-match-segment.is-loss-like {
    stroke: var(--crimson-bright);
}

.premium-v2-match-phase-line,
.premium-v2-review-line {
    stroke: rgba(255, 255, 240, 0.31);
    stroke-dasharray: 4 5;
    stroke-width: 1;
}

.premium-v2-match-zone-label,
.premium-v2-match-phase-label,
.premium-v2-match-tick {
    fill: rgba(255, 255, 240, 0.55);
    font-size: 10px;
}

.premium-v2-match-zone-label.is-win-like {
    fill: #64d9ad;
}

.premium-v2-match-zone-label.is-loss-like {
    fill: #f26d87;
}

.premium-v2-chart-grid line {
    stroke: rgba(255, 255, 240, 0.13);
    stroke-width: 1;
}

.premium-v2-chart-grid .is-baseline {
    stroke: rgba(255, 255, 240, 0.36);
    stroke-dasharray: 6 7;
}

.premium-v2-chart-area {
    fill: rgba(220, 20, 60, 0.12);
}

.premium-v2-chart-line {
    fill: none;
    stroke: #f5dce1;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 4;
}

.premium-v2-review-line {
    stroke: rgba(255, 255, 240, 0.7);
}

.premium-v2-review-dot {
    fill: var(--crimson-bright);
    stroke: var(--ivory);
    stroke-width: 1.7;
}

.premium-v2-review-label {
    fill: var(--ivory);
    font-size: 12px;
}

.premium-v2-review-moments {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.premium-v2-review-moments article {
    display: grid;
    gap: 10px;
    min-width: 0;
    padding: 15px;
    background: rgba(13, 6, 34, 0.045);
    border: 1px solid rgba(13, 6, 34, 0.1);
    border-top: 3px solid var(--crimson);
}

.premium-v2-review-moments article > div {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 10px;
}

.premium-v2-review-moments article > div span {
    color: var(--crimson);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.premium-v2-review-moments article > div strong {
    color: var(--ink);
    font-size: 17px;
}

.premium-v2-review-moments p {
    color: var(--muted);
    font-size: 13px;
    line-height: 1.45;
}

.premium-v2-review-moments ul {
    display: grid;
    gap: 5px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.premium-v2-review-moments li {
    display: flex;
    justify-content: space-between;
    gap: 8px;
    padding-top: 5px;
    color: var(--muted);
    border-top: 1px solid rgba(13, 6, 34, 0.07);
    font-size: 11px;
}

.premium-v2-review-moments li strong {
    color: var(--ink);
    text-align: right;
}

.premium-v2-data-provenance {
    display: flex;
    gap: 8px;
    align-items: center;
    color: var(--muted);
    font-size: 10px;
    letter-spacing: 0.045em;
    line-height: 1.4;
    text-transform: uppercase;
}

.premium-v2-data-provenance span {
    width: 7px;
    height: 7px;
    flex: 0 0 auto;
    background: #24956d;
    border-radius: 50%;
    box-shadow: 0 0 0 3px rgba(42, 168, 118, 0.12);
}

.premium-v2 a:focus-visible {
    outline: 3px solid var(--ivory);
    outline-offset: 4px;
}

@media (max-width: 980px) {
    .premium-v2-hero {
        min-height: 0;
        padding: 88px 0 76px;
    }

    .premium-v2-plan-grid,
    .premium-v2-experience {
        grid-template-columns: 1fr;
    }

    .premium-v2-plan-card {
        min-height: 0;
    }

    .premium-v2-experience-copy {
        max-width: 680px;
    }

}

@media (max-width: 680px) {
    .premium-v2-hero,
    .premium-v2-showcase {
        width: min(100% - 40px, 1320px);
    }

    .premium-v2-hero {
        padding: 64px 0 58px;
    }

    .premium-v2-hero h1 {
        font-size: clamp(25px, 8vw, 54px);
    }

    .premium-v2-lede,
    .premium-v2-section-heading > p:last-child {
        font-size: 16px;
    }

    .premium-v2-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .premium-v2 .premium-v2-button {
        width: 100%;
    }

    .premium-v2-plans {
        padding: 74px 20px 82px;
    }

    .premium-v2-section-heading {
        margin-bottom: 34px;
        text-align: left;
    }

    .premium-v2-section-heading .premium-v2-kicker {
        justify-self: start;
    }

    .premium-v2-billing-selector {
        width: 100%;
        margin-inline: 0;
    }

    .premium-v2-billing-option {
        min-height: 72px;
        padding: 12px;
    }

    .premium-v2-plan-card {
        gap: 23px;
        padding: 26px 22px;
    }

    .premium-v2-plan-header {
        align-items: start;
        flex-direction: column;
    }

    .premium-v2-price {
        justify-content: flex-start;
        text-align: left;
    }

    .premium-v2-price-prefix {
        flex-basis: auto;
    }

    .premium-v2-showcase {
        padding: 82px 0 90px;
    }

    .premium-v2-section-heading-wide {
        margin-bottom: 45px;
    }

    .premium-v2-experience {
        gap: 30px;
        padding: 52px 0;
    }

    .premium-v2-analysis-heading {
        align-items: start;
        flex-direction: column;
    }

    .premium-v2-match-summary {
        grid-template-columns: 56px minmax(0, 1fr);
        gap: 12px;
        padding: 15px;
    }

    .premium-v2-result {
        grid-column: 1 / -1;
    }

    .premium-v2-champion-mark {
        grid-column: 1;
    }

    .premium-v2-kda {
        grid-column: 2;
    }

    .premium-v2-match-meta {
        grid-column: 1 / -1;
        text-align: left;
    }

    .premium-v2-item-slots {
        grid-column: 1 / -1;
    }

    .premium-v2-analysis-panel {
        padding: 15px;
    }

    .premium-v2-analysis-heading .premium-v2-signal {
        white-space: normal;
    }

    .premium-v2-metrics,
    .premium-v2-review-moments {
        grid-template-columns: 1fr;
    }

    .premium-v2-review-moments li {
        align-items: start;
    }
}

@media (prefers-reduced-motion: reduce) {
    .premium-v2 *,
    .premium-v2 *::before,
    .premium-v2 *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }
}
