/* NWA homepage visual story */
.home-story {
    --home-canvas: #070a10;
    overflow: hidden;
    background: var(--home-canvas);
}

.home-story-section {
    position: relative;
    isolation: isolate;
    padding: clamp(78px, 8vw, 132px) 0;
}

.home-story-section::after {
    position: absolute;
    z-index: 0;
    right: 0;
    bottom: -1px;
    left: 0;
    height: 120px;
    pointer-events: none;
    content: "";
    background: linear-gradient(transparent, var(--section-next, #070a10));
}

.home-story-section > .container,
.home-story-section > .home-brand-stage,
.home-story-section > .discord-community {
    position: relative;
    z-index: 1;
}

.home-story-heading {
    display: grid;
    grid-template-columns: 66px minmax(0, 1fr) auto;
    align-items: end;
    gap: 20px;
    margin-bottom: clamp(34px, 5vw, 58px);
}

.home-story-heading h2,
.home-community-heading h2 {
    margin: 5px 0 0;
    font-size: clamp(45px, 6.2vw, 82px);
    font-style: italic;
    line-height: .88;
    letter-spacing: -.035em;
    text-transform: uppercase;
}

.home-story-number {
    color: rgba(255, 255, 255, .14);
    font-family: var(--display);
    font-size: 38px;
    font-weight: 900;
    line-height: 1;
}

/* Opening broadcast */
.home-story-hero {
    position: relative;
    isolation: isolate;
    min-height: min(880px, calc(100vh - 130px));
    overflow: hidden;
    padding: clamp(72px, 8vw, 118px) 0 0;
    background:
        radial-gradient(circle at 18% 28%, rgba(255, 106, 0, .16), transparent 30rem),
        radial-gradient(circle at 86% 56%, rgba(47, 107, 255, .2), transparent 34rem),
        linear-gradient(115deg, #0d121b, #070a10 52%, #0a101d);
}

.home-story-hero::before,
.home-next-bell::before,
.home-season-motion::before {
    position: absolute;
    z-index: 0;
    inset: 0;
    pointer-events: none;
    content: "";
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    filter: saturate(.78) contrast(1.04);
    transform: scale(1.012);
}

.home-story-hero::before {
    background-image:
        linear-gradient(110deg, rgba(7, 10, 16, .79), rgba(7, 10, 16, .81) 52%, rgba(8, 13, 22, .79)),
        linear-gradient(to bottom, rgba(7, 10, 16, .16), rgba(7, 10, 16, .65) 92%),
        url("../images/home/arena-wrestle-empire.webp");
    background-position: center 42%;
}

.home-story-hero::after {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 220px;
    pointer-events: none;
    content: "";
    background: linear-gradient(transparent, #0a0f17 78%);
}

.home-story-grid {
    position: absolute;
    inset: 0;
    opacity: .55;
    background-image:
        linear-gradient(rgba(255, 255, 255, .028) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .028) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: linear-gradient(to bottom, #000, transparent 92%);
}

.home-story-beam {
    position: absolute;
    top: -18%;
    width: 34%;
    height: 125%;
    opacity: .18;
    transform: skewX(-14deg);
    filter: blur(1px);
}

.home-story-beam-impact {
    left: -20%;
    background: linear-gradient(90deg, transparent, rgba(255, 106, 0, .46), transparent);
}

.home-story-beam-lockdown {
    right: -16%;
    background: linear-gradient(90deg, transparent, rgba(47, 107, 255, .46), transparent);
}

.home-story-hero-inner {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(390px, .82fr);
    align-items: center;
    gap: clamp(44px, 7vw, 104px);
}

.home-story-copy h1 {
    max-width: 780px;
    margin: 0 0 24px;
    font-size: clamp(70px, 8.8vw, 130px);
    font-style: italic;
    line-height: .77;
    letter-spacing: -.055em;
    text-transform: uppercase;
    text-shadow: 0 24px 80px rgba(0, 0, 0, .65);
}

.home-story-copy h1 span {
    color: transparent;
    -webkit-text-stroke: 1px var(--gold-bright);
    filter: drop-shadow(0 0 24px rgba(242, 182, 50, .17));
}

.home-story-copy > p {
    max-width: 610px;
    margin: 0 0 32px;
    color: #b8c0ce;
    font-size: 17px;
    line-height: 1.72;
}

.home-broadcast-focus {
    position: relative;
    display: flex;
    min-height: 530px;
    overflow: hidden;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid color-mix(in srgb, var(--focus-color) 32%, rgba(255, 255, 255, .12));
    border-radius: 3px;
    background:
        radial-gradient(circle at 100% 0, color-mix(in srgb, var(--focus-color) 18%, transparent), transparent 25rem),
        linear-gradient(145deg, rgba(18, 25, 37, .92), rgba(7, 11, 18, .9));
    box-shadow: 0 30px 85px rgba(0, 0, 0, .38), inset 0 1px rgba(255, 255, 255, .045);
}

@supports ((-webkit-backdrop-filter: blur(1px)) or (backdrop-filter: blur(1px))) {
    .home-broadcast-focus {
        background:
            radial-gradient(circle at 100% 0, color-mix(in srgb, var(--focus-color) 18%, transparent), transparent 25rem),
            linear-gradient(145deg, rgba(18, 25, 37, .84), rgba(7, 11, 18, .8));
        -webkit-backdrop-filter: blur(12px) saturate(.86);
        backdrop-filter: blur(12px) saturate(.86);
    }
}

.home-broadcast-focus::before {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 3px;
    content: "";
    background: var(--focus-color);
    box-shadow: 0 0 22px color-mix(in srgb, var(--focus-color) 72%, transparent);
}

.home-broadcast-poster {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .6;
}

.home-broadcast-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(6, 9, 14, .2), rgba(6, 9, 14, .96) 72%);
}

.home-broadcast-topline,
.home-broadcast-copy,
.home-broadcast-empty {
    position: relative;
    z-index: 1;
}

.home-broadcast-topline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 24px 26px;
}

.home-broadcast-copy {
    padding: 35px 36px;
}

.home-broadcast-copy h2,
.home-broadcast-empty h2 {
    margin: 10px 0 13px;
    font-size: clamp(42px, 4.4vw, 66px);
    font-style: italic;
    line-height: .88;
    text-transform: uppercase;
}

.home-broadcast-copy time {
    display: block;
    margin-top: 18px;
    color: #d6dbe5;
    font-size: 13px;
    letter-spacing: .05em;
    text-transform: uppercase;
}

.home-countdown {
    display: block;
    margin-top: 5px;
    color: var(--gold-bright);
    font-family: var(--display);
    font-size: 22px;
    letter-spacing: .03em;
    text-transform: uppercase;
}

.home-broadcast-copy p {
    display: grid;
    gap: 4px;
    margin: 20px 0 0;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, .12);
    color: #fff;
    font-family: var(--display);
    font-size: 18px;
    font-weight: 800;
    text-transform: uppercase;
}

.home-broadcast-copy p span {
    color: var(--focus-color);
    font: 800 10px Inter, sans-serif;
    letter-spacing: .12em;
}

.home-broadcast-empty {
    display: flex;
    min-height: 530px;
    flex-direction: column;
    justify-content: center;
    padding: 38px;
    background: linear-gradient(to top, rgba(4, 7, 12, .28), transparent 68%);
}

.home-broadcast-empty svg {
    width: 150px;
    margin-bottom: 32px;
}

.home-broadcast-empty p {
    color: var(--muted);
}

.home-story-scorebar {
    position: relative;
    z-index: 4;
    display: grid;
    grid-template-columns: repeat(4, minmax(110px, 1fr)) minmax(190px, 1.25fr);
    margin-top: clamp(50px, 7vw, 86px);
    border: 1px solid rgba(255, 255, 255, .1);
    border-bottom: 0;
    background: rgba(10, 15, 23, .86);
    box-shadow: 0 -20px 70px rgba(0, 0, 0, .25);
    backdrop-filter: blur(16px);
}

.home-story-scorebar > div,
.home-story-scorebar > a {
    display: flex;
    min-height: 88px;
    flex-direction: column;
    justify-content: center;
    padding: 18px 22px;
    border-right: 1px solid rgba(255, 255, 255, .09);
}

.home-story-scorebar span {
    color: #7f8999;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.home-story-scorebar strong {
    margin-top: 4px;
    color: #fff;
    font-family: var(--display);
    font-size: 21px;
    text-transform: uppercase;
}

.home-story-scorebar > a {
    align-items: center;
    flex-direction: row;
    justify-content: space-between;
    border-right: 0;
    color: #090b0f;
    background: linear-gradient(135deg, var(--gold-bright), var(--gold));
    font-family: var(--display);
    font-weight: 900;
    letter-spacing: .05em;
    text-transform: uppercase;
}

.home-story-scorebar > a span {
    color: inherit;
    font-size: 18px;
}

/* Event runway */
.home-next-bell {
    --section-next: #0b1018;
    background:
        radial-gradient(circle at 12% 30%, rgba(242, 182, 50, .07), transparent 30rem),
        linear-gradient(#0a0f17, #080c13);
}

@media (min-width: 821px) {
    .home-next-bell::before {
        background-image:
            linear-gradient(105deg, rgba(8, 12, 19, .82), rgba(8, 12, 19, .77) 55%, rgba(8, 12, 19, .83)),
            linear-gradient(to bottom, #0a0f17 0, rgba(8, 12, 19, .38) 18%, rgba(8, 12, 19, .51) 84%, #080c13 100%),
            url("../images/home/arena-break-the-bank.webp");
        background-position: center 38%;
    }
}

.home-event-runway {
    border-top: 1px solid rgba(255, 255, 255, .14);
}

.home-runway-event {
    position: relative;
    display: grid;
    grid-template-columns: 58px 150px minmax(0, 1fr) 42px;
    align-items: center;
    gap: 25px;
    min-height: 126px;
    padding: 20px 24px 20px 8px;
    border-bottom: 1px solid rgba(255, 255, 255, .11);
    color: #fff;
    transition: background 180ms ease, padding 180ms ease;
}

.home-runway-event::before {
    position: absolute;
    top: 18px;
    bottom: 18px;
    left: 0;
    width: 3px;
    content: "";
    background: var(--event-color);
    box-shadow: 0 0 22px var(--event-color);
    transform: scaleY(.25);
    transition: transform 180ms ease;
}

.home-runway-event:hover,
.home-runway-event.is-featured {
    padding-left: 18px;
    background: linear-gradient(90deg, color-mix(in srgb, var(--event-color) 11%, transparent), transparent 72%);
}

.home-runway-event:hover::before,
.home-runway-event.is-featured::before {
    transform: scaleY(1);
}

.home-runway-index {
    color: rgba(255, 255, 255, .18);
    font-family: var(--display);
    font-size: 28px;
    font-weight: 900;
}

.home-runway-date,
.home-runway-name {
    display: flex;
    flex-direction: column;
}

.home-runway-date strong {
    color: var(--event-color);
    font-family: var(--display);
    font-size: 29px;
    line-height: 1;
    text-transform: uppercase;
}

.home-runway-date small,
.home-runway-name small {
    margin-top: 6px;
    color: #8490a1;
    font-size: 11px;
    text-transform: uppercase;
}

.home-runway-name > strong {
    margin-top: 5px;
    font-family: var(--display);
    font-size: clamp(24px, 2.5vw, 36px);
    line-height: 1;
    text-transform: uppercase;
}

.home-runway-arrow {
    color: var(--event-color);
    font-size: 25px;
    transition: transform 180ms ease;
}

.home-runway-event:hover .home-runway-arrow {
    transform: translateX(6px);
}

.home-tournament-track {
    display: grid;
    grid-template-columns: minmax(150px, .7fr) minmax(200px, 1.2fr) minmax(200px, 1fr) minmax(160px, 1.2fr) 50px;
    align-items: center;
    gap: 22px;
    margin-top: 30px;
    padding: 25px 28px;
    border: 1px solid color-mix(in srgb, var(--tournament-color) 35%, rgba(255, 255, 255, .1));
    background: linear-gradient(105deg, color-mix(in srgb, var(--tournament-color) 10%, transparent), rgba(255, 255, 255, .025));
    color: #fff;
}

.home-tournament-track > strong {
    font-family: var(--display);
    font-size: 25px;
    text-transform: uppercase;
}

.home-tournament-track > span:not(.section-kicker):not(.home-tournament-progress) {
    color: var(--muted);
    font-size: 12px;
}

.home-tournament-progress {
    height: 4px;
    overflow: hidden;
    background: rgba(255, 255, 255, .1);
}

.home-tournament-progress i {
    display: block;
    height: 100%;
    background: var(--tournament-color);
    box-shadow: 0 0 15px var(--tournament-color);
}

.home-tournament-track b {
    color: var(--tournament-color);
    font-family: var(--display);
    font-size: 20px;
}

/* Season stakes */
.home-season-motion {
    --section-next: #090d14;
    background:
        linear-gradient(rgba(255, 255, 255, .018) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .018) 1px, transparent 1px),
        radial-gradient(circle at 86% 24%, rgba(47, 107, 255, .1), transparent 28rem),
        #0b1018;
    background-size: 86px 86px, 86px 86px, auto, auto;
}

@media (min-width: 821px) {
    .home-season-motion::before {
        background-image:
            linear-gradient(100deg, rgba(8, 12, 19, .82), rgba(8, 12, 19, .77) 56%, rgba(8, 12, 19, .83)),
            linear-gradient(to bottom, #0b1018 0, rgba(8, 13, 20, .35) 16%, rgba(8, 13, 20, .51) 82%, #090d14 100%),
            url("../images/home/arena-nwa-unleashed.webp");
        background-position: center 36%;
    }
}

.home-power-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.13fr) minmax(390px, .87fr);
    gap: clamp(26px, 4vw, 55px);
}

.home-power-leader {
    position: relative;
    display: grid;
    min-height: 590px;
    overflow: hidden;
    grid-template-columns: minmax(220px, .9fr) minmax(280px, 1fr);
    align-items: stretch;
    border: 1px solid rgba(242, 182, 50, .24);
    background:
        linear-gradient(135deg, rgba(242, 182, 50, .1), transparent 44%),
        #111824;
    box-shadow: 0 28px 80px rgba(0, 0, 0, .28);
}

.home-power-leader::after {
    position: absolute;
    right: -30px;
    bottom: -85px;
    color: rgba(242, 182, 50, .045);
    content: "01";
    font-family: var(--display);
    font-size: 300px;
    font-weight: 900;
    line-height: 1;
}

.home-leader-portrait {
    position: relative;
    z-index: 1;
    display: grid;
    min-height: 590px;
    overflow: hidden;
    place-items: center;
    background:
        radial-gradient(circle at 50% 42%, rgba(242, 182, 50, .18), transparent 48%),
        linear-gradient(135deg, #182233, #0b1019);
}

.home-leader-portrait::after {
    position: absolute;
    inset: auto 0 0;
    height: 22%;
    content: "";
    background: linear-gradient(transparent, #111824);
}

.home-leader-portrait img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center bottom;
}

.home-leader-portrait > span {
    color: var(--gold);
    font-family: var(--display);
    font-size: 110px;
    font-weight: 900;
}

.home-leader-copy {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(32px, 5vw, 64px);
}

.home-leader-rank {
    margin-top: 24px;
    color: rgba(255, 255, 255, .19);
    font-family: var(--display);
    font-size: 55px;
    font-weight: 900;
    line-height: 1;
}

.home-leader-copy h3 {
    margin: 4px 0 12px;
    font-size: clamp(48px, 5.5vw, 78px);
    font-style: italic;
    line-height: .86;
    text-transform: uppercase;
}

.home-leader-copy p {
    color: var(--muted);
}

.home-leader-rating {
    display: flex;
    width: fit-content;
    align-items: center;
    gap: 15px;
    margin: 24px 0;
    padding: 11px 15px;
    border-left: 2px solid var(--gold);
    background: rgba(255, 255, 255, .04);
}

.home-leader-rating span {
    color: var(--muted);
    font-size: 10px;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.home-leader-rating strong {
    color: var(--gold-bright);
    font-family: var(--display);
    font-size: 35px;
}

.home-stakes-column {
    display: grid;
    gap: 20px;
}

.home-current-gold,
.home-latest-final {
    border: 1px solid rgba(255, 255, 255, .12);
    background: rgba(12, 17, 26, .84);
}

.home-stakes-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 22px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.home-stakes-heading a {
    color: #d5dae4;
    font-family: var(--display);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.home-champion-line {
    display: flex;
    min-height: 86px;
    align-items: center;
    gap: 14px;
    padding: 14px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    transition: background 160ms ease;
}

.home-champion-line:hover {
    background: rgba(255, 255, 255, .04);
}

.home-champion-line > span:nth-child(2) {
    display: flex;
    min-width: 0;
    flex: 1;
    flex-direction: column;
}

.home-champion-line small {
    overflow: hidden;
    color: var(--muted);
    font-size: 10px;
    text-overflow: ellipsis;
    text-transform: uppercase;
    white-space: nowrap;
}

.home-champion-line strong {
    overflow: hidden;
    color: #fff;
    font-family: var(--display);
    font-size: 18px;
    text-overflow: ellipsis;
    text-transform: uppercase;
    white-space: nowrap;
}

.home-latest-final {
    position: relative;
    display: flex;
    min-height: 145px;
    flex-direction: column;
    justify-content: center;
    padding: 25px 65px 25px 27px;
    background:
        linear-gradient(105deg, rgba(47, 107, 255, .13), transparent),
        rgba(12, 17, 26, .84);
}

.home-latest-final > strong {
    margin: 9px 0 4px;
    color: #fff;
    font-family: var(--display);
    font-size: 28px;
    line-height: 1;
    text-transform: uppercase;
}

.home-latest-final > small {
    color: var(--muted);
}

.home-latest-final i {
    position: absolute;
    right: 26px;
    color: var(--gold);
    font-size: 27px;
    font-style: normal;
}

/* Brand act */
.home-alliance {
    --section-next: #090c12;
    padding-bottom: 0;
    background: linear-gradient(#090d14, #070a10);
}

.home-brand-stage {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    min-height: 650px;
}

.home-brand-world {
    position: relative;
    display: flex;
    overflow: hidden;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: clamp(45px, 7vw, 95px);
    color: #fff;
    text-align: center;
    background:
        radial-gradient(circle at 50% 44%, color-mix(in srgb, var(--brand-color) 34%, transparent), transparent 34rem),
        linear-gradient(145deg, color-mix(in srgb, var(--brand-color) 16%, #080b11), #070a10 72%);
    transition: flex 300ms ease, filter 300ms ease;
}

.home-brand-world:first-child {
    border-right: 1px solid rgba(255, 255, 255, .11);
}

.home-brand-world::after {
    position: absolute;
    inset: 0;
    content: "";
    background: linear-gradient(125deg, transparent 62%, color-mix(in srgb, var(--brand-color) 13%, transparent) 62.1% 76%, transparent 76.1%);
    transition: transform 350ms ease;
}

.home-brand-world:hover::after {
    transform: translateX(4%);
}

.home-brand-lines {
    position: absolute;
    inset: 0;
    opacity: .45;
    background-image:
        linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px);
    background-size: 74px 74px;
    mask-image: radial-gradient(circle at center, #000, transparent 72%);
}

.home-brand-label,
.home-brand-logo,
.home-brand-name,
.home-brand-facts,
.home-brand-enter {
    position: relative;
    z-index: 1;
}

.home-brand-label {
    color: color-mix(in srgb, var(--brand-color) 58%, white);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.home-brand-logo {
    width: min(78%, 520px);
    height: 180px;
    margin: 35px auto;
    object-fit: contain;
    transition: transform 280ms ease, filter 280ms ease;
}

.home-brand-world:hover .home-brand-logo {
    filter: drop-shadow(0 18px 30px color-mix(in srgb, var(--brand-color) 20%, transparent));
    transform: scale(1.035);
}

.home-brand-name {
    margin: 30px 0;
    font-family: var(--display);
    font-size: 80px;
    font-style: italic;
    text-transform: uppercase;
}

.home-brand-facts {
    display: flex;
    justify-content: center;
    gap: 1px;
    margin-bottom: 34px;
    background: rgba(255, 255, 255, .11);
}

.home-brand-facts > span {
    display: flex;
    min-width: 160px;
    flex-direction: column;
    padding: 14px 18px;
    background: rgba(5, 8, 13, .88);
}

.home-brand-facts strong {
    color: color-mix(in srgb, var(--brand-color) 62%, white);
    font-family: var(--display);
    font-size: 24px;
    text-transform: uppercase;
}

.home-brand-facts small {
    color: #9099a8;
    font-size: 9px;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.home-brand-enter {
    font-family: var(--display);
    font-size: 15px;
    font-weight: 900;
    letter-spacing: .07em;
    text-transform: uppercase;
}

.home-brand-enter i {
    margin-left: 8px;
    color: var(--brand-color);
    font-style: normal;
    transition: margin-left 180ms ease;
}

.home-brand-world:hover .home-brand-enter i {
    margin-left: 15px;
}

/* Editorial act */
.home-catch-up {
    --section-next: #080b11;
    background:
        radial-gradient(circle at 10% 8%, rgba(242, 182, 50, .07), transparent 27rem),
        #090c12;
}

.home-editorial-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.22fr) minmax(390px, .78fr);
    gap: clamp(26px, 4vw, 52px);
}

.home-editorial-layout.without-media {
    grid-template-columns: 1fr;
}

.home-featured-watch {
    display: flex;
    min-width: 0;
    flex-direction: column;
    border: 1px solid rgba(255, 255, 255, .13);
    background: #0d131d;
    box-shadow: 0 28px 80px rgba(0, 0, 0, .28);
}

.home-featured-art {
    position: relative;
    display: block;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    background: #06080d;
}

.home-featured-art > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 450ms ease;
}

.home-featured-watch:hover .home-featured-art > img {
    transform: scale(1.035);
}

.home-featured-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(transparent 50%, rgba(5, 8, 13, .75));
}

.home-featured-copy {
    display: flex;
    flex-direction: column;
    padding: 28px 30px 32px;
}

.home-featured-copy > strong {
    margin: 9px 0;
    color: #fff;
    font-family: var(--display);
    font-size: clamp(34px, 4vw, 54px);
    line-height: .94;
    text-transform: uppercase;
}

.home-featured-copy > small {
    color: #aab3c1;
    font-size: 14px;
    line-height: 1.55;
}

.home-featured-copy > span:last-child {
    margin-top: 18px;
    color: #778294;
    font-size: 11px;
    text-transform: uppercase;
}

.home-news-stream {
    border-top: 1px solid rgba(255, 255, 255, .12);
}

.home-news-line {
    display: grid;
    grid-template-columns: 40px minmax(0, 1fr) 28px;
    align-items: center;
    gap: 15px;
    min-height: 112px;
    padding: 18px 10px;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.home-news-line > span:first-child {
    color: rgba(255, 255, 255, .17);
    font-family: var(--display);
    font-size: 24px;
    font-weight: 900;
}

.home-news-line > span:nth-child(2) {
    display: flex;
    flex-direction: column;
}

.home-news-line small,
.home-media-quick small {
    color: var(--gold);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.home-news-line strong,
.home-media-quick strong {
    margin-top: 6px;
    color: #fff;
    font-family: var(--display);
    font-size: 21px;
    line-height: 1.05;
    text-transform: uppercase;
}

.home-news-line i {
    color: var(--gold);
    font-size: 20px;
    font-style: normal;
}

.home-media-quick {
    position: relative;
    display: grid;
    grid-template-columns: 55px minmax(0, 1fr);
    align-items: center;
    gap: 14px;
    margin-top: 13px;
    padding: 14px;
    border: 1px solid rgba(255, 255, 255, .09);
    background: rgba(255, 255, 255, .025);
}

.home-media-quick .media-play {
    position: static;
    width: 40px;
    height: 40px;
}

.home-media-quick > span:last-child {
    display: flex;
    flex-direction: column;
}

/* Community close */
.home-community-close {
    padding-bottom: 0;
    background:
        radial-gradient(circle at 84% 55%, rgba(88, 101, 242, .12), transparent 30rem),
        #080b11;
}

.home-community-heading {
    display: grid;
    grid-template-columns: 66px minmax(0, 1fr);
    gap: 20px;
    align-items: end;
    margin-bottom: 22px;
}

.home-community-close .discord-community {
    padding-top: 15px;
    padding-bottom: clamp(76px, 8vw, 120px);
    border-bottom: 0;
    background: transparent;
}

.home-community-close .discord-community-card {
    border-radius: 3px;
}

.home-story-empty {
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, .1);
    background: rgba(255, 255, 255, .025);
}

.home-story-empty h3 {
    margin: 8px 0;
    font-size: 30px;
    text-transform: uppercase;
}

.home-story-empty p,
.home-inline-empty {
    color: var(--muted);
}

@media (max-width: 1120px) {
    .home-story-hero-inner,
    .home-power-layout,
    .home-editorial-layout {
        grid-template-columns: 1fr;
    }

    .home-story-hero {
        min-height: auto;
    }

    .home-broadcast-focus {
        min-height: 470px;
    }

    .home-story-scorebar {
        grid-template-columns: repeat(4, 1fr);
    }

    .home-story-scorebar > a {
        grid-column: 1 / -1;
        min-height: 65px;
    }

    .home-power-leader {
        grid-template-columns: minmax(270px, .8fr) 1fr;
    }

    .home-brand-stage {
        min-height: 560px;
    }
}

@media (max-width: 820px) {
    .home-story-hero::before {
        background-position: 50% 28%;
    }

    .home-next-bell::before {
        background-image:
            linear-gradient(105deg, rgba(8, 12, 19, .81), rgba(8, 12, 19, .76) 55%, rgba(8, 12, 19, .82)),
            linear-gradient(to bottom, #0a0f17 0, rgba(8, 12, 19, .36) 15%, rgba(8, 12, 19, .5) 86%, #080c13 100%),
            url("../images/home/arena-break-the-bank.webp");
        background-position: 52% 28%;
    }

    .home-season-motion::before {
        background-image:
            linear-gradient(100deg, rgba(8, 12, 19, .81), rgba(8, 12, 19, .76) 56%, rgba(8, 12, 19, .82)),
            linear-gradient(to bottom, #0b1018 0, rgba(8, 13, 20, .34) 15%, rgba(8, 13, 20, .5) 84%, #090d14 100%),
            url("../images/home/arena-nwa-unleashed.webp");
        background-position: 50% 26%;
    }

    .home-story-section {
        padding: 72px 0;
    }

    .home-story-heading {
        grid-template-columns: 48px 1fr;
    }

    .home-story-heading > .text-link {
        grid-column: 2;
        justify-self: start;
    }

    .home-story-number {
        font-size: 29px;
    }

    .home-story-copy h1 {
        font-size: clamp(63px, 15vw, 95px);
    }

    .home-runway-event {
        grid-template-columns: 42px 105px minmax(0, 1fr) 28px;
        gap: 14px;
    }

    .home-tournament-track {
        grid-template-columns: 1fr auto;
    }

    .home-tournament-track > strong,
    .home-tournament-track > span:not(.section-kicker):not(.home-tournament-progress),
    .home-tournament-progress {
        grid-column: 1 / -1;
    }

    .home-power-leader {
        min-height: auto;
        grid-template-columns: 1fr;
    }

    .home-leader-portrait {
        min-height: 480px;
    }

    .home-brand-stage {
        grid-template-columns: 1fr;
    }

    .home-brand-world {
        min-height: 520px;
    }

    .home-brand-world:first-child {
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, .11);
    }
}

@media (max-width: 600px) {
    .home-story-hero {
        padding-top: 55px;
    }

    .home-story-hero-inner {
        gap: 42px;
    }

    .home-story-copy h1 {
        font-size: clamp(55px, 17vw, 78px);
        line-height: .8;
    }

    .home-story-copy > p {
        font-size: 15px;
    }

    .home-story-copy .hero-actions,
    .home-story-copy .button {
        width: 100%;
    }

    .home-broadcast-focus,
    .home-broadcast-empty {
        min-height: 430px;
    }

    .home-broadcast-copy {
        padding: 28px 25px;
    }

    .home-broadcast-copy h2,
    .home-broadcast-empty h2 {
        font-size: 42px;
    }

    .home-story-scorebar {
        grid-template-columns: repeat(2, 1fr);
    }

    .home-story-scorebar > div,
    .home-story-scorebar > a {
        min-height: 72px;
        padding: 13px 15px;
    }

    .home-story-scorebar > div:nth-child(2) {
        border-right: 0;
    }

    .home-story-heading,
    .home-community-heading {
        grid-template-columns: 36px 1fr;
        gap: 10px;
    }

    .home-story-heading h2,
    .home-community-heading h2 {
        font-size: 45px;
    }

    .home-story-heading > .text-link {
        grid-column: 2;
    }

    .home-runway-event {
        grid-template-columns: 35px minmax(0, 1fr) 24px;
        min-height: 118px;
        padding-right: 8px;
    }

    .home-runway-date {
        display: none;
    }

    .home-runway-name > strong {
        font-size: 25px;
    }

    .home-tournament-track {
        padding: 22px;
    }

    .home-leader-portrait {
        min-height: 380px;
    }

    .home-leader-copy {
        padding: 32px 25px 40px;
    }

    .home-leader-copy h3 {
        font-size: 51px;
    }

    .home-champion-line {
        padding-inline: 14px;
    }

    .home-champion-line .brand-badge {
        display: none;
    }

    .home-brand-world {
        min-height: 470px;
        padding: 48px 22px;
    }

    .home-brand-logo {
        width: min(94%, 410px);
        height: 140px;
    }

    .home-brand-facts {
        width: 100%;
    }

    .home-brand-facts > span {
        min-width: 0;
        flex: 1;
    }

    .home-featured-copy {
        padding: 23px 21px 27px;
    }

    .home-news-line {
        grid-template-columns: 30px minmax(0, 1fr) 18px;
        gap: 10px;
    }
}

@media (prefers-reduced-data: reduce) {
    .home-story-hero::before,
    .home-next-bell::before,
    .home-season-motion::before {
        display: none;
    }
}

@media (prefers-reduced-motion: no-preference) {
    .js.home-reveals-ready [data-home-reveal] {
        opacity: 0;
        transform: translateY(30px);
        transition: opacity 650ms ease, transform 750ms cubic-bezier(.2, .72, .2, 1);
    }

    .js.home-reveals-ready [data-home-reveal].is-revealed {
        opacity: 1;
        transform: none;
    }
}
