/* ==========================================================================
   TABtooch — page-level compositions built on the shared component set.
   ========================================================================== */

/* ----------------------------------------------------------------- hero -- */

.hero {
    width: min(100% - (var(--gutter) * 2), var(--shell));
    margin-inline: auto;
    padding-block: var(--s-6) var(--s-5);
}

.hero__grid {
    display: grid;
    grid-template-columns: var(--margin-col) 1fr;
    gap: 0 var(--s-4);
}

.hero__number {
    grid-column: 1;
    font-family: var(--font-mono);
    font-size: var(--t-sm);
    font-weight: 600;
    letter-spacing: 0.1em;
    color: var(--brand);
    padding-top: 0.6rem;
}

.hero__number::after {
    content: "";
    display: block;
    width: 2rem;
    height: 1px;
    margin-top: 0.4rem;
    background: var(--line-strong);
}

.hero__body {
    grid-column: 2;
}

@media (max-width: 1079px) {
    .hero__number {
        grid-column: 1 / -1;
        padding-top: 0;
        margin-bottom: var(--s-3);
    }

    .hero__number::after {
        display: none;
    }

    .hero__body {
        grid-column: 1 / -1;
    }
}

.hero__kicker {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: var(--s-2) var(--s-3);
    margin-bottom: var(--s-4);
}

/* The one piece of type the whole identity rests on. */
.hero__title {
    font-size: var(--t-display);
    line-height: 0.98;
    letter-spacing: -0.035em;
    margin-bottom: var(--s-5);
    max-width: 16ch;
}

.hero__title em {
    display: block;
    font-weight: 600;
    font-style: italic;
    color: var(--brand);
}

.hero__deck {
    max-width: 74ch;
    font-size: var(--t-md);
    color: var(--fg-2);
    margin-bottom: var(--s-5);
}

.hero__deck p + p {
    margin-top: var(--s-3);
}

@media (min-width: 900px) {
    .hero__deck {
        max-width: none;
        columns: 2;
        column-gap: var(--s-7);
        column-rule: 1px solid var(--line);
    }

    .hero__deck p {
        break-inside: avoid;
    }

    .hero__deck p + p {
        margin-top: var(--s-4);
    }
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--s-3);
    margin-bottom: var(--s-6);
}

/* Index strip: three ruled columns, the "contents" of the front page. */
.index-strip {
    display: grid;
    gap: 0;
    border-top: 3px double var(--line-strong);
    border-bottom: 3px double var(--line-strong);
}

@media (min-width: 720px) {
    .index-strip {
        grid-template-columns: repeat(3, 1fr);
    }
}

.index-cell {
    display: block;
    padding: var(--s-4) 0;
    color: inherit;
    text-decoration: none;
    border-bottom: 1px solid var(--line);
}

.index-cell:last-child {
    border-bottom: 0;
}

@media (min-width: 720px) {
    .index-cell {
        padding: var(--s-4) var(--s-5);
        border-bottom: 0;
        border-right: 1px solid var(--line);
    }

    .index-cell:first-child {
        padding-left: 0;
    }

    .index-cell:last-child {
        border-right: 0;
        padding-right: 0;
    }
}

.index-cell__label {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    margin-bottom: var(--s-2);
}

.index-cell__value {
    display: block;
    font-family: var(--font-display);
    font-size: var(--t-lg);
    font-weight: 600;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.index-cell__note {
    display: block;
    margin-top: 0.25rem;
    font-size: var(--t-sm);
    color: var(--fg-soft);
}

a.index-cell:hover .index-cell__value {
    color: var(--brand);
}

/* -------------------------------------------------------------- banners -- */

.banner {
    position: relative;
    display: grid;
    gap: var(--s-4);
    align-content: center;
    min-height: 15rem;
    padding: var(--s-6) var(--s-5);
    overflow: hidden;
    background: var(--surface-2);
}

.banner__art {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: right center;
    z-index: 0;
}

/* Scrim between the artwork and the copy. Text is never read off bare art. */
.banner::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        100deg,
        var(--surface) 0%,
        var(--surface) 38%,
        color-mix(in srgb, var(--surface) 70%, transparent) 62%,
        color-mix(in srgb, var(--surface) 20%, transparent) 100%
    );
}

