.ta-shell {
    max-width: 1820px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.ta-main {
    max-width: 1240px;
    flex: 1 1 auto;
    min-width: 0;
}

.ta-rail {
    display: none;
}

@media (min-width: 1440px) {
    .ta-rail {
        display: block;
        flex: 0 0 160px;
        min-height: 600px;
        margin-top: 14px;
        position: sticky;
        top: 16px;
    }
}

.ta-title {
    margin: 0;
    font-family: var(--iot-font-heading);
    font-size: 30px;
    line-height: 1.15;
    letter-spacing: -.01em;
    color: var(--iot-text);
}

.ta-cta {
    margin-top: 12px;
}

.ta-cta__btn {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: var(--iot-green);
    color: #fff;
    font-family: var(--iot-font-heading);
    font-size: 15px;
    font-weight: 700;
    padding: 11px 18px;
    border-radius: 9px;
    min-height: 44px;
    box-sizing: border-box;
}

.ta-cta__btn:hover,
.ta-cta__btn:focus {
    background: #00641c;
    color: #fff;
    text-decoration: none;
}

.ta-summary {
    background: linear-gradient(135deg, var(--iot-navy-700), var(--iot-navy-950));
    border-radius: 13px;
    margin-top: 14px;
    padding: 20px 22px 22px;
    color: #fff;
}

.ta-summary__top {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    flex-wrap: wrap;
}

.ta-summary__id {
    flex: 1 1 300px;
    min-width: 260px;
}

.ta-summary__head {
    display: flex;
    align-items: center;
    gap: 11px;
    flex-wrap: wrap;
}

.ta-summary__name {
    font-family: var(--iot-font-heading);
    font-size: 27px;
    font-weight: 700;
    line-height: 1.1;
    color: #fff;
}

.ta-summary__league {
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--iot-blue-accent);
    background: rgba(41, 187, 238, .12);
    border: 1px solid rgba(41, 187, 238, .32);
    padding: 4px 10px;
    border-radius: var(--iot-radius-pill);
}

.ta-summary__scope {
    margin: 6px 0 0;
    font-size: 11px;
    color: #8fa5bf;
}

.ta-form {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-top: 12px;
    flex-wrap: wrap;
}

.ta-form__label {
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: .07em;
    text-transform: uppercase;
    color: #8fa5bf;
}

.ta-form__list {
    display: flex;
    gap: 4px;
    overflow-x: auto;
}

.ta-form__item {
    flex: none;
    width: 26px;
    height: 26px;
    border: 0;
    border-radius: 6px;
    display: grid;
    place-items: center;
    font: inherit;
    font-size: 12px;
    font-weight: 700;
    color: #fff;
    cursor: pointer;
    padding: 0;
}

.ta-form__item.is-open {
    box-shadow: 0 0 0 2px var(--iot-blue-accent);
}

