.info-page {
    display: grid;
    gap: 32px;
    padding: 16px 0 56px;
}

#content .info-page a {
    color: inherit;
    text-decoration: none;
}

.info-hero {
    display: grid;
    gap: 24px;
    align-items: end;
    padding: 8px 0 30px;
    border-bottom: 1px solid var(--match-border);
}

.info-hero__content {
    display: grid;
    gap: 14px;
    max-width: 680px;
}

.info-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #6D6B74;
    font-size: 14px;
    line-height: 20px;
    font-weight: 600;
}

.info-eyebrow img {
    width: 18px;
    height: 18px;
    display: block;
}

body.match-body .info-hero h1 {
    max-width: 740px;
    font-size: 32px;
    line-height: 1.08;
    font-weight: 700;
}

.info-hero p {
    max-width: 660px;
    color: #3D3A44;
    font-size: 16px;
    line-height: 1.68;
}

.info-sport-switch {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    width: max-content;
    padding: 3px;
    border: 1px solid var(--match-border);
    border-radius: 999px;
    background: var(--match-surface);
}

.info-sport-switch a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 0 18px;
    border-radius: 999px;
    color: #6D6B74;
    font-size: 14px;
    line-height: 20px;
    font-weight: 600;
    transition: background-color 0.18s ease, color 0.18s ease;
}

#content .info-sport-switch a:hover,
#content .info-sport-switch a:focus-visible,
#content .info-sport-switch a.is-active {
    background: #111111;
    color: #FFFFFF;
    outline: none;
}

.info-layout,
.info-article-layout {
    display: grid;
    gap: 28px;
}

.info-content,
.info-articles,
.info-cluster-nav,
.info-section-head,
.info-aside,
.info-aside__section,
.info-pagination,
.info-related-section,
.info-related-grid {
    min-width: 0;
}

.info-content {
    display: grid;
    gap: 18px;
}

.info-section-head {
    display: grid;
    gap: 6px;
    max-width: 680px;
}

body.match-body .info-section-head h2,
body.match-body .info-aside h2 {
    font-size: 18px;
    line-height: 24px;
    font-weight: 700;
}

.info-section-head p {
    color: #6D6B74;
    font-size: 15px;
    line-height: 1.6;
}

.info-hub-links {
    display: grid;
    gap: 0 18px;
    border-top: 1px solid var(--match-border);
}

#content .info-hub-links a {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 10px;
    align-items: center;
    min-height: 50px;
    border-bottom: 1px solid var(--match-border);
    color: #1F1E22;
    font-size: 15px;
    line-height: 20px;
    font-weight: 600;
    transition: color 0.18s ease, padding-left 0.18s ease;
}

#content .info-hub-links a span {
    color: #A6A4AB;
    font-size: 13px;
}

#content .info-hub-links a:hover,
#content .info-hub-links a:focus-visible {
    color: #000000;
    padding-left: 6px;
    outline: none;
}

.info-action-strip {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    padding: 14px 0;
    border-top: 1px solid var(--match-border);
    border-bottom: 1px solid var(--match-border);
}

.info-action-strip span {
    margin-right: 4px;
    color: #6D6B74;
    font-size: 14px;
    line-height: 20px;
    font-weight: 600;
}

#content .info-action-strip a {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 13px;
    border: 1px solid #1F1E22;
    border-radius: 999px;
    color: #1F1E22;
    font-size: 14px;
    line-height: 20px;
    font-weight: 600;
    transition: background-color 0.18s ease, color 0.18s ease;
}

#content .info-action-strip a:hover,
#content .info-action-strip a:focus-visible {
    background: #1F1E22;
    color: #FFFFFF;
    outline: none;
}

.info-cluster-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

#content .info-cluster-nav a {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 0 11px;
    border: 1px solid var(--match-border);
    border-radius: 999px;
    background: var(--match-surface);
    color: #1F1E22;
    font-size: 13px;
    line-height: 18px;
    font-weight: 600;
    transition: border-color 0.18s ease, background-color 0.18s ease;
}

#content .info-cluster-nav a:hover,
#content .info-cluster-nav a:focus-visible {
    border-color: #1F1E22;
    background: #FFFFFF;
    outline: none;
}

.info-articles {
    display: grid;
    border-top: 1px solid var(--match-border);
    counter-reset: info-card;
}

.info-article-card {
    position: relative;
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 8px 14px;
    padding: 18px 0;
    border-bottom: 1px solid var(--match-border);
    transition: padding-left 0.18s ease;
}

.info-article-card:before {
    counter-increment: info-card;
    content: counter(info-card, decimal-leading-zero);
    grid-column: 1;
    grid-row: 1 / span 4;
    color: #A6A4AB;
    font-size: 13px;
    line-height: 24px;
    font-weight: 600;
}

.info-article-card:hover {
    padding-left: 6px;
}