.banner > *:not(.banner__art) {
    position: relative;
    z-index: 2;
    max-width: 46ch;
}

/* Narrow screens have no room for a side-by-side split, so the art drops back
   to a texture behind a near-solid ground. */
@media (max-width: 719px) {
    .banner__art {
        opacity: 0.4;
    }

    .banner::before {
        background: linear-gradient(
            180deg,
            var(--surface) 0%,
            color-mix(in srgb, var(--surface) 92%, transparent) 55%,
            color-mix(in srgb, var(--surface) 82%, transparent) 100%
        );
    }
}

.banner--deep {
    background: var(--deep);
    color: var(--deep-fg);
}

.banner--deep::before {
    background: linear-gradient(
        100deg,
        var(--deep) 0%,
        var(--deep) 38%,
        color-mix(in srgb, var(--deep) 70%, transparent) 62%,
        color-mix(in srgb, var(--deep) 20%, transparent) 100%
    );
}

@media (max-width: 719px) {
    .banner--deep::before {
        background: linear-gradient(
            180deg,
            var(--deep) 0%,
            color-mix(in srgb, var(--deep) 92%, transparent) 55%,
            color-mix(in srgb, var(--deep) 82%, transparent) 100%
        );
    }
}

.banner--deep .banner__title {
    color: #fff;
}

.banner--deep .banner__text {
    color: var(--deep-fg-soft);
}

.banner__title {
    font-size: var(--t-xl);
    line-height: 1.08;
    letter-spacing: -0.025em;
}

.banner__text {
    color: var(--fg-2);
}

.banner__actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--s-2);
}

@media (min-width: 720px) {
    .banner {
        min-height: 17rem;
        padding: var(--s-7) var(--s-6);
    }
}

/* ---------------------------------------------------------------- grids -- */

.grid-cards {
    display: grid;
    gap: var(--s-4);
}

@media (min-width: 620px) {
    .grid-cards--2 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 620px) {
    .grid-cards--3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 980px) {
    .grid-cards--3 {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 720px) {
    .grid-cards--races {
        grid-template-columns: repeat(auto-fit, minmax(19rem, 1fr));
    }
}

.stack {
    display: grid;
    gap: var(--s-5);
}


/* ----------------------------------------------------------- photo band -- */

.photo-band {
    position: relative;
    margin: var(--s-6) 0;
    overflow: hidden;
    border-block: 1px solid var(--line-strong);
    background: var(--bg-sunk);
}

.photo-band__img {
    display: block;
    width: 100%;
    height: clamp(11rem, 26vw, 20rem);
    object-fit: cover;
    /* The photographs are daylight shots; damping them keeps the page dark and
       stops the band shouting over the odds. */
    filter: saturate(0.72) brightness(0.74) contrast(1.06);
}

/* Aubergine wash, so the photography belongs to the palette. */
.photo-band::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(180deg, color-mix(in srgb, var(--bg) 62%, transparent) 0%, transparent 32%, color-mix(in srgb, var(--bg) 78%, transparent) 100%),
        linear-gradient(90deg, color-mix(in srgb, var(--brand-deep) 34%, transparent) 0%, transparent 55%);
    mix-blend-mode: normal;
}

.photo-band__caption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    padding: var(--s-3) 0;
}

.photo-band__caption > span {
    display: block;
    width: min(100% - (var(--gutter) * 2), var(--shell));
    margin-inline: auto;
    font-family: var(--font-mono);
    font-size: var(--t-xs);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--deep-fg);
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.85);
}




/* --------------------------------------------------------- photo credits - */

.credits {
    display: grid;
    gap: var(--s-3);
    margin-top: var(--s-4);
}