.ta-res--g { background: var(--iot-green); }
.ta-res--b { background: var(--iot-text-muted-3); }
.ta-res--m { background: #b3401f; }

.ta-summary__streak {
    margin: 11px 0 0;
    font-size: 12.5px;
    line-height: 1.6;
    color: #b9c8dc;
    max-width: 52ch;
}

.ta-wdl {
    flex: 1 1 300px;
    min-width: 260px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.ta-wdl__card {
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 10px;
    padding: 11px 12px;
}

.ta-wdl__label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: #8fa5bf;
}

.ta-wdl__value {
    display: flex;
    align-items: baseline;
    gap: 5px;
    margin-top: 3px;
}

.ta-wdl__count {
    font-family: var(--iot-font-heading);
    font-size: 23px;
    font-weight: 700;
    line-height: 1;
    font-variant-numeric: tabular-nums;
}

.ta-wdl__pct {
    font-size: 11px;
    color: #8fa5bf;
    font-variant-numeric: tabular-nums;
}

.ta-wdl__track {
    height: 5px;
    border-radius: 3px;
    background: rgba(255, 255, 255, .1);
    overflow: hidden;
    margin-top: 7px;
}

.ta-wdl__fill {
    display: block;
    height: 5px;
    border-radius: 3px;
    width: var(--pct, 0%);
}

.ta-wdl__card--g .ta-wdl__count { color: #8be8a3; }
.ta-wdl__card--g .ta-wdl__fill  { background: var(--iot-green); }
.ta-wdl__card--b .ta-wdl__count { color: #dce6f2; }
.ta-wdl__card--b .ta-wdl__fill  { background: var(--iot-text-muted-3); }
.ta-wdl__card--m .ta-wdl__count { color: #ff9d86; }
.ta-wdl__card--m .ta-wdl__fill  { background: #b3401f; }

.ta-kpis {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 10px;
    margin-top: 18px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, .12);
}

.ta-kpi__label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: #8fa5bf;
}

.ta-kpi__value {
    font-family: var(--iot-font-heading);
    font-size: 20px;
    font-weight: 700;
    line-height: 1.1;
    margin-top: 3px;
    font-variant-numeric: tabular-nums;
}

.ta-kpi__note {
    font-size: 10.5px;
    color: #8fa5bf;
    margin-top: 2px;
}

.ta-lead {
    margin: 14px 0 0;
    font-size: 14.5px;
    line-height: 1.7;
    color: var(--iot-text-secondary);
    max-width: 86ch;
}

.ta-body {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-top: 14px;
    flex-wrap: wrap;
}

.ta-col-main {
    flex: 1 1 620px;
    min-width: 0;
}

.ta-aside {
    flex: 1 1 300px;
    min-width: 280px;
    max-width: 360px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.ta-matches {
    background: #fff;
    border-radius: 11px;
    box-shadow: var(--iot-shadow-card);
    overflow: hidden;
}

.ta-matches__head {
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 15px 20px 0;
    flex-wrap: wrap;
}

.ta-matches__title {
    margin: 0;
    font-family: var(--iot-font-heading);
    font-size: 19px;
    font-weight: 700;
    color: var(--iot-text);
}

.ta-matches__note {
    font-size: 12.5px;
    color: var(--iot-text-muted-2);
}

.ta-leagues {
    display: flex;
    gap: 6px;
    padding: 13px 20px 0;
    overflow-x: auto;
}

.ta-league-chip {
    flex: none;
    border: 1px solid var(--iot-border-strong);
    background: var(--iot-bg-panel-alt);
    color: #4d5f74;
    font: inherit;
    font-size: 12.5px;
    font-weight: 700;
    padding: 8px 13px;
    border-radius: var(--iot-radius-pill);
    cursor: pointer;
    white-space: nowrap;
    min-height: 38px;
}

.ta-league-chip__count {
    color: var(--iot-text-muted-2);
    font-weight: 400;
}

.ta-league-chip.is-active {
    background: var(--iot-navy-700);
    border-color: var(--iot-navy-700);
    color: #fff;
}

.ta-league-chip.is-active .ta-league-chip__count {
    color: #8fa5bf;
}

.ta-filters {
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 12px 20px;
    flex-wrap: wrap;
}

.ta-search {
    position: relative;
    flex: 1 1 200px;
    min-width: 170px;
}

.ta-search__icon {
    position: absolute;
    left: 11px;
    top: 12px;
    color: var(--iot-text-muted-2);
}

.ta-search__input {
    width: 100%;
    box-sizing: border-box;
    height: 40px;
    border: 1px solid var(--iot-border-strong);
    border-radius: 8px;
    padding: 0 12px 0 33px;
    font: inherit;
    font-size: 13.5px;
    color: var(--iot-text);
    background: var(--iot-bg-panel-alt);
}

.ta-seg {
    display: flex;
    gap: 3px;
    background: #eef2f6;
    padding: 3px;
    border-radius: 8px;
}

.ta-seg__btn {
    border: 0;
    cursor: pointer;
    font: inherit;
    font-size: 12px;
    font-weight: 700;
    padding: 8px 12px;
    border-radius: var(--iot-radius-control);
    min-height: 38px;
    background: transparent;
    color: var(--iot-text-muted-2);
}

.ta-seg__btn.is-active {
    background: #fff;
    color: var(--iot-text);
}

.ta-seg__btn--g.is-active { color: var(--iot-green); }
.ta-seg__btn--m.is-active { color: #b3401f; }

.ta-active {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 0 20px 12px;
    flex-wrap: wrap;
}

.ta-active__label {
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--iot-text-muted-2);
}

.ta-active__list {
    display: flex;
    align-items: center;
    gap: 7px;
    flex-wrap: wrap;
}

.ta-active__chip {
    display: flex;
    align-items: center;
    gap: 7px;
    border: 1px solid #cfe0ee;
    background: #f2f8fc;
    color: #0b4c86;
    font: inherit;
    font-size: 12px;
    font-weight: 700;
    padding: 7px 11px;
    border-radius: var(--iot-radius-pill);
    cursor: pointer;
    min-height: 36px;
    max-width: 100%;
}

.ta-active__chip:hover,
.ta-active__chip:focus {
    border-color: #0b4c86;
}

.ta-active__chip-text {
    max-width: 220px;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.ta-active__chip-x {
    flex: none;
    font-size: 13px;
    line-height: 1;
    color: var(--iot-text-muted-2);
}

.ta-active__reset {
    border: 0;
    background: none;
    font: inherit;
    font-size: 12px;
    font-weight: 700;
    color: #0b4c86;
    cursor: pointer;
    text-decoration: underline;
    min-height: 36px;
}

.ta-loading {
    padding: 34px 20px;
    text-align: center;
}

.ta-loading__track {
    display: block;
    width: 170px;
    height: 4px;
    margin: 0 auto;
    border-radius: 2px;
    background: #eef2f6;
    overflow: hidden;
}

.ta-loading__bar {
    display: block;
    width: 25%;
    height: 4px;
    border-radius: 2px;
    background: var(--iot-blue-accent);
    animation: taSweep 1s linear infinite;
}

@keyframes taSweep {
    0%   { transform: translateX(-100%); }
    100% { transform: translateX(400%); }
}

.ta-loading__text {
    display: block;
    margin-top: 11px;
    font-size: 14px;
    color: var(--iot-text);
}

.ta-tablewrap {
    overflow-x: auto;
    padding-bottom: 10px;
}

.ta-table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
    min-width: 820px;
    margin: 0;
}

.ta-table thead tr {
    background: var(--iot-bg-panel);
    color: #4d5f74;
}

.ta-table th {
    padding: 11px 8px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .06em;
    border: 0;
    vertical-align: middle;
}

.ta-table th.ta-c-date { width: 136px; padding-left: 20px; }
.ta-table th.ta-c-home { text-align: right; }
.ta-table th.ta-c-ht   { width: 82px; text-align: center; }
.ta-table th.ta-c-ft   { width: 92px; text-align: center; }
.ta-table th.ta-c-act  { width: 128px; padding-right: 20px; text-align: right; }

.ta-table td {
    padding: 10px 8px;
    border: 0;
    vertical-align: middle;
}

.ta-row {
    border-top: 1px solid #eef2f6;
    background: #fff;
}

.ta-row:hover {
    background: #f4f9fd;
}

.ta-row.is-open {
    background: #eef6fc;
}

.ta-row td.ta-c-date { padding-left: 20px; }
.ta-row td.ta-c-home { text-align: right; }
.ta-row td.ta-c-ht   { text-align: center; font-size: 12.5px; color: var(--iot-text-muted-2); font-variant-numeric: tabular-nums; }
.ta-row td.ta-c-ft   { text-align: center; }
.ta-row td.ta-c-act  { text-align: right; padding-right: 20px; }

.ta-c-date {
    display: table-cell;
}

.ta-row td.ta-c-date > .ta-row__flag,
.ta-row td.ta-c-date > .ta-row__when {
    vertical-align: middle;
}

.ta-row td.ta-c-date {
    white-space: nowrap;
}

.ta-row__flag {
    display: inline-block;
    flex: none;
    width: 6px;
    height: 20px;
    border-radius: 3px;
    margin-right: 7px;
}

.ta-row__when {
    display: inline-block;
    min-width: 0;
    max-width: calc(100% - 15px);
    vertical-align: middle;
}

.ta-row__date {
    display: block;
    font-size: 12.5px;
    color: #4d5f74;
    font-variant-numeric: tabular-nums;
}

.ta-row__league {
    display: block;
    font-size: 11px;
    color: var(--iot-text-muted-2);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.ta-team {
    display: block;
    font-size: 13.5px;
    font-weight: 400;
    color: #4d5f74;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.ta-team.is-own {
    font-weight: 700;
    color: var(--iot-green);
}

.ta-score {
    display: inline-block;
    min-width: 52px;
    padding: 4px 8px;
    border-radius: var(--iot-radius-control);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    font-variant-numeric: tabular-nums;
    text-align: center;
}

.ta-detail-btn {
    font-size: 12.5px;
    font-weight: 700;
    color: #0b4c86;
}

.ta-detailrow {
    background: var(--iot-bg-panel-alt);
}

.ta-detailrow > td {
    padding: 0 20px 14px !important;
}

.ta-detail {
    padding-top: 12px;
}

.ta-detail__head {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.ta-detail__title {
    margin: 0;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--iot-text-muted-2);
}

.ta-detail__note {
    font-size: 11.5px;
    color: var(--iot-text-muted-2);
}

.ta-detail__link {
    margin-left: auto;
    font-size: 12px;
    font-weight: 700;
    color: #0b4c86;
}

.ta-detail__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 7px;
    margin-top: 10px;
}

.ta-chip {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    border: 1px solid #eef2f6;
    border-radius: 9px;
    padding: 9px 11px;
    min-height: 40px;
    box-sizing: border-box;
}

.ta-chip:hover,
.ta-chip:focus {
    border-color: #cfe0ee;
    text-decoration: none;
}

.ta-chip__dot {
    flex: none;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--iot-text-muted-2);
}

.ta-chip--ms .ta-chip__dot { background: var(--iot-green); }
.ta-chip--au .ta-chip__dot { background: #0b4c86; }
.ta-chip--iy .ta-chip__dot { background: #0b6f95; }
.ta-chip--kg .ta-chip__dot { background: #a9821c; }

.ta-chip__label {
    flex: 1;
    min-width: 0;
    font-size: 12.5px;
    font-weight: 700;
    color: #0b4c86;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.ta-cards {
    display: none;
}

.ta-card {
    padding: 10px 13px;
    border-top: 1px solid #eef2f6;
    background: #fff;
}

.ta-card.is-open {
    background: #eef6fc;
}

.ta-card__top {
    display: flex;
    align-items: center;
    gap: 8px;
}

.ta-card__top .ta-row__flag {
    width: 5px;
    height: 18px;
    margin-right: 0;
}

.ta-card__meta {
    flex: 1;
    min-width: 0;
    font-size: 10.5px;
    color: var(--iot-text-muted-2);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.ta-card__ht {
    flex: none;
    font-size: 10.5px;
    color: var(--iot-text-muted-2);
    font-variant-numeric: tabular-nums;
}

.ta-card__teams {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 5px;
}

.ta-card__teams .ta-team--home {
    flex: 1;
    min-width: 0;
    text-align: right;
    font-size: 12.5px;
}

.ta-card__teams .ta-team--away {
    flex: 1;
    min-width: 0;
    font-size: 12.5px;
}

.ta-card__teams .ta-score {
    flex: none;
    min-width: 52px;
    padding: 3px 7px;
    font-size: 12px;
    border-radius: 5px;
}

.ta-card__act {
    text-align: center;
    margin-top: 5px;
}

.ta-card__act .ta-detail-btn {
    display: inline-block;
    font-size: 11.5px;
    min-height: 32px;
    line-height: 32px;
}

.ta-detail--card {
    margin-top: 6px;
    padding-top: 8px;
    border-top: 1px dashed var(--iot-border);
}

.ta-detail--card .ta-detail__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 5px;
    margin-top: 7px;
}

.ta-detail--card .ta-chip {
    background: var(--iot-bg-panel-alt);
    padding: 9px;
}

.ta-detail--card .ta-chip__label {
    font-size: 11.5px;
}

.ta-detail__link--block {
    display: block;
    margin: 7px 0 0;
    text-align: center;
    font-size: 11.5px;
    min-height: 36px;
    line-height: 36px;
}

.ta-empty {
    padding: 38px 20px 42px;
    text-align: center;
}

.ta-empty__text {
    margin: 0;
    font-size: 14px;
    color: var(--iot-text-muted-2);
}

.ta-empty__btn {
    margin-top: 10px;
    border: 1px solid var(--iot-border-strong);
    background: var(--iot-bg-panel-alt);
    color: #0b4c86;
    font: inherit;
    font-size: 12.5px;
    font-weight: 700;
    padding: 9px 15px;
    border-radius: 8px;
    cursor: pointer;
    min-height: 40px;
}

.ta-more {
    display: block;
    width: 100%;
    margin-top: 10px;
    padding: 13px;
    background-color: var(--iot-green);
    color: #fff;
    border: none;
    border-radius: 0 0 11px 11px;
    cursor: pointer;
    font: inherit;
    font-family: var(--iot-font-heading);
    font-size: 15px;
    font-weight: 700;
    min-height: 48px;
}

.ta-more:hover,
.ta-more:focus {
    background-color: #00641c;
}

.ta-more[disabled] {
    opacity: .6;
    cursor: default;
}

.ta-panel {
    background: #fff;
    border-radius: 11px;
    box-shadow: var(--iot-shadow-card);
    padding: 15px 17px 17px;
}

.ta-panel--dark {
    background: var(--iot-navy-700);
    box-shadow: none;
}

.ta-panel__head {
    display: flex;
    align-items: center;
    gap: 9px;
    flex-wrap: wrap;
}

.ta-panel__title {
    margin: 0 0 3px;
    font-family: var(--iot-font-heading);
    font-size: 16px;
    font-weight: 700;
    color: var(--iot-text);
}

.ta-panel__head .ta-panel__title {
    margin-bottom: 0;
}

.ta-panel__title--light {
    color: #fff;
}

.ta-panel__scope {
    margin-left: auto;
    font-size: 11px;
    color: var(--iot-text-muted-2);
}

.ta-panel__note {
    margin: 3px 0 11px;
    font-size: 11.5px;
    line-height: 1.5;
    color: var(--iot-text-muted-2);
}

.ta-panel__note--light {
    color: #8fa5bf;
}

.ta-panel__foot {
    margin: 10px 0 0;
    font-size: 11px;
    line-height: 1.5;
    color: var(--iot-text-muted-2);
}

.ta-mgroups {
    display: flex;
    gap: 5px;
    margin-bottom: 11px;
    overflow-x: auto;
    padding-bottom: 2px;
}

.ta-mgroup {
    flex: none;
    border: 1px solid var(--iot-border-strong);
    background: var(--iot-bg-panel-alt);
    color: #4d5f74;
    font: inherit;
    font-size: 11px;
    font-weight: 700;
    padding: 7px 10px;
    border-radius: var(--iot-radius-pill);
    cursor: pointer;
    white-space: nowrap;
    min-height: 34px;
}

.ta-mgroup.is-active {
    background: var(--iot-navy-700);
    border-color: var(--iot-navy-700);
    color: #fff;
}

.ta-markets {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.ta-market {
    display: flex;
    align-items: center;
    gap: 9px;
    border: 0;
    background: transparent;
    border-radius: 7px;
    padding: 8px 9px;
    cursor: pointer;
    text-align: left;
    min-height: 38px;
}

.ta-market.is-active {
    background: #eef6fc;
}

.ta-market__label {
    flex: 1;
    min-width: 0;
    font-size: 12.5px;
    color: #4d5f74;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.ta-market.is-active .ta-market__label {
    color: #0b4c86;
}

.ta-market__track {
    flex: none;
    width: 64px;
    height: 7px;
    border-radius: 4px;
    background: #eef2f6;
    overflow: hidden;
}

.ta-market__fill {
    display: block;
    height: 7px;
    border-radius: 4px;
    width: var(--pct, 0%);
}

.ta-market__pct {
    flex: none;
    min-width: 36px;
    text-align: right;
    font-size: 12px;
    font-weight: 700;
    font-variant-numeric: tabular-nums;
}

.ta-split__head {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 9px;
    padding-bottom: 9px;
    border-bottom: 1px solid #eef2f6;
}

.ta-split__head-home {
    text-align: right;
    font-family: var(--iot-font-heading);
    font-size: 13.5px;
    font-weight: 700;
    color: var(--iot-text);
}

.ta-split__head-pick {
    font-size: 10px;
    letter-spacing: .06em;
    color: var(--iot-text-muted-2);
    text-align: center;
    min-width: 82px;
}

.ta-split__head-away {
    font-family: var(--iot-font-heading);
    font-size: 13.5px;
    font-weight: 700;
    color: #0b6f95;
}

.ta-split__row {
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr) 82px minmax(0, 1fr) 34px;
    align-items: center;
    gap: 5px;
    padding: 6px 0;
    border-bottom: 1px solid var(--iot-bg-panel);
}

.ta-split__val {
    font-size: 11.5px;
    font-weight: 700;
    color: var(--iot-text-muted-2);
    font-variant-numeric: tabular-nums;
}

.ta-split__val--home {
    text-align: right;
}

.ta-split__barwrap {
    display: block;
}

.ta-split__barwrap--home {
    display: flex;
    justify-content: flex-end;
}

.ta-split__bar {
    display: block;
    height: 13px;
    width: var(--pct, 0%);
}

.ta-split__bar--home {
    border-radius: 3px 0 0 3px;
    background: #a8b6c7;
}

.ta-split__bar--away {
    border-radius: 0 3px 3px 0;
    background: #a8cbe8;
}

.ta-split__row.is-home-lead .ta-split__bar--home { background: var(--iot-navy-700); }
.ta-split__row.is-home-lead .ta-split__val--home { color: var(--iot-navy-700); }
.ta-split__row.is-away-lead .ta-split__bar--away { background: #0b6f95; }
.ta-split__row.is-away-lead .ta-split__val--away { color: #0b6f95; }

.ta-split__label {
    text-align: center;
    font-size: 11px;
    color: #4d5f74;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.ta-hist {
    display: flex;
    align-items: flex-end;
    gap: 5px;
    height: 96px;
}

.ta-hist__col {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    gap: 4px;
    border: 0;
    background: none;
    padding: 0;
    cursor: pointer;
    height: 96px;
}

.ta-hist__count {
    flex: none;
    font-size: 10.5px;
    font-weight: 700;
    color: #4d5f74;
    font-variant-numeric: tabular-nums;
}

.ta-hist__barwrap {
    flex: 1 1 auto;
    width: 100%;
    display: flex;
    align-items: flex-end;
    min-height: 0;
}

.ta-hist__bar {
    width: 100%;
    height: var(--h, 4%);
    min-height: 4px;
    border-radius: 5px 5px 0 0;
    background: #0b4c86;
}

.ta-hist__bar.is-empty {
    background: var(--iot-border);
}

.ta-hist__col.is-active .ta-hist__bar {
    background: var(--iot-blue-accent);
}

.ta-hist__label {
    flex: none;
    font-size: 9.5px;
    color: var(--iot-text-muted-2);
    white-space: nowrap;
}

.ta-opponents {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.ta-opponent {
    display: flex;
    align-items: center;
    gap: 9px;
    border: 0;
    background: transparent;
    border-radius: 7px;
    padding: 8px 9px;
    cursor: pointer;
    text-align: left;
    min-height: 38px;
}

.ta-opponent.is-active {
    background: rgba(41, 187, 238, .16);
}

.ta-opponent__name {
    flex: 1;
    min-width: 0;
    font-size: 12.5px;
    color: #dce6f2;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.ta-opponent.is-active .ta-opponent__name {
    color: var(--iot-blue-accent);
}

.ta-opponent__pips {
    flex: none;
    display: flex;
    gap: 3px;
}

.ta-opponent__pip {
    width: 13px;
    height: 13px;
    border-radius: 4px;
}

.ta-opponent__count {
    flex: none;
    min-width: 26px;
    text-align: right;
    font-size: 11.5px;
    font-weight: 700;
    color: #dce6f2;
    font-variant-numeric: tabular-nums;
}

.ta-main .iot-explore__title {
    margin: 0 0 3px;
}

@media (max-width: 991.98px) {
    .ta-body {
        flex-direction: column;
    }

    .ta-col-main,
    .ta-aside {
        flex: 1 1 auto;
        max-width: none;
        width: 100%;
        min-width: 0;
    }
}

@media (max-width: 767.98px) {
    .ta-title {
        font-size: 21px;
        line-height: 1.2;
    }

    .ta-cta__btn {
        display: flex;
        justify-content: center;
        font-size: 14px;
        padding: 12px;
        min-height: 46px;
    }

    .ta-summary {
        border-radius: 12px;
        margin-top: 11px;
        padding: 14px 13px 16px;
    }

    .ta-summary__top {
        gap: 12px;
    }

    .ta-summary__id,
    .ta-wdl {
        flex: 1 1 100%;
        min-width: 0;
    }

    .ta-summary__name {
        font-size: 20px;
    }

    .ta-summary__league {
        font-size: 10px;
        padding: 3px 8px;
    }

    .ta-wdl {
        gap: 7px;
    }

    .ta-wdl__card {
        padding: 9px 10px;
    }

    .ta-wdl__count {
        font-size: 19px;
    }

    .ta-wdl__track {
        display: none;
    }

    .ta-kpis {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
        margin-top: 12px;
        padding-top: 11px;
    }

    .ta-kpi__value {
        font-size: 17px;
    }

    .ta-lead {
        margin-top: 11px;
        font-size: 13px;
    }

    .ta-body {
        margin-top: 11px;
        gap: 11px;
    }

    .ta-matches {
        border-radius: 10px;
    }

    .ta-matches__head {
        padding: 12px 13px 0;
    }

    .ta-matches__title {
        font-size: 15.5px;
    }

    .ta-leagues {
        padding: 10px 13px 0;
    }

    .ta-filters {
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
        padding: 10px 13px;
    }

    .ta-seg__btn {
        flex: 1;
        padding: 9px 4px;
        font-size: 11.5px;
        min-height: 40px;
    }

    .ta-active {
        padding: 0 13px 10px;
    }

    .ta-tablewrap {
        display: none;
    }

    .ta-cards {
        display: block;
    }

    .ta-empty {
        padding: 28px 13px 32px;
    }

    .ta-more {
        border-radius: 0 0 10px 10px;
        font-size: 14px;
    }

    .ta-panel {
        border-radius: 10px;
        padding: 13px 13px 15px;
    }

    .ta-panel__title {
        font-size: 15px;
    }

    .ta-split__head {
        display: flex;
        justify-content: space-between;
    }

    .ta-split__head-pick {
        display: none;
    }

    .ta-split__row {
        grid-template-columns: 30px minmax(0, 1fr) minmax(0, 1fr) 30px;
        grid-template-areas:
            "home label label away"
            "homebar homebar awaybar awaybar";
        gap: 4px 5px;
        padding: 7px 0;
    }

    .ta-split__val--home    { grid-area: home; }
    .ta-split__label        { grid-area: label; }
    .ta-split__val--away    { grid-area: away; text-align: right; }
    .ta-split__barwrap--home { grid-area: homebar; }
    .ta-split__barwrap:not(.ta-split__barwrap--home) { grid-area: awaybar; }

    .ta-split__bar {
        height: 11px;
    }

    .ta-hist,
    .ta-hist__col {
        height: 86px;
    }
}

.ta-fixture {
    min-height: 168px;
}

.ta-summary__logo {
    width: 40px;
    height: 40px;
    object-fit: contain;
    flex: none;
}

.ta-fixture__teams {
    margin: 6px 0 0;
    font-family: var(--iot-font-heading);
    font-size: 15px;
    font-weight: 700;
    color: var(--iot-text);
}

.ta-fixture__meta {
    margin: 3px 0 0;
    font-size: 11.5px;
    color: var(--iot-text-muted-2);
}

.ta-fixture__odds {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
    margin-top: 10px;
}

.ta-fixture__odd {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    padding: 8px 4px;
    border: 1px solid var(--iot-border);
    border-radius: 8px;
    background: var(--iot-bg-panel-alt);
}

.ta-fixture__odd-name {
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: .05em;
    color: var(--iot-text-muted-2);
}

.ta-fixture__odd-rate {
    font-family: var(--iot-font-heading);
    font-size: 15px;
    color: var(--iot-text);
    font-variant-numeric: tabular-nums;
}

.ta-fixture__link {
    display: block;
    margin-top: 10px;
    font-size: 12px;
    font-weight: 700;
    color: #0b4c86;
}