.info-article-card--with-image {
    grid-template-columns: 42px minmax(0, 1fr) 126px;
}

.info-article-card__cover {
    position: absolute;
    inset: 0;
    z-index: 3;
    border-radius: 8px;
}

.info-article-card__cover:focus-visible {
    outline: 2px solid var(--match-accent);
    outline-offset: -2px;
}

.info-article-card__top,
.info-article-card h2,
.info-article-card p,
.info-article-card__link {
    grid-column: 2;
    position: relative;
    z-index: 1;
}

.info-article-card__image {
    grid-column: 3;
    grid-row: 1 / span 4;
    position: relative;
    z-index: 1;
    width: 126px;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 8px;
    background: #F6F6F7;
}

.info-article-card__image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.info-article-card__top {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.info-chip {
    display: inline-flex;
    align-items: center;
    color: #1F1E22;
    font-size: 13px;
    line-height: 18px;
    font-weight: 600;
}

.info-article-card__time,
.info-read-time {
    color: var(--match-muted);
    font-size: 13px;
    line-height: 20px;
    white-space: nowrap;
}

body.match-body .info-article-card h2 {
    max-width: 560px;
    font-size: 20px;
    line-height: 26px;
    font-weight: 700;
}

.info-article-card p {
    max-width: 610px;
    color: #6D6B74;
    font-size: 15px;
    line-height: 1.58;
}

.info-article-card__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    width: max-content;
    color: #1F1E22;
    font-size: 14px;
    line-height: 20px;
    font-weight: 600;
}

.info-article-card__link img {
    width: 16px;
    height: 16px;
    display: block;
}

.info-aside {
    display: none;
}

.info-aside__section {
    display: grid;
    gap: 12px;
    padding: 16px 0;
    border-top: 1px solid var(--match-border);
}

.info-aside__links {
    display: grid;
    gap: 2px;
}

#content .info-aside__links a {
    display: block;
    padding: 7px 0;
    color: #6D6B74;
    font-size: 14px;
    line-height: 19px;
    font-weight: 600;
    transition: color 0.18s ease, padding-left 0.18s ease;
}

#content .info-aside__links a:hover,
#content .info-aside__links a:focus-visible {
    color: #111111;
    padding-left: 5px;
    outline: none;
}

.info-page--article {
    gap: 18px;
}

.info-back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: max-content;
    color: #6D6B74;
    font-size: 14px;
    line-height: 20px;
    font-weight: 600;
}

.info-back-link img {
    display: none;
}

.info-back-link:before {
    content: "";
    width: 8px;
    height: 8px;
    border-left: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
}

.info-back-link:hover,
.info-back-link:focus-visible {
    color: #111111;
    outline: none;
}

.info-read-time {
    display: inline-flex;
    align-items: center;
    width: max-content;
    min-height: 30px;
    padding: 0 10px;
    border: 1px solid var(--match-border);
    border-radius: 999px;
    background: var(--match-surface);
}

.info-article-body {
    display: grid;
    gap: 24px;
    min-width: 0;
    padding-top: 2px;
}

.info-article-body--hub {
    gap: 22px;
    padding: 10px 0 24px;
    border-bottom: 1px solid var(--match-border);
}

.info-article-lead {
    color: #1F1E22;
    font-size: 18px;
    line-height: 1.6;
    font-weight: 500;
}

.info-article-media {
    width: 100%;
    max-width: 680px;
    margin: 0;
    overflow: hidden;
    border-radius: 8px;
    background: #F6F6F7;
}

.info-article-media img {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.info-article-body section {
    display: grid;
    gap: 10px;
    padding-top: 20px;
    border-top: 1px solid var(--match-border);
}

.info-article-body--hub section:first-child {
    padding-top: 0;
    border-top: 0;
}

body.match-body .info-article-body h2 {
    max-width: 680px;
    font-size: 23px;
    line-height: 30px;
    font-weight: 700;
}

.info-article-body p,
.info-article-body li {
    max-width: 680px;
    color: #3D3A44;
    font-size: 16px;
    line-height: 1.74;
}

.info-article-body ul {
    display: grid;
    gap: 8px;
    margin: 0;
    padding-left: 20px;
}

.info-pagination {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding-top: 4px;
}

.info-pagination__pages {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    min-width: 0;
}

#content .info-pagination a,
.info-pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 38px;
    min-height: 38px;
    padding: 0 12px;
    border: 1px solid var(--match-border);
    border-radius: 8px;
    background: var(--match-surface);
    color: #1F1E22;
    font-size: 14px;
    line-height: 20px;
    font-weight: 600;
    box-sizing: border-box;
}

#content .info-pagination a:hover,
#content .info-pagination a:focus-visible,
.info-pagination .is-current {
    border-color: #111111;
    background: #111111;
    color: #FFFFFF;
    outline: none;
}