.credits li {
    display: grid;
    gap: 0.15rem;
    padding-bottom: var(--s-3);
    border-bottom: 1px dotted var(--line-strong);
    font-size: var(--t-sm);
    line-height: 1.5;
}

.credits li:last-child {
    border-bottom: 0;
}

.credits__title {
    font-weight: 600;
    color: var(--fg);
}

.credits__meta {
    color: var(--fg-soft);
}

/* ----------------------------------------------------------- sport tiles - */

/* The 1px gap plus a ring on each tile draws the grid lines without a
   background showing through where the last row is short. */
.sport-tiles {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(8.5rem, 1fr));
    gap: 1px;
    background: var(--bg);
    border-radius: var(--radius);
}

.sport-tile {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.15rem;
    padding: var(--s-4) var(--s-3);
    background: var(--surface);
    box-shadow: 0 0 0 1px var(--line);
    color: var(--fg);
    text-decoration: none;
    transition: background-color var(--speed) var(--ease), color var(--speed) var(--ease);
}

.sport-tile__icon {
    font-size: 1.6rem;
    color: var(--brand);
    margin-bottom: var(--s-2);
    transition: color var(--speed) var(--ease), transform var(--speed) var(--ease);
}

.sport-tile__name {
    font-family: var(--font-display);
    font-size: var(--t-base);
    font-weight: 600;
    line-height: 1.15;
    letter-spacing: -0.015em;
}

.sport-tile__count {
    font-family: var(--font-mono);
    font-size: 0.6875rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--fg-soft);
}

.sport-tile:hover {
    background: var(--surface-2);
}

.sport-tile:hover .sport-tile__icon {
    color: var(--gold);
    transform: translateY(-2px);
}

/* Racing leads the grid, so it carries the accent. */
.sport-tile--racing {
    background: var(--brand-deep);
}

.sport-tile--racing .sport-tile__icon {
    color: var(--gold);
}

/* On the deep-purple tile the brand tint only reaches 4:1, so the count uses
   the lighter foreground instead. */
.sport-tile--racing .sport-tile__count {
    color: var(--fg-2);
}

.sport-tile--racing:hover {
    background: var(--brand-fill);
}

/* ---------------------------------------------------------------- steps -- */

.step {
    position: relative;
    padding: var(--s-5) 0 var(--s-5) var(--s-6);
    border-top: 1px solid var(--line);
}

.step__n {
    position: absolute;
    left: 0;
    top: var(--s-5);
    font-family: var(--font-mono);
    font-size: var(--t-md);
    font-weight: 600;
    color: var(--brand);
}

.step h3 {
    font-size: var(--t-md);
    margin-bottom: var(--s-2);
}

.step p {
    color: var(--fg-2);
    max-width: 44ch;
}

@media (min-width: 780px) {
    .steps {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 0 var(--s-5);
    }
}

/* -------------------------------------------------------------- feature -- */

.feature {
    display: flex;
    flex-direction: column;
    gap: var(--s-3);
    padding: var(--s-5);
    background: var(--surface);
    border: 1px solid var(--line);
    border-top: 3px solid var(--brand);
    border-radius: var(--radius);
}

.feature--tote {
    border-top-color: var(--tote);
}

.feature--control {
    border-top-color: var(--gold);
}

.feature h3 {
    font-size: var(--t-md);
}

.feature p {
    color: var(--fg-2);
    font-size: var(--t-sm);
    flex: 1;
}

.feature__foot {
    margin-top: auto;
}

/* ---------------------------------------------------------- trust band --- */

.trust {
    background: var(--bg-sunk);
    border-block: 1px solid var(--line-strong);
    padding-block: var(--s-5);
    margin-block: var(--s-6);
}

.trust__inner {
    width: min(100% - (var(--gutter) * 2), var(--shell));
    margin-inline: auto;
    display: grid;
    gap: var(--s-4);
    grid-template-columns: repeat(auto-fit, minmax(13rem, 1fr));
}

