:root {
    --tp7-container: 1170px;
    --tp7-header: #252729;
    --tp7-header-soft: #313c4a;
    --tp7-page: #f2f2f2;
    --tp7-surface: #ffffff;
    --tp7-text: #252729;
    --tp7-muted: #8b8b8b;
    --tp7-line: #e5e7ea;
    --tp7-accent: #11b475;
    --tp7-accent-dark: #0e9e68;
    --tp7-orange: #f18e00;
    --tp7-blue: #4a90e2;
    --tp7-football: #087a55;
    --tp7-basketball: #b45309;
    --tp7-radius: 3px;
    --tp7-shadow: 0 8px 24px rgb(37 39 41 / 0.06);
}

* {
    box-sizing: border-box;
}

html {
    color-scheme: light;
    scroll-behavior: smooth;
}

body,
h1,
h2,
h3,
p,
ul,
ol,
li,
figure,
blockquote {
    margin: 0;
    padding: 0;
}

body {
    min-width: 0;
    color: var(--tp7-text);
    background: var(--tp7-page);
    font: 13px/1.6 "Microsoft Yahei", "PingFang SC", "Hiragino Sans GB", tahoma, arial, sans-serif;
    -webkit-font-smoothing: antialiased;
}

button,
input,
textarea,
select {
    font: inherit;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

button {
    border: 0;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
}

a:hover {
    color: var(--tp7-accent);
}

img,
video {
    display: block;
    max-width: 100%;
}

[hidden] {
    display: none !important;
}

.tp7-shell {
    width: min(var(--tp7-container), calc(100% - 32px));
    margin-inline: auto;
}

.tp7-utility {
    height: 47px;
    color: #5b6066;
    background: #f4f4f5;
}

.tp7-utility-inner {
    display: flex;
    align-items: center;
    height: 47px;
}

.tp7-utility-brand {
    padding-inline: 15px;
    color: #3d4247;
    font-size: 12px;
}

.tp7-app-label {
    margin-left: 6px;
    padding-inline: 15px;
    color: #3d4247;
}

.tp7-utility-inner nav {
    display: flex;
    gap: 18px;
    margin-left: auto;
    padding-right: 15px;
    font-size: 12px;
}

.tp7-header {
    height: 85px;
    background: var(--tp7-header);
}

.tp7-header-inner {
    position: relative;
    display: flex;
    align-items: center;
    height: 85px;
}

.tp7-brand {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
    max-width: 230px;
    min-height: 52px;
}

.tp7-brand img {
    width: auto;
    max-width: 210px;
    max-height: 58px;
    object-fit: contain;
}

.tp7-brand strong {
    color: #f06423;
    font-size: 28px;
    font-weight: 800;
    letter-spacing: -2px;
}

.tp7-nav {
    display: flex;
    align-items: stretch;
    height: 85px;
    margin-left: 50px;
}

.tp7-nav a {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 85px;
    padding: 0 20px;
    color: #a9abae;
    font-size: 15px;
    white-space: nowrap;
}

.tp7-nav a:hover,
.tp7-nav a.active {
    color: #f7f8f9;
    background: #303234;
}

.tp7-nav a.active::after {
    position: absolute;
    bottom: 17px;
    left: 50%;
    width: 0;
    height: 0;
    border-top: 4px solid #f7f8f9;
    border-right: 4px solid transparent;
    border-left: 4px solid transparent;
    content: "";
    transform: translateX(-50%);
}

.tp7-nav-toggle {
    display: none;
    width: 42px;
    height: 42px;
    margin-left: auto;
    color: #f7f8f9;
    background: transparent;
}

.tp7-nav-toggle span {
    display: block;
    width: 23px;
    height: 2px;
    margin: 5px auto;
    background: currentColor;
}

.tp7-match-strip {
    min-height: 177px;
    padding: 17px 0;
    overflow: hidden;
    background: var(--tp7-header-soft);
}

.tp7-featured-matches {
    display: grid;
    grid-auto-columns: calc((100% - 48px) / 4);
    grid-auto-flow: column;
    gap: 16px;
    min-height: 143px;
    padding-bottom: 4px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scrollbar-color: #66717d #252f3b;
    scrollbar-width: thin;
    scroll-snap-type: inline proximity;
}

.tp7-featured-card {
    min-width: 0;
    overflow: hidden;
    background: var(--tp7-surface);
    border-radius: var(--tp7-radius);
    box-shadow: var(--tp7-shadow);
    scroll-snap-align: start;
}

.tp7-featured-card > header {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    height: 44px;
    padding: 8px 76px 0 12px;
    overflow: hidden;
    color: #66696d;
    background: #fafafa url("../img/match.webp") center top / cover no-repeat;
    font-size: 12px;
}

.tp7-featured-card > header time,
.tp7-featured-card > header a {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.tp7-featured-card > header span {
    position: absolute;
    top: 0;
    right: 0;
    min-width: 66px;
    height: 35px;
    padding-inline: 10px;
    color: #fff;
    background: #a2a2a2;
    line-height: 35px;
    text-align: center;
}

.tp7-featured-card > header span.status-live {
    background: #3bceb2;
}

.tp7-featured-card > header span.status-pending,
.tp7-featured-card > header span.status-upcoming {
    background: var(--tp7-orange);
}

.tp7-featured-score {
    display: grid;
    grid-template-columns: 78px minmax(80px, 1fr) 78px;
    align-items: center;
    height: 99px;
    padding: 4px 7px 7px;
}

.tp7-featured-score > div {
    min-width: 0;
    text-align: center;
}

.tp7-featured-score > div img,
.tp7-featured-score > div i {
    display: grid;
    width: 48px;
    height: 48px;
    margin: 2px auto 4px;
    place-items: center;
    border-radius: 50%;
    object-fit: contain;
}

.tp7-featured-score > div i {
    color: #9aa0a6;
    background: #eff1f3;
    font-style: normal;
}

.tp7-featured-score > div span {
    display: block;
    overflow: hidden;
    color: #777b80;
    font-size: 12px;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.tp7-featured-score > p {
    min-width: 0;
    text-align: center;
}

.tp7-featured-score > p strong {
    display: block;
    overflow: hidden;
    color: #bfc3c7;
    font-size: 22px;
    line-height: 24px;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.tp7-featured-score > p em {
    display: none;
}

.tp7-featured-score > p a {
    display: block;
    height: 27px;
    margin: 12px 5px 0;
    color: var(--tp7-accent);
    border: 1px solid var(--tp7-accent);
    border-radius: 20px;
    line-height: 25px;
    white-space: nowrap;
}

.tp7-featured-score > p a:hover {
    color: #fff;
    background: var(--tp7-accent);
}

.tp7-breadcrumb {
    display: flex;
    align-items: center;
    gap: 7px;
    min-height: 60px;
    color: #90959d;
    font-size: 12px;
}

.tp7-breadcrumb strong {
    color: var(--tp7-accent);
}

.tp7-breadcrumb b {
    max-width: 440px;
    overflow: hidden;
    color: #7c828a;
    font-weight: 400;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.tp7-home-main {
    padding: 30px 0 0;
}

.tp7-home-feature {
    display: grid;
    grid-template-columns: minmax(0, 820px) minmax(0, 330px);
    gap: 20px;
    align-items: start;
    margin-bottom: 20px;
}

.tp7-feature-media,
.tp7-feature-news {
    min-width: 0;
    background: var(--tp7-surface);
}

.tp7-feature-media {
    position: relative;
    min-height: 350px;
    padding: 15px;
    overflow: hidden;
}

.tp7-feature-carousel-viewport {
    height: 320px;
    overflow: hidden;
    background: #d9dde1;
}

.tp7-feature-carousel-track {
    display: flex;
    height: 100%;
    transition: transform 0.45s ease;
    will-change: transform;
}

.tp7-feature-carousel-slide {
    flex: 0 0 100%;
    min-width: 0;
    height: 100%;
}

.tp7-feature-carousel-slide > a {
    position: relative;
    display: block;
    height: 100%;
    overflow: hidden;
}

.tp7-feature-carousel-slide img,
.tp7-feature-carousel-slide > a > span {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tp7-feature-carousel-slide img {
    position: absolute;
    inset: 0;
}

.tp7-feature-carousel-slide > a > span,
.tp7-media-empty {
    display: grid;
    min-height: 320px;
    color: #7b8188;
    background: #e4e7ea;
    place-items: center;
}

.tp7-feature-carousel-slide strong {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 30px 14px 12px;
    overflow: hidden;
    color: #fff;
    background: linear-gradient(transparent, rgb(20 24 28 / 0.86));
    font-size: 14px;
    line-height: 20px;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.tp7-feature-carousel-button {
    position: absolute;
    top: 50%;
    z-index: 2;
    display: grid;
    width: 38px;
    height: 48px;
    color: #fff;
    background: rgb(20 24 28 / 0.5);
    cursor: pointer;
    font-size: 30px;
    line-height: 1;
    place-items: center;
    transform: translateY(-50%);
}

.tp7-feature-carousel-button:hover,
.tp7-feature-carousel-button:focus-visible {
    color: #fff;
    background: rgb(8 122 85 / 0.9);
}

.tp7-feature-carousel-button:focus-visible {
    outline: 2px solid #fff;
    outline-offset: -4px;
}

.tp7-feature-carousel-button.is-prev {
    left: 15px;
}

.tp7-feature-carousel-button.is-next {
    right: 15px;
}

.tp7-feature-carousel-dots {
    position: absolute;
    right: auto;
    bottom: 28px;
    left: 50%;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 7px;
    transform: translateX(-50%);
}

.tp7-feature-carousel-dots button {
    width: 8px;
    height: 8px;
    padding: 0;
    background: rgb(255 255 255 / 0.62);
    border-radius: 50%;
    cursor: pointer;
}

.tp7-feature-carousel-dots button.is-active {
    width: 20px;
    background: #fff;
    border-radius: 5px;
}

.tp7-visually-hidden {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    overflow: hidden !important;
    clip: rect(0 0 0 0) !important;
    clip-path: inset(50%) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

.tp7-feature-news {
    height: 350px;
    padding: 17px 0 0 10px;
    overflow: hidden;
    background: rgb(255 255 255 / 0.9);
}

.tp7-feature-news h1 {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 320px;
    height: 22px;
    margin-bottom: 20px;
    color: #333;
    font-size: 20px;
    font-weight: 700;
    line-height: 22px;
}

.tp7-feature-news h1 img {
    flex: 0 0 19px;
    width: 19px;
    height: 20px;
}

.tp7-news-flash-shell {
    position: relative;
    width: 320px;
    height: 291px;
    overflow: hidden;
    timeline-scope: --tp7-news-flash;
}

.tp7-news-flash-scroll {
    position: absolute;
    inset: 0 auto 0 0;
    width: 337px;
    height: 291px;
    overflow-x: hidden;
    overflow-y: scroll;
    scrollbar-width: none;
    scroll-timeline-axis: block;
    scroll-timeline-name: --tp7-news-flash;
}

.tp7-news-flash-scroll:focus-visible {
    outline: 2px solid var(--tp7-accent);
    outline-offset: -2px;
}

.tp7-news-flash-scroll::-webkit-scrollbar {
    display: none;
}

.tp7-news-flash-list {
    width: 335px;
    min-height: 100%;
    margin-left: 2px;
    padding-left: 12px;
    border-left: 1px solid #e7e7e7;
    list-style: none;
}

.tp7-news-flash-item {
    position: relative;
    width: 322px;
    height: 42px;
    margin-bottom: 20px;
}

.tp7-news-flash-item:last-child {
    margin-bottom: 0;
}

.tp7-news-flash-item::before {
    position: absolute;
    top: 10px;
    left: -15px;
    width: 5px;
    height: 5px;
    background: var(--tp7-accent);
    border-radius: 50%;
    content: "";
}

.tp7-news-flash-item > a {
    display: block;
    color: #333;
}

.tp7-news-flash-title {
    display: block;
    width: 285px;
    height: 25px;
    overflow: hidden;
    font-size: 15px;
    line-height: 25px;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.tp7-news-flash-item time {
    display: flex;
    align-items: center;
    gap: 6px;
    height: 17px;
    color: #888;
    font-size: 12px;
    font-variant-numeric: tabular-nums;
    line-height: 14px;
}

.tp7-news-flash-item time img {
    flex: 0 0 12px;
    width: 12px;
    height: 12px;
}

.tp7-news-flash-item > a:hover,
.tp7-news-flash-item > a:focus-visible {
    color: var(--tp7-accent);
}

.tp7-news-flash-scroll > .tp7-empty {
    padding: 18px 12px;
}

.tp7-news-flash-scrollbar {
    position: absolute;
    top: 0;
    right: 10px;
    bottom: 10px;
    display: block;
    width: 5px;
    background: #e0e0e0;
}

.tp7-news-flash-scrollbar i {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 5px;
    height: 20px;
    background: var(--tp7-accent);
    border-radius: 3px;
    cursor: grab;
    touch-action: none;
    animation: tp7-news-flash-thumb linear both;
    animation-duration: auto;
    animation-timeline: --tp7-news-flash;
    will-change: transform;
}

.tp7-news-flash-scrollbar i:active {
    cursor: grabbing;
}

@keyframes tp7-news-flash-thumb {
    to {
        transform: translateY(261px);
    }
}

.tp7-home-grid,
.tp7-content-grid {
    display: grid;
    grid-template-columns: minmax(0, 820px) minmax(0, 330px);
    gap: 20px;
    align-items: start;
}

.tp7-home-grid {
    margin-bottom: 20px;
}

.tp7-schedule-panel,
.tp7-content-card,
.tp7-side-card,
.tp7-signal-card,
.tp7-article {
    background: var(--tp7-surface);
    box-shadow: var(--tp7-shadow);
}

.tp7-schedule-panel,
.tp7-content-card,
.tp7-side-card {
    min-width: 0;
    padding: 15px;
}

.tp7-schedule-head {
    display: flex;
    align-items: center;
    min-height: 55px;
    border-bottom: 1px solid var(--tp7-line);
}

.tp7-schedule-head h1,
.tp7-schedule-head h2 {
    flex: 0 0 auto;
    margin-right: 30px;
    color: var(--tp7-accent);
    font-size: 20px;
    line-height: 24px;
}

.tp7-schedule-tabs {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 4px;
    min-height: 30px;
    padding-left: 14px;
    border-left: 1px solid #d8dadd;
}

.tp7-schedule-tabs button {
    padding: 4px 15px;
    color: #878b90;
    background: transparent;
    cursor: pointer;
    font-size: 15px;
    white-space: nowrap;
}

.tp7-schedule-tabs button:hover,
.tp7-schedule-tabs button.is-active {
    color: var(--tp7-accent);
}

.tp7-schedule-tabs button.is-active {
    font-weight: 700;
}

.tp7-live-tab-panel {
    min-width: 0;
}

.tp7-schedule-day > h2,
.tp7-schedule-day > h3 {
    display: flex;
    align-items: center;
    height: 40px;
    padding-inline: 10px;
    color: #4c5157;
    border-bottom: 1px dashed #e7e8ea;
    font-size: 13px;
}

.tp7-schedule-day > h2 time,
.tp7-schedule-day > h3 time {
    margin-right: 6px;
}

.tp7-schedule-day > h2 em,
.tp7-schedule-day > h3 em {
    margin-left: auto;
    color: #a2a6ab;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
}

.tp7-schedule-row {
    position: relative;
    display: grid;
    grid-template-columns: 118px minmax(0, 1fr) 142px;
    grid-template-areas: "meta teams watch";
    min-height: 80px;
    border-bottom: 1px dashed #ececee;
    cursor: pointer;
}

.tp7-schedule-row:focus-visible {
    outline: 2px solid var(--tp7-accent);
    outline-offset: -2px;
}

.tp7-schedule-meta {
    grid-area: meta;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-content: center;
    column-gap: 7px;
    min-width: 0;
    padding-left: 4px;
}

.tp7-schedule-meta > span {
    display: grid;
    width: 22px;
    height: 22px;
    color: #fff;
    background: #66707b;
    border-radius: 50%;
    font-size: 9px;
    place-items: center;
}

.tp7-schedule-row.sport-zuqiu .tp7-schedule-meta > span {
    background: var(--tp7-football);
}

.tp7-schedule-row.sport-lanqiu .tp7-schedule-meta > span {
    background: var(--tp7-basketball);
}

.tp7-schedule-meta a {
    overflow: hidden;
    color: #3f4348;
    line-height: 22px;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.tp7-schedule-meta time {
    grid-column: 1 / -1;
    margin-top: 5px;
    padding-left: 28px;
    color: var(--tp7-muted);
    font-size: 12px;
}

.tp7-schedule-teams {
    grid-area: teams;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 76px minmax(0, 1fr);
    align-items: center;
    min-width: 0;
}

.tp7-schedule-teams > p {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 22px;
    align-items: center;
    gap: 6px;
    min-width: 0;
    color: #3f4348;
    font-size: 14px;
}

.tp7-schedule-teams > p:last-child {
    grid-template-columns: 22px minmax(0, 1fr);
}

.tp7-schedule-teams > p span {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.tp7-schedule-teams > p:first-child span {
    text-align: right;
}

.tp7-team-crest {
    display: block;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    object-fit: contain;
}

i.tp7-team-crest {
    background: #e8ebee;
}

.tp7-schedule-teams > em {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    font-style: normal;
}

.tp7-schedule-teams > em .tp7-match-score {
    color: #4b5158;
    font-size: 14px;
    font-variant-numeric: tabular-nums;
    font-weight: 700;
    line-height: 20px;
    white-space: nowrap;
}

.tp7-schedule-teams > em small {
    min-width: 50px;
    padding: 0 6px;
    color: #8b8f94;
    border: 1px dotted #a9adb1;
    border-radius: 12px;
    font-size: 10px;
    line-height: 17px;
    text-align: center;
    white-space: nowrap;
}

.tp7-schedule-row.status-live .tp7-schedule-teams > em small {
    color: var(--tp7-orange);
    border-color: var(--tp7-orange);
}

.tp7-schedule-row.status-pending .tp7-schedule-teams > em small,
.tp7-schedule-row.status-upcoming .tp7-schedule-teams > em small {
    color: var(--tp7-blue);
    border-color: var(--tp7-blue);
}

.tp7-watch {
    grid-area: watch;
    align-self: center;
    justify-self: end;
    width: 110px;
    height: 30px;
    color: #fff;
    background: var(--tp7-accent);
    border-radius: 5px;
    font-size: 15px;
    line-height: 30px;
    text-align: center;
}

.tp7-watch:hover {
    color: #fff;
    background: var(--tp7-accent-dark);
}

.tp7-load-more {
    display: block;
    width: 100%;
    min-height: 42px;
    color: #8c9298;
    background: #fafbfc;
    cursor: pointer;
}

.tp7-load-more:hover {
    color: var(--tp7-accent);
}

.tp7-load-more:disabled {
    cursor: wait;
    opacity: 0.65;
}

.tp7-sidebar {
    min-width: 0;
}

.tp7-side-card {
    margin-bottom: 20px;
}

.tp7-side-card > h2 {
    height: 41px;
    color: #212c3b;
    border-bottom: 1px solid #dde0e5;
    font-size: 19px;
    line-height: 40px;
}

.tp7-side-links {
    padding-top: 10px;
}

.tp7-side-links a {
    position: relative;
    display: block;
    height: 31px;
    padding-left: 17px;
    overflow: hidden;
    color: #4d535a;
    line-height: 31px;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.tp7-side-links a::before {
    position: absolute;
    top: 11px;
    left: 2px;
    width: 3px;
    height: 10px;
    background: #c9cdd1;
    content: "";
}

.tp7-side-links a:hover::before {
    background: var(--tp7-accent);
}

.tp7-tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding-top: 14px;
}

.tp7-tag-cloud a {
    padding: 4px 10px;
    color: #646a70;
    background: #f3f5f6;
    border-radius: 2px;
}

.tp7-tag-cloud a:hover {
    color: #fff;
    background: var(--tp7-accent);
}

.tp7-side-media {
    padding-top: 12px;
}

.tp7-side-media a {
    display: grid;
    grid-template-columns: 108px minmax(0, 1fr);
    gap: 10px;
    min-height: 72px;
    margin-bottom: 12px;
}

.tp7-side-media img {
    width: 108px;
    height: 72px;
    background: #e4e7ea;
    object-fit: cover;
}

.tp7-side-media span {
    display: -webkit-box;
    overflow: hidden;
    color: #40454a;
    font-size: 13px;
    line-height: 22px;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.tp7-live-side-list {
    padding-top: 8px;
}

.tp7-live-side-list a {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 8px;
    height: 34px;
    line-height: 34px;
}

.tp7-live-side-list time {
    color: var(--tp7-accent);
    font-weight: 700;
}

.tp7-live-side-list span {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.tp7-card-title,
.tp7-content-card > header {
    display: flex;
    align-items: center;
    min-height: 42px;
    border-bottom: 1px solid var(--tp7-line);
}

.tp7-card-title h1,
.tp7-card-title h2,
.tp7-content-card > header h1,
.tp7-content-card > header h2 {
    color: #212c3b;
    font-size: 19px;
}

.tp7-card-title > a,
.tp7-content-card > header > a {
    margin-left: auto;
    color: #a0a5aa;
    font-size: 12px;
}

.tp7-video-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px 15px;
    padding: 20px 0 10px;
}

.tp7-video-grid.is-home {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.tp7-video-grid.is-compact {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.tp7-video-card {
    min-width: 0;
}

.tp7-video-card > span {
    position: relative;
    display: block;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    color: #8b9095;
    background: #e2e5e8;
}

.tp7-video-card img,
.tp7-video-card > span > b {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tp7-video-card > span > b {
    display: grid;
    place-items: center;
}

.tp7-video-card > span > i,
.tp7-video-list article > a > i {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 38px;
    height: 38px;
    background: rgb(17 180 117 / 0.9);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.tp7-video-card > span > i::after,
.tp7-video-list article > a > i::after {
    position: absolute;
    top: 11px;
    left: 15px;
    width: 0;
    height: 0;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-left: 12px solid #fff;
    content: "";
}

.tp7-video-card strong {
    display: -webkit-box;
    min-height: 42px;
    margin-top: 8px;
    overflow: hidden;
    color: #3f4449;
    font-size: 13px;
    line-height: 21px;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.tp7-news-columns {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 28px;
    padding: 12px 0;
}

.tp7-news-columns > a {
    position: relative;
    height: 30px;
    padding-left: 15px;
    overflow: hidden;
    line-height: 30px;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.tp7-news-columns > a::before {
    position: absolute;
    top: 10px;
    left: 2px;
    width: 3px;
    height: 10px;
    background: #c5c9cd;
    content: "";
}

.tp7-content-grid {
    margin-bottom: 30px;
}

.tp7-main-column {
    min-width: 0;
}

.tp7-main-column > .tp7-content-card,
.tp7-main-column > .tp7-schedule-panel,
.tp7-main-column > .tp7-signal-card,
.tp7-main-column > .tp7-article {
    margin-bottom: 20px;
}

.tp7-video-section,
.tp7-news-section {
    margin-top: 20px;
}

.tp7-news-list > article {
    display: grid;
    grid-template-columns: 190px minmax(0, 1fr);
    gap: 20px;
    min-height: 150px;
    padding: 20px 0;
    border-bottom: 1px dashed #e5e7e9;
}

.tp7-news-cover {
    display: block;
    height: 110px;
    overflow: hidden;
    background: #e5e8eb;
}

.tp7-news-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tp7-news-list h2,
.tp7-video-list h2 {
    font-size: 17px;
    line-height: 26px;
}

.tp7-news-list p,
.tp7-video-list p {
    display: -webkit-box;
    margin-top: 8px;
    overflow: hidden;
    color: #6a7076;
    line-height: 22px;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.tp7-news-list time,
.tp7-video-list time {
    display: block;
    margin-top: 10px;
    color: #a0a5aa;
    font-size: 12px;
}

.tp7-video-list article {
    display: grid;
    grid-template-columns: 210px minmax(0, 1fr);
    gap: 20px;
    min-height: 150px;
    padding: 20px 0;
    border-bottom: 1px dashed #e5e7e9;
}

.tp7-video-list article > a {
    position: relative;
    display: block;
    height: 118px;
    overflow: hidden;
    background: #e5e8eb;
}

.tp7-video-list article > a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tp7-list-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 10px;
}

.tp7-list-tags a {
    padding: 2px 8px;
    color: #087a55;
    background: #e9f5f0;
    border-radius: 2px;
    font-size: 12px;
    line-height: 20px;
}

.tp7-list-tags a:hover,
.tp7-list-tags a:focus-visible {
    color: #fff;
    background: var(--tp7-football);
}

.tp7-league-filter {
    margin: 0 0 20px;
    background: var(--tp7-surface);
    box-shadow: var(--tp7-shadow);
}

.tp7-league-selector {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 14px;
    margin: 0;
    padding: 15px;
    background: var(--tp7-surface);
    transition: max-height 0.25s ease;
}

.tp7-league-selector a {
    padding: 4px 8px;
    color: #656a70;
}

.tp7-league-selector a.active {
    color: #fff;
    background: var(--tp7-accent);
}

.tp7-league-filter.is-collapsible:not(.is-expanded) .tp7-league-selector {
    max-height: var(--tp7-league-collapsed-height);
    overflow: hidden;
}

.tp7-league-filter.is-collapsible.is-expanded .tp7-league-selector {
    max-height: var(--tp7-league-expanded-height);
    overflow: hidden;
}

.tp7-league-toggle {
    display: flex;
    width: 100%;
    min-height: 38px;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #697077;
    background: #fafbfb;
    border-top: 1px solid var(--tp7-line);
    cursor: pointer;
}

.tp7-league-toggle:hover,
.tp7-league-toggle:focus-visible {
    color: var(--tp7-football);
    background: #f4f8f6;
}

.tp7-league-toggle:focus-visible {
    outline: 2px solid var(--tp7-football);
    outline-offset: -2px;
}

.tp7-league-toggle i {
    width: 7px;
    height: 7px;
    border-right: 1px solid currentColor;
    border-bottom: 1px solid currentColor;
    transform: rotate(45deg) translateY(-2px);
    transition: transform 0.2s ease;
}

.tp7-league-filter.is-expanded .tp7-league-toggle i {
    transform: rotate(225deg) translate(-2px, -2px);
}

.tp7-live-layout {
    margin-bottom: 30px;
}

.tp7-empty,
.tp7-empty-card {
    color: #8c9298;
}

.tp7-empty {
    padding: 14px;
}

.tp7-empty-large {
    padding: 70px 20px;
    text-align: center;
}

.tp7-empty-card {
    margin: 30px auto;
    padding: 70px 25px;
    background: var(--tp7-surface);
    text-align: center;
}

.tp7-empty-card h1,
.tp7-empty-card h2 {
    margin-bottom: 8px;
    color: #384048;
    font-size: 22px;
}

.tp7-live-hero {
    width: 100%;
    height: 220px;
    margin-top: -30px;
    color: #fff;
    background: #27315d url("../img/live_play_bg.webp") center / cover no-repeat;
}

.tp7-live-hero-inner {
    display: grid;
    grid-template-columns: minmax(0, 35%) minmax(250px, 30%) minmax(0, 35%);
    align-items: center;
    width: min(1000px, calc(100% - 32px));
    height: 100%;
    margin-inline: auto;
}

.tp7-live-team {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
    font-size: 25px;
    font-weight: 700;
}

.tp7-live-team.is-home {
    justify-content: flex-end;
    text-align: right;
}

.tp7-live-team.is-away {
    justify-content: flex-start;
}

.tp7-live-team span {
    max-width: 260px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.tp7-live-team img,
.tp7-live-team i {
    display: grid;
    flex: 0 0 auto;
    width: 62px;
    height: 62px;
    padding: 5px;
    background: rgb(255 255 255 / 0.12);
    border-radius: 50%;
    place-items: center;
    object-fit: contain;
}

.tp7-live-team i {
    font-style: normal;
}

.tp7-live-center {
    text-align: center;
}

.tp7-live-center h1 {
    max-width: 420px;
    margin: 0 auto 8px;
    overflow: hidden;
    color: #fff;
    font-size: 20px;
    font-weight: 650;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.tp7-live-center p {
    display: inline-flex;
    gap: 10px;
    padding: 4px 18px;
    background: rgb(9 12 27 / 0.35);
    border-radius: 20px;
    font-size: 12px;
}

.tp7-live-center p a {
    color: #f5a623;
}

.tp7-live-center > strong {
    display: block;
    margin-top: 16px;
    font-size: 28px;
    line-height: 36px;
}

.tp7-live-center > em {
    display: inline-block;
    min-width: 60px;
    margin-top: 7px;
    padding: 2px 12px;
    color: #e8ebee;
    border: 1px solid rgb(255 255 255 / 0.55);
    border-radius: 16px;
    font-size: 12px;
    font-style: normal;
}

.tp7-detail-grid {
    margin-top: 0;
}

.tp7-signal-card {
    padding: 15px 25px 26px;
}

.tp7-signal-card > header {
    min-height: 42px;
    border-bottom: 1px solid var(--tp7-line);
}

.tp7-signal-card h1 {
    color: #212c3b;
    font-size: 19px;
    line-height: 42px;
}

.tp7-signal-card > div {
    display: flex;
    align-items: center;
    gap: 18px;
    min-height: 70px;
    color: #8b9095;
}

.tp7-signal-button {
    flex: 0 0 auto;
    padding: 8px 18px;
    color: #fff;
    background: var(--tp7-accent);
    border-radius: 5px;
    font-size: 16px;
}

.tp7-signal-button:hover {
    color: #fff;
    background: var(--tp7-accent-dark);
}

.tp7-related-matches {
    padding-bottom: 0;
}

.tp7-article {
    padding: 25px 35px 55px;
}

.tp7-article > header h1 {
    color: #33363a;
    font-size: 29px;
    line-height: 1.5;
    text-align: center;
}

.tp7-article-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    min-height: 68px;
    color: #999da2;
    border-bottom: 1px dotted #d5d7d9;
    font-size: 12px;
}

.tp7-article-summary {
    margin: 20px 0;
    padding: 14px 18px;
    color: #686e74;
    background: #f6f7f8;
    line-height: 24px;
}

.tp7-article-body {
    overflow-wrap: anywhere;
    color: #3d4247;
    font-size: 16px;
    line-height: 30px;
}

.tp7-article-body p {
    margin: 20px 0;
}

.tp7-article-body img,
.tp7-article-body video,
.tp7-article-body iframe {
    max-width: 100% !important;
    height: auto !important;
    margin-inline: auto;
}

.tp7-article-tags {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: 25px;
    color: #787e84;
}

.tp7-article-tags a {
    padding: 2px 9px;
    border: 1px solid #5d6268;
    border-radius: 4px;
}

.tp7-prev-next {
    display: grid;
    gap: 8px;
    margin-top: 30px;
    padding-top: 18px;
    border-top: 1px dotted #d5d7d9;
}

.tp7-prev-next a,
.tp7-prev-next > span {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.tp7-prev-next span {
    color: #8b9095;
}

.tp7-article.is-video-detail {
    padding-top: 18px;
}

.tp7-article.is-video-detail .tp7-article-body {
    margin-top: 22px;
}

.news-video-player {
    width: 100%;
    overflow: hidden;
    color: #e7eaed;
    background: #090b0f;
    border-radius: var(--tp7-radius);
}

.news-video-player video {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    max-height: 720px;
    background: #090b0f;
    object-fit: contain;
}

.news-video-player.is-portrait-video video {
    aspect-ratio: auto;
    min-height: 520px;
    max-height: 720px;
}

.news-video-player-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    min-height: 48px;
    padding: 10px 16px;
    background: #15191f;
}

.news-video-player-meta strong {
    min-width: 0;
    overflow: hidden;
    color: #f3f5f7;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.news-video-player-meta span {
    flex: 0 0 auto;
    margin-left: auto;
    color: #aab0b6;
    font-size: 12px;
}

.tp7-lightbox {
    position: fixed;
    z-index: 30;
    inset: 0;
    display: grid;
    padding: 30px;
    background: rgb(16 18 20 / 0.88);
    place-items: center;
}

.tp7-lightbox img {
    max-width: min(1100px, 94vw);
    max-height: 88vh;
    object-fit: contain;
}

.tp7-lightbox button {
    position: absolute;
    top: 18px;
    right: 24px;
    padding: 8px 14px;
    color: #fff;
    background: #34383d;
    cursor: pointer;
    border-radius: 3px;
}

.tp7-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 6px;
    padding: 30px 0 15px;
}

.tp7-pagination a,
.tp7-pagination span,
.tp7-pagination strong {
    min-width: 32px;
    height: 30px;
    padding-inline: 8px;
    color: #646a70;
    background: #f1f3f5;
    line-height: 30px;
    text-align: center;
}

.tp7-pagination strong {
    color: #fff;
    background: var(--tp7-accent);
}

.tp7-standings-main,
.tp7-sitemap-main {
    margin-bottom: 30px;
}

.tp7-standings-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    min-height: 100px;
    padding: 10px 0 16px;
}

.tp7-standings-tabs a {
    height: 38px;
    min-width: 75px;
    padding-inline: 16px;
    color: #5b6066;
    line-height: 38px;
    text-align: center;
}

.tp7-standings-tabs a.active {
    color: #fff;
    background: var(--tp7-accent);
}

.tp7-table-section > h2,
.tp7-fixture-list > h2 {
    padding: 12px;
    color: #343940;
    background: #f3f5f7;
    font-size: 16px;
}

.tp7-table-section > h3 {
    padding: 10px 12px;
    color: var(--tp7-accent);
    font-size: 14px;
}

.tp7-table-wrap {
    overflow-x: auto;
}

.tp7-standings-table {
    width: 100%;
    min-width: 880px;
    border-collapse: collapse;
}

.tp7-standings-table th {
    height: 38px;
    color: #676d73;
    background: #f0f2f4;
    font-size: 13px;
    font-weight: 400;
}

.tp7-standings-table td {
    height: 50px;
    color: #565c62;
    border-bottom: 1px solid #eef0f2;
    font-size: 14px;
    text-align: center;
}

.tp7-standings-table tbody tr:nth-child(even) td {
    background: #f5f7fa;
}

.tp7-standings-table .tp7-team-cell {
    width: 240px;
    text-align: left;
}

.tp7-standings-table .tp7-team-cell > span {
    display: flex;
    align-items: center;
    gap: 9px;
}

.tp7-standings-table .tp7-team-cell img,
.tp7-standings-table .tp7-team-cell i {
    display: block;
    flex: 0 0 auto;
    width: 30px;
    height: 30px;
    background: #e7eaed;
    border-radius: 50%;
    object-fit: contain;
}

.tp7-rank {
    display: inline-grid;
    width: 26px;
    height: 26px;
    color: #6d7379;
    background: #edf0f2;
    border-radius: 50%;
    place-items: center;
}

.tp7-standings-table tr:nth-child(-n + 3) .tp7-rank {
    color: #fff;
    background: var(--tp7-accent);
}

.tp7-fixture-list > div {
    display: grid;
    grid-template-columns: 160px 1fr 60px 1fr;
    align-items: center;
    min-height: 48px;
    border-bottom: 1px solid #eef0f2;
    text-align: center;
}

.tp7-sitemap-groups {
    display: grid;
    gap: 20px;
    padding-top: 20px;
}

.tp7-sitemap-groups section {
    padding: 18px;
    background: #f7f8f9;
}

.tp7-sitemap-groups h2 {
    margin-bottom: 12px;
    color: var(--tp7-accent);
    font-size: 16px;
}

.tp7-sitemap-groups section > div {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px 20px;
}

.tp7-sitemap-groups a {
    display: flex;
    justify-content: space-between;
    gap: 8px;
    min-width: 0;
}

.tp7-sitemap-groups a span {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.tp7-sitemap-groups time {
    color: #a0a5aa;
    font-size: 11px;
}

.tp7-footer {
    min-height: 118px;
    color: #656b71;
    background: #111315;
}

.tp7-footer-inner {
    display: grid;
    grid-template-columns: 210px minmax(0, 1fr) auto;
    align-items: center;
    min-height: 118px;
}

.tp7-footer-brand {
    color: #f06423;
    font-size: 25px;
    font-weight: 800;
}

.tp7-footer nav {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 20px;
}

.tp7-footer nav a {
    color: #7a8086;
}

.tp7-footer-inner > div {
    color: #555c63;
    font-size: 11px;
    text-align: right;
}

.tp7-back-top {
    position: fixed;
    z-index: 20;
    right: 24px;
    bottom: 30px;
    width: 42px;
    height: 42px;
    overflow: hidden;
    color: transparent;
    background: var(--tp7-header-soft);
    border-radius: 3px;
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transform: translateY(10px);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.tp7-back-top::before,
.tp7-back-top::after {
    position: absolute;
    content: "";
}

.tp7-back-top::before {
    top: 13px;
    left: 14px;
    width: 12px;
    height: 12px;
    border-top: 2px solid #fff;
    border-left: 2px solid #fff;
    transform: rotate(45deg);
}

.tp7-back-top::after {
    top: 20px;
    left: 20px;
    width: 2px;
    height: 11px;
    background: #fff;
}

.tp7-back-top.is-visible {
    opacity: 0.9;
    pointer-events: auto;
    transform: translateY(0);
}

@media (max-width: 1180px) {
    .tp7-nav {
        margin-left: 20px;
    }

    .tp7-nav a {
        padding-inline: 13px;
    }

    .tp7-featured-matches {
        grid-auto-columns: minmax(260px, calc((100% - 48px) / 4));
    }

    .tp7-featured-card {
        scroll-snap-align: start;
    }
}

@media (max-width: 960px) {
    .tp7-utility {
        display: none;
    }

    .tp7-header,
    .tp7-header-inner {
        height: 68px;
    }

    .tp7-brand strong {
        font-size: 23px;
    }

    .tp7-nav-toggle {
        display: block;
    }

    .tp7-nav {
        position: absolute;
        z-index: 25;
        top: 68px;
        right: 0;
        left: 0;
        display: none;
        height: auto;
        margin: 0;
        padding: 10px;
        background: var(--tp7-header);
        box-shadow: 0 12px 22px rgb(18 20 22 / 0.22);
    }

    .tp7-nav.is-open {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .tp7-nav a {
        height: 46px;
    }

    .tp7-nav a.active::after {
        display: none;
    }

    .tp7-home-grid,
    .tp7-content-grid,
    .tp7-home-feature {
        grid-template-columns: minmax(0, 1fr);
    }

    .tp7-feature-news {
        padding-right: 10px;
    }

    .tp7-feature-news h1,
    .tp7-news-flash-shell {
        width: 100%;
    }

    .tp7-news-flash-scroll {
        width: calc(100% + 17px);
    }

    .tp7-news-flash-list {
        width: calc(100% - 2px);
    }

    .tp7-news-flash-item {
        width: calc(100% - 13px);
    }

    .tp7-news-flash-title {
        width: calc(100% - 37px);
    }

    .tp7-news-flash-scrollbar {
        right: 0;
    }

    .tp7-footer-inner {
        grid-template-columns: 1fr;
        gap: 15px;
        padding-block: 26px;
        text-align: center;
    }

    .tp7-footer nav {
        justify-content: center;
    }

    .tp7-footer-inner > div {
        text-align: center;
    }
}

@media (max-width: 760px) {
    .tp7-shell {
        width: min(100% - 24px, var(--tp7-container));
    }

    .tp7-match-strip {
        min-height: 164px;
        padding-block: 12px;
    }

    .tp7-featured-matches {
        grid-auto-columns: 268px;
    }

    .tp7-home-main {
        padding-top: 18px;
    }

    .tp7-feature-media {
        min-height: 250px;
        padding: 12px;
    }

    .tp7-feature-carousel-viewport {
        height: 226px;
    }

    .tp7-feature-carousel-slide > a > span,
    .tp7-media-empty {
        min-height: 226px;
    }

    .tp7-feature-carousel-button.is-prev {
        left: 12px;
    }

    .tp7-feature-carousel-button.is-next {
        right: 12px;
    }

    .tp7-feature-carousel-dots {
        bottom: 24px;
    }

    .tp7-schedule-panel,
    .tp7-content-card,
    .tp7-side-card {
        padding: 12px;
    }

    .tp7-schedule-head {
        align-items: flex-start;
        flex-direction: column;
        gap: 10px;
        padding: 10px 0;
    }

    .tp7-schedule-head h1,
    .tp7-schedule-head h2 {
        margin-right: 0;
    }

    .tp7-schedule-tabs {
        width: 100%;
        padding-left: 0;
        border-left: 0;
    }

    .tp7-schedule-tabs button {
        flex: 1 1 auto;
        padding-inline: 8px;
    }

    .tp7-schedule-row {
        grid-template-columns: minmax(0, 1fr);
        grid-template-areas: "meta" "teams" "watch";
        row-gap: 10px;
        min-height: 0;
        padding: 10px 0 12px;
    }

    .tp7-schedule-meta {
        grid-template-columns: 22px minmax(0, 1fr) auto;
        align-items: center;
        column-gap: 8px;
        padding-left: 0;
    }

    .tp7-schedule-meta > span {
        display: grid;
    }

    .tp7-schedule-meta a {
        grid-column: auto;
        font-size: 12px;
    }

    .tp7-schedule-meta time {
        grid-column: auto;
        margin-top: 0;
        padding-left: 0;
        white-space: nowrap;
    }

    .tp7-schedule-teams {
        grid-template-columns: minmax(0, 1fr) 72px minmax(0, 1fr);
    }

    .tp7-schedule-teams > p {
        grid-template-columns: minmax(0, 1fr) 20px;
        gap: 5px;
        font-size: 13px;
    }

    .tp7-schedule-teams > p:last-child {
        grid-template-columns: 20px minmax(0, 1fr);
    }

    .tp7-schedule-teams > p span {
        display: -webkit-box;
        max-height: 36px;
        line-height: 18px;
        white-space: normal;
        word-break: break-word;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
    }

    .tp7-schedule-teams > em .tp7-match-score {
        font-size: 13px;
    }

    .tp7-schedule-teams > em small {
        min-width: 42px;
        padding-inline: 3px;
    }

    .tp7-watch {
        position: static;
        justify-self: center;
        width: 132px;
        height: 32px;
        line-height: 32px;
    }

    .tp7-video-grid,
    .tp7-video-grid.is-home,
    .tp7-video-grid.is-compact {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px 10px;
    }

    .tp7-news-columns {
        grid-template-columns: 1fr;
    }

    .tp7-news-list > article,
    .tp7-video-list article {
        grid-template-columns: 120px minmax(0, 1fr);
        gap: 12px;
        min-height: 112px;
        padding: 14px 0;
    }

    .tp7-news-cover,
    .tp7-video-list article > a {
        height: 84px;
    }

    .tp7-news-list p,
    .tp7-video-list p {
        display: none;
    }

    .tp7-news-list h2,
    .tp7-video-list h2 {
        font-size: 14px;
        line-height: 22px;
    }

    .tp7-list-tags {
        gap: 4px;
        margin-top: 6px;
        overflow: hidden;
        max-height: 24px;
    }

    .tp7-list-tags a {
        padding-inline: 6px;
        font-size: 11px;
    }

    .tp7-live-hero {
        height: auto;
        min-height: 250px;
        margin-top: 0;
    }

    .tp7-live-hero-inner {
        grid-template-columns: 1fr 110px 1fr;
        width: calc(100% - 24px);
        min-height: 250px;
    }

    .tp7-live-team {
        flex-direction: column;
        gap: 7px;
        font-size: 14px;
        text-align: center;
    }

    .tp7-live-team.is-home,
    .tp7-live-team.is-away {
        justify-content: center;
    }

    .tp7-live-team.is-home span {
        order: 2;
    }

    .tp7-live-team img,
    .tp7-live-team i {
        width: 52px;
        height: 52px;
    }

    .tp7-live-center p {
        align-items: center;
        flex-direction: column;
        gap: 0;
        padding: 5px 10px;
    }

    .tp7-article {
        padding: 20px 16px 36px;
    }

    .tp7-article > header h1 {
        font-size: 23px;
    }

    .tp7-article-meta {
        align-items: center;
        flex-direction: column;
        gap: 2px;
        padding-block: 12px;
    }

    .tp7-article-body {
        font-size: 15px;
        line-height: 28px;
    }

    .news-video-player.is-portrait-video video {
        min-height: 420px;
        max-height: 72vh;
    }

    .news-video-player-meta {
        padding-inline: 12px;
    }

    .tp7-sitemap-groups section > div {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 420px) {
    .tp7-video-grid,
    .tp7-video-grid.is-home,
    .tp7-video-grid.is-compact {
        grid-template-columns: 1fr;
    }

    .tp7-live-hero-inner {
        grid-template-columns: 1fr 90px 1fr;
    }

    .tp7-fixture-list > div {
        grid-template-columns: 86px 1fr 32px 1fr;
        font-size: 12px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }
}

/* Live detail redirect CTA */
[data-live-loading-link] {
    --live-cta-start: #087a4e;
    --live-cta-end: #055c3a;
    --live-cta-glow-rgb: 17 180 117;
    --live-cta-text: #fff;
    position: relative;
    z-index: 1;
    display: inline-flex;
    min-width: 132px;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    padding: 0 24px;
    border: 1px solid rgb(var(--live-cta-glow-rgb) / 42%);
    background: linear-gradient(135deg, var(--live-cta-start), var(--live-cta-end));
    color: var(--live-cta-text);
    font-size: 17px;
    font-weight: 800;
    font-family: inherit;
    line-height: 1.2;
    letter-spacing: .08em;
    text-decoration: none;
    white-space: nowrap;
    cursor: pointer;
    -webkit-appearance: none;
    appearance: none;
    box-shadow: 0 10px 24px rgb(var(--live-cta-glow-rgb) / 30%);
    animation: live-cta-breathe 1.8s ease-in-out infinite;
    will-change: scale, box-shadow;
}

[data-live-loading-link]:hover,
[data-live-loading-link]:focus-visible {
    color: var(--live-cta-text);
    filter: saturate(1.12) brightness(1.05);
}

[data-live-loading-link]:focus-visible {
    outline: 3px solid rgb(var(--live-cta-glow-rgb) / 55%);
    outline-offset: 3px;
}

@keyframes live-cta-breathe {
    0%, 100% {
        scale: 1;
        box-shadow: 0 10px 24px rgb(var(--live-cta-glow-rgb) / 30%), 0 0 0 0 rgb(var(--live-cta-glow-rgb) / 34%);
    }

    50% {
        scale: 1.045;
        box-shadow: 0 14px 32px rgb(var(--live-cta-glow-rgb) / 42%), 0 0 0 10px rgb(var(--live-cta-glow-rgb) / 0%);
    }
}

@media (prefers-reduced-motion: reduce) {
    [data-live-loading-link] {
        animation: none;
        scale: 1;
    }
}

/* Mobile category-card navigation CTA. */


[data-content-tag-more].tp7-content-tag-more {
    display: none;
}

.tp7-content-tag-more:focus-visible {
    outline: 2px solid var(--tp7-accent-dark);
    outline-offset: -2px;
}

@media (max-width: 767px) {
    [data-content-tag-more].tp7-content-tag-more {
        float: none;
        clear: both;
        width: 100%;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
        align-self: stretch;
        margin: 12px 0 0;
        padding: 0 16px;
        box-sizing: border-box;
        border: 1px solid var(--tp7-line);
        border-radius: 4px;
        background: #edfaf5;
        color: var(--tp7-accent-dark);
        font-size: 14px;
        font-weight: 600;
        line-height: 20px;
        text-align: center;
        text-decoration: none;
        white-space: nowrap;
    }

    [data-content-tag-more].tp7-content-tag-more:hover,
    [data-content-tag-more].tp7-content-tag-more:focus-visible,
    [data-content-tag-more].tp7-content-tag-more:active {
        border-color: var(--tp7-accent-dark);
        background: var(--tp7-accent-dark);
        color: #fefefe;
    }
}