.info-pagination .is-disabled {
    color: #A6A4AB;
}

.info-pagination__control {
    min-width: 84px !important;
}

.info-faq {
    display: grid;
    gap: 0;
    padding-top: 8px;
    border-top: 1px solid var(--match-border);
}

body.match-body .info-faq h2 {
    margin-bottom: 6px;
    font-size: 23px;
    line-height: 30px;
    font-weight: 700;
}

.info-faq__item {
    display: grid;
    gap: 8px;
    padding: 16px 0;
    border-bottom: 1px solid var(--match-border);
}

body.match-body .info-faq__item h3 {
    font-size: 18px;
    line-height: 24px;
    font-weight: 700;
}

.info-faq__item p {
    max-width: 680px;
    color: #3D3A44;
    font-size: 16px;
    line-height: 1.68;
}

.info-related-section {
    display: grid;
    gap: 12px;
    border-top: 1px solid var(--match-border);
    padding-top: 24px;
}

body.match-body .info-related-section h2 {
    font-size: 23px;
    line-height: 30px;
    font-weight: 700;
}

.info-related-grid {
    display: grid;
    border-top: 1px solid var(--match-border);
}

#content .info-related-grid a {
    display: flex;
    align-items: center;
    min-height: 52px;
    padding: 10px 0;
    border-bottom: 1px solid var(--match-border);
    color: #1F1E22;
    font-size: 15px;
    line-height: 21px;
    font-weight: 600;
    transition: color 0.18s ease, padding-left 0.18s ease;
}

#content .info-related-grid a:hover,
#content .info-related-grid a:focus-visible {
    color: #000000;
    padding-left: 6px;
    outline: none;
}

@media screen and (min-width: 768px) {
    .info-page {
        padding-top: 22px;
        padding-bottom: 64px;
    }

    .info-hero {
        padding-bottom: 34px;
    }

    .info-hero--article .info-hero__content {
        grid-area: content;
    }

    body.match-body .info-hero h1 {
        font-size: 42px;
    }

    .info-layout,
    .info-article-layout {
        grid-template-columns: minmax(0, 1fr) 226px;
        align-items: start;
        gap: 42px;
    }

    .info-aside {
        position: sticky;
        top: 112px;
        display: grid;
        gap: 8px;
        align-content: start;
        padding-left: 22px;
        border-left: 1px solid var(--match-border);
    }

    .info-hub-links {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .info-hero--article {
        grid-template-columns: minmax(0, 760px);
        grid-template-areas:
            "content"
            "time";
    }

    .info-hero--article .info-read-time {
        grid-area: time;
    }

    .info-related-section {
        max-width: calc(100% - 268px);
    }

    .info-related-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 0 20px;
    }
}

@media screen and (max-width: 767px) {
    .info-page {
        gap: 28px;
        padding-left: 16px;
        padding-right: 16px;
    }

    body.match-body .info-hero h1 {
        font-size: 28px;
        line-height: 1.12;
    }

    .info-hero p {
        font-size: 15px;
        line-height: 1.62;
    }

    .info-sport-switch {
        width: 100%;
        box-sizing: border-box;
    }

    .info-sport-switch a {
        flex: 1;
    }

    .info-hub-links {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0 14px;
    }

    #content .info-hub-links a {
        grid-template-columns: 30px minmax(0, 1fr);
        font-size: 14px;
    }

    .info-action-strip {
        align-items: flex-start;
    }

    .info-action-strip span {
        width: 100%;
    }

    .info-cluster-nav {
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 4px;
    }

    #content .info-cluster-nav a {
        flex: 0 0 auto;
    }

    .info-article-card {
        grid-template-columns: 34px minmax(0, 1fr);
        gap: 8px 10px;
    }

    .info-article-card--with-image {
        grid-template-columns: 34px minmax(0, 1fr) 82px;
    }

    .info-article-card__image {
        width: 82px;
        grid-row: 1 / span 2;
    }

    .info-article-card--with-image p,
    .info-article-card--with-image .info-article-card__link {
        grid-column: 2 / span 2;
    }

    body.match-body .info-article-card h2 {
        font-size: 18px;
        line-height: 24px;
    }

    .info-article-body p,
    .info-article-body li,
    .info-faq__item p {
        font-size: 15px;
        line-height: 1.68;
    }

    .info-article-media img {
        aspect-ratio: 4 / 3;
    }

    .info-pagination {
        flex-wrap: wrap;
        justify-content: center;
    }

    .info-pagination__pages {
        order: -1;
        width: 100%;
    }
}

@media (prefers-reduced-motion: reduce) {
    .info-sport-switch a,
    #content .info-hub-links a,
    #content .info-action-strip a,
    #content .info-cluster-nav a,
    .info-article-card,
    #content .info-aside__links a,
    #content .info-related-grid a {
        transition: none;
    }
}