.trust__item {
    display: flex;
    gap: var(--s-3);
    align-items: flex-start;
    font-size: var(--t-sm);
    color: var(--fg-2);
    line-height: 1.5;
}

.trust__item .icon {
    flex: none;
    font-size: 1.4em;
    color: var(--brand);
    margin-top: 0.1rem;
}

.trust__item b {
    display: block;
    font-family: var(--font-display);
    font-size: var(--t-base);
    color: var(--fg);
}

/* ----------------------------------------------------------- page head --- */

.page-head {
    width: min(100% - (var(--gutter) * 2), var(--shell));
    margin-inline: auto;
    padding-block: var(--s-6) var(--s-5);
    border-bottom: 3px double var(--line-strong);
    margin-bottom: var(--s-6);
}

.page-head__kicker {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: var(--s-2) var(--s-3);
    margin-bottom: var(--s-3);
}

.page-head h1 {
    font-size: var(--t-2xl);
    letter-spacing: -0.03em;
    margin-bottom: var(--s-3);
    max-width: 20ch;
}

.page-head__lead {
    max-width: 70ch;
    font-size: var(--t-md);
    color: var(--fg-2);
}

.crumbs {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.4rem;
    margin-bottom: var(--s-4);
    font-family: var(--font-mono);
    font-size: var(--t-xs);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--fg-soft);
}

.crumbs a {
    display: inline-flex;
    align-items: center;
    min-height: 24px;
    text-decoration: none;
    border-bottom: 1px solid transparent;
}

.crumbs a:hover {
    border-bottom-color: var(--brand);
}

/* ----------------------------------------------------------- empty state - */

.empty-state {
    padding: var(--s-7) var(--s-5);
    text-align: center;
    border: 1px dashed var(--line-strong);
    border-radius: var(--radius);
    background: var(--surface-stripe);
}

.empty-state h2 {
    font-size: var(--t-lg);
    margin-bottom: var(--s-2);
}

.empty-state p {
    color: var(--fg-soft);
    margin-bottom: var(--s-4);
}

/* ------------------------------------------------------------------ auth - */

.auth {
    width: min(100% - (var(--gutter) * 2), var(--shell));
    margin-inline: auto;
    padding-block: var(--s-6);
    display: grid;
    gap: var(--s-6);
    align-items: start;
}

@media (min-width: 900px) {
    .auth--split {
        grid-template-columns: 1fr minmax(22rem, 27rem);
        gap: var(--s-8);
    }
}

.auth--narrow {
    max-width: 30rem;
}

.auth__intro h1 {
    margin-bottom: var(--s-4);
}

.auth__intro > p {
    max-width: 60ch;
    color: var(--fg-2);
    margin-bottom: var(--s-4);
}

.ticklist {
    display: grid;
    gap: var(--s-3);
    margin-bottom: var(--s-5);
}

.ticklist li {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.65rem;
    align-items: start;
    font-size: var(--t-sm);
    line-height: 1.55;
}

.ticklist .icon {
    color: var(--tote);
    font-size: 1.2em;
    margin-top: 0.15rem;
}

.auth__form {
    background: var(--surface);
    border: 1px solid var(--line-strong);
    border-top: 4px solid var(--fg);
    border-radius: var(--radius);
    padding: var(--s-5);
    box-shadow: var(--shadow-2);
}

.auth__form h2 {
    font-size: var(--t-lg);
    margin-bottom: var(--s-4);
}

.auth__alt {
    margin-top: var(--s-4);
    padding-top: var(--s-4);
    border-top: 1px dotted var(--line-strong);
    font-size: var(--t-sm);
    color: var(--fg-soft);
}

/* --------------------------------------------------------------- account - */

.account-head {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: space-between;
    gap: var(--s-4);
}

.account-grid {
    display: grid;
    gap: var(--s-4);
}

@media (min-width: 720px) {
    .account-grid {
        grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
    }
}

.stat {
    padding: var(--s-4);
    background: var(--surface);
    border: 1px solid var(--line);
    border-left: 3px solid var(--fg);
    border-radius: 0 var(--radius) var(--radius) 0;
}

.stat--brand {
    border-left-color: var(--brand);
}

.stat--tote {
    border-left-color: var(--tote);
}

.stat__label {
    display: block;
    margin-bottom: var(--s-2);
}

.stat__value {
    display: block;
    font-family: var(--font-mono);
    font-size: var(--t-lg);
    font-weight: 600;
    font-variant-numeric: tabular-nums;
    line-height: 1.1;
}

.stat__note {
    display: block;
    margin-top: var(--s-2);
    font-size: var(--t-xs);
    color: var(--fg-soft);
    line-height: 1.5;
}

/* --------------------------------------------------------------- contact - */

.contact-grid {
    width: min(100% - (var(--gutter) * 2), var(--shell));
    margin-inline: auto;
    display: grid;
    gap: var(--s-6);
    align-items: start;
}

@media (min-width: 900px) {
    .contact-grid {
        grid-template-columns: minmax(0, 1fr) minmax(22rem, 27rem);
        gap: var(--s-8);
    }
}

.contact-list {
    display: grid;
    gap: 0;
    border-top: 3px double var(--line-strong);
}

.contact-item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: var(--s-3);
    padding: var(--s-4) 0;
    border-bottom: 1px solid var(--line);
}

.contact-item .icon {
    font-size: 1.35em;
    color: var(--brand);
    margin-top: 0.15rem;
}

.contact-item h2 {
    font-size: var(--t-md);
    margin-bottom: var(--s-1);
}

.contact-item p {
    font-size: var(--t-sm);
    color: var(--fg-2);
    line-height: 1.6;
}

/* ----------------------------------------------------------------- legal - */

.legal {
    width: min(100% - (var(--gutter) * 2), var(--shell));
    margin-inline: auto;
    padding-block: var(--s-5) var(--s-7);
}

@media (min-width: 1080px) {
    .legal__layout {
        display: grid;
        grid-template-columns: minmax(0, 1fr) 16rem;
        gap: var(--s-8);
        align-items: start;
    }
}

.legal__meta {
    display: flex;
    flex-wrap: wrap;
    gap: var(--s-2) var(--s-4);
    padding: var(--s-3) var(--s-4);
    margin-bottom: var(--s-5);
    background: var(--surface-2);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    font-family: var(--font-mono);
    font-size: var(--t-xs);
    letter-spacing: 0.04em;
    color: var(--fg-soft);
}

.legal__meta b {
    color: var(--fg);
    font-weight: 600;
}

.legal__lead {
    max-width: 70ch;
    font-size: var(--t-md);
    color: var(--fg-2);
    margin-bottom: var(--s-5);
}

.legal__section {
    padding-top: var(--s-5);
    margin-top: var(--s-5);
    border-top: 1px solid var(--line);
    scroll-margin-top: 7rem;
}

.legal__section:first-child {
    border-top: 0;
    margin-top: 0;
    padding-top: 0;
}

.legal__section > h2 {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: baseline;
    gap: 0.7rem;
    font-size: var(--t-lg);
    margin-bottom: var(--s-3);
}

.legal__section > h2 .mono {
    font-size: var(--t-sm);
    color: var(--brand);
}

.legal__section p + p,
.legal__section > * + * {
    margin-top: var(--s-3);
}

.legal__section ul {
    display: grid;
    gap: 0.5rem;
    padding-left: 1.35rem;
}

.legal__section ul li {
    position: relative;
}

.legal__section ul li::before {
    content: "";
    position: absolute;
    left: -1.15rem;
    top: 0.62em;
    width: 6px;
    height: 6px;
    border: 1px solid var(--brand);
    background: var(--brand-tint);
}

.legal__toc {
    display: none;
}

@media (min-width: 1080px) {
    .legal__toc {
        display: block;
        position: sticky;
        top: 6.5rem;
        padding: var(--s-4);
        background: var(--surface);
        border: 1px solid var(--line);
        border-radius: var(--radius);
        max-height: calc(100vh - 9rem);
        overflow-y: auto;
    }
}

.legal__toc h2 {
    font-family: var(--font-mono);
    font-size: var(--t-xs);
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--fg-soft);
    padding-bottom: var(--s-2);
    margin-bottom: var(--s-3);
    border-bottom: 1px solid var(--line);
}

.legal__toc ol {
    display: grid;
    gap: 0.15rem;
    counter-reset: toc;
}

.legal__toc a {
    display: block;
    padding: 0.3rem 0;
    font-size: var(--t-sm);
    line-height: 1.4;
    color: var(--fg-2);
    text-decoration: none;
    border-bottom: 1px dotted transparent;
}

.legal__toc a:hover {
    color: var(--brand);
    border-bottom-color: var(--line-strong);
}

.legal__support {
    margin-top: var(--s-6);
}

/* ------------------------------------------------------------------ 404 -- */

.errpage {
    width: min(100% - (var(--gutter) * 2), var(--shell));
    margin-inline: auto;
    padding-block: var(--s-8);
    text-align: center;
}

.errpage__code {
    display: block;
    font-family: var(--font-mono);
    font-size: clamp(4rem, 18vw, 9rem);
    font-weight: 600;
    line-height: 1;
    color: var(--brand);
    letter-spacing: -0.04em;
}

.errpage h1 {
    margin-block: var(--s-4) var(--s-3);
}

.errpage p {
    max-width: 48ch;
    margin-inline: auto;
    margin-bottom: var(--s-5);
    color: var(--fg-2);
}

.errpage__actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--s-3);
    justify-content: center;
}

/* --------------------------------------------------------- payment band -- */

.paybar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: var(--s-3) var(--s-4);
    padding-block: var(--s-5);
}

.paybar__note {
    font-size: var(--t-xs);
    color: var(--deep-fg-soft);
    max-width: 40ch;
    line-height: 1.55;
}

.paybar__logos {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: var(--s-3);
}

.paybar__logos img {
    height: 1.5rem;
    width: auto;
    background: #fff;
    padding: 0.25rem 0.4rem;
    border-radius: 2px;
}

.badge-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: var(--s-3) var(--s-4);
    padding-block: var(--s-4);
    border-bottom: 1px solid var(--deep-line);
}

.badge-row img {
    height: 2.25rem;
    width: auto;
}

/* The 18+ mark ships grey for a dark ground, so it needs no chip behind it. */
.badge-row__age {
    height: 2.5rem;
}

/* ----------------------------------------------------------- home extras - */

.pull {
    max-width: 34ch;
    margin-block: var(--s-5);
    padding-left: var(--s-4);
    border-left: 3px solid var(--brand);
    font-family: var(--font-display);
    font-size: var(--t-lg);
    font-style: italic;
    font-weight: 600;
    line-height: 1.28;
    letter-spacing: -0.02em;
}

.editorial {
    display: grid;
    gap: var(--s-5);
}

@media (min-width: 900px) {
    .editorial {
        grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
        gap: var(--s-7);
    }
}

.editorial__aside {
    padding: var(--s-5);
    background: var(--surface-2);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    align-self: start;
}

.editorial__art {
    width: calc(100% + (var(--s-5) * 2));
    margin: calc(var(--s-5) * -1) calc(var(--s-5) * -1) var(--s-4);
    max-width: none;
    border-bottom: 1px solid var(--line);
    border-radius: var(--radius) var(--radius) 0 0;
}

.editorial__aside h3 {
    font-size: var(--t-md);
    margin-bottom: var(--s-3);
}

.editorial__aside ul {
    display: grid;
    gap: var(--s-3);
}

.editorial__aside li {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.6rem;
    font-size: var(--t-sm);
    line-height: 1.55;
}

.editorial__aside .icon {
    color: var(--brand);
    font-size: 1.2em;
    margin-top: 0.15rem;
}
