
/* --- olegtix-prediction-card --- */
.prediction-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  padding: 4px;
}

.prediction-card__header {
  background: #f4f4f4;
  border-radius: 10px 10px 0 0;
  min-height: 40px;
  display: flex;
  align-items: center;
}

.prediction-card__info {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 20px;
  font-size: 14px;
  color: #7d7d7d;
}

.prediction-card__sport-icon {
  display: flex;
  align-items: center;
}

.prediction-card__sport-icon svg {
  width: 16px;
  height: 16px;
}

.prediction-card__flag {
  width: 16px;
  height: 16px;
  object-fit: cover;
  border-radius: 2px;
}

.prediction-card__dot {
  width: 2px;
  height: 2px;
  border-radius: 50%;
  background: #7d7d7d;
  flex-shrink: 0;
}

.prediction-card__header-time,
.prediction-card__header-time-dot {
  display: none;
}

.prediction-card__match {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 20px;
  min-height: 50px;
  border-bottom: 1px solid #f4f4f4;
}

.prediction-card__time {
  width: 40px;
  flex-shrink: 0;
  font-size: 14px;
  color: #7d7d7d;
}

.prediction-card__team {
  font-size: 14px;
  color: #232323;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.prediction-card__team--home {
  flex: 1;
  text-align: right;
}

.prediction-card__team--away {
  flex: 1;
  text-align: left;
}

a.prediction-card__team--link,
a.prediction-card__league--link,
a.prediction-card__sport-name--link {
  text-decoration: none;
  color: inherit;
  transition: color 0.15s ease;
}

a.prediction-card__team--link:hover,
a.prediction-card__league--link:hover,
a.prediction-card__sport-name--link:hover {
  color: var(--primary);
}

a.prediction-card__sport-icon {
  text-decoration: none;
}

.prediction-card__logo {
  width: 30px;
  height: 30px;
  object-fit: contain;
  flex-shrink: 0;
}

.prediction-card__separator {
  font-size: 16px;
  min-width: 20px;
  text-align: center;
  flex-shrink: 0;
}

.prediction-card__bet {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--grey-light);
  border-radius: 10px;
  padding: 7px 12px;
  flex-shrink: 0;
}

.prediction-card__bet-label {
  font-size: 12px;
  color: #7d7d7d;
}

.prediction-card__bet-value {
  font-size: 14px;
  font-weight: 700;
  color: #232323;
}

.prediction-card__bk-icon {
  width: 24px;
  height: 24px;
  border-radius: 4px;
}

.prediction-card__arrow {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #7d7d7d;
  text-decoration: none;
  flex-shrink: 0;
}

.prediction-card__arrow:hover {
  color: var(--primary);
}

.prediction-card__expert {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  background: #ebf8ec;
  border-radius: 8px;
}

.prediction-card__expert-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

a.prediction-card__expert-left--link {
  color: inherit;
  text-decoration: none;
}

a.prediction-card__expert-left--link:hover .prediction-card__expert-name {
  color: var(--primary);
}

.prediction-card__avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.prediction-card__avatar--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  color: #fff;
  font-size: 18px;
  font-weight: 700;
}

.prediction-card__expert-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.prediction-card__expert-name {
  font-size: 14px;
  font-weight: 700;
  color: #232323;
}

.prediction-card__expert-position {
  font-size: 12px;
  color: #7d7d7d;
}

.prediction-card__profit {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
}

.prediction-card__profit-label {
  font-size: 12px;
  color: #7d7d7d;
}

.prediction-card__profit-value--positive {
  font-size: 16px;
  font-weight: 700;
  color: #4caf50;
}

.prediction-card__profit-value--negative {
  font-size: 16px;
  font-weight: 700;
  color: #e53935;
}

@media (max-width: 768px) {
  .prediction-card__info {
    flex-wrap: wrap;
    padding: 8px 12px;
    font-size: 12px;
    gap: 6px;
  }

  .prediction-card__sport-name {
    display: none;
  }

  .prediction-card__sport-name + .prediction-card__dot {
    display: none;
  }

  .prediction-card__header-time,
  .prediction-card__header-time-dot {
    display: inline;
  }

  .prediction-card__header-time-dot {
    display: block;
  }

  .prediction-card__time {
    display: none;
  }

  .prediction-card__match {
    flex-wrap: wrap;
    justify-content: center;
    padding: 8px 12px;
    border-bottom: none;
  }

  .prediction-card__team {
    font-size: 12px;
  }

  .prediction-card__bet {
    display: flex;
    width: 100%;
    justify-content: space-between;
    padding: 8px 12px;
  }

  .prediction-card__arrow {
    display: none;
  }

  .prediction-card__expert {
    padding: 12px;
  }

  .prediction-card__avatar {
    width: 40px;
    height: 40px;
  }

}

.prediction-card__extras {
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
  padding: 12px 20px;
  background: #f4f4f4;
  border-radius: 8px;
}

.prediction-card__extra {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  line-height: 1.4;
}

.prediction-card__extra-label {
  color: #232323;
  font-size: 14px;
  font-weight: 400;
}

.prediction-card__extra-value {
  color: var(--primary, #9345d8);
  font-size: 18px;
  font-weight: 700;
}


/* --- olegtix-prediction-card-extended --- */
.prediction-card__content {
    padding: 16px 20px 18px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.prediction-card__lead {
    margin: 0;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.45;
    color: #232323;
}

.prediction-card__hint {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
    color: #5b6470;
}

.prediction-card__description {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
    color: #232323;
    white-space: pre-line;
    word-wrap: break-word;
    overflow-wrap: anywhere;
}

.prediction-card__description--clamped {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.prediction-card__description--expanded {
    display: block;
    -webkit-line-clamp: none;
    overflow: visible;
}

.prediction-card__read-more {
    align-self: flex-start;
    padding: 0;
    margin: 0;
    background: none;
    border: 0;
    font: inherit;
    font-size: 14px;
    font-weight: 500;
    color: var(--primary, #9345d8);
    cursor: pointer;
    text-decoration: none;
    transition: opacity 0.15s ease;
}

.prediction-card__read-more:hover,
.prediction-card__read-more:focus-visible {
    opacity: 0.75;
    text-decoration: none;
}

.prediction-card__sections {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding-top: 4px;
    border-top: 1px solid #f0f0f0;
}

.prediction-card__section {
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.prediction-card__section-title {
    margin: 0;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.3;
    color: #232323;
}

.prediction-card__section p {
    margin: 0;
    font-size: 14px;
    line-height: 1.55;
    color: #232323;
}

.prediction-card__factors-list {
    margin: 0;
    padding-left: 20px;
    font-size: 14px;
    line-height: 1.55;
    color: #232323;
}

.prediction-card__factors-list li {
    margin-bottom: 4px;
}

.prediction-card__factors-list li:last-child {
    margin-bottom: 0;
}

.prediction-card__bets {
    padding: 18px 20px 20px;
    border-top: 1px solid #f0f0f0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.prediction-card__bets-header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
}

.prediction-card__bets-title {
    margin: 0;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.3;
    color: #232323;
}

.prediction-card__bets-counter {
    display: inline-flex;
    align-items: baseline;
    gap: 4px;
    font-size: 13px;
    color: #7d7d7d;
}

.prediction-card__bets-counter-num {
    font-weight: 700;
    color: #232323;
}

.prediction-card__bets-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
    counter-reset: prediction-bet;
}

.prediction-card__bet-item {
    list-style: none;
    position: relative;
    border-radius: 12px;
    background: #fafafa;
    border: 1px solid transparent;
    overflow: hidden;
    transition: background 0.15s ease, border-color 0.15s ease;
}

.prediction-card__bet-item:hover {
    background: #f4f4f4;
}

.prediction-card__bet-item--won {
    background: #f3faf4;
}

.prediction-card__bet-item--won:hover {
    background: #ebf8ec;
}

.prediction-card__bet-item--lost {
    background: #fdf5f5;
}

.prediction-card__bet-item--lost:hover {
    background: #fceeee;
}

.prediction-card__bet-row {
    width: 100%;
    display: grid;
    grid-template-columns: auto 1fr auto auto;
    align-items: center;
    gap: 14px;
    padding: 12px 14px;
    background: transparent;
    border: 0;
    font: inherit;
    text-align: left;
    color: inherit;
}

button.prediction-card__bet-row {
    cursor: pointer;
}

button.prediction-card__bet-row:focus-visible {
    outline: 2px solid var(--primary, #9345d8);
    outline-offset: -2px;
    border-radius: 12px;
}

.prediction-card__bet-rank {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #ececec;
    font-size: 13px;
    font-weight: 700;
    color: #232323;
    flex-shrink: 0;
}

.prediction-card__bet-item--won .prediction-card__bet-rank {
    background: #fff;
    border-color: #cbe9cf;
    color: #2c8a3a;
}

.prediction-card__bet-item--lost .prediction-card__bet-rank {
    background: #fff;
    border-color: #f3d4d4;
    color: #c43d3d;
}

.prediction-card__bet-body {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.prediction-card__bet-headline {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    min-width: 0;
}

.prediction-card__bet-pick {
    font-size: 15px;
    font-weight: 700;
    line-height: 1.3;
    color: #232323;
}

.prediction-card__bet-type {
    display: inline-flex;
    align-items: center;
    padding: 2px 8px;
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 500;
    color: #7d7d7d;
}

.prediction-card__bet-confidence {
    display: flex;
    align-items: center;
    gap: 10px;
    --conf-color: #7d7d7d;
}

.prediction-card__bet-confidence--high { --conf-color: #34b945; }
.prediction-card__bet-confidence--mid  { --conf-color: #f0a500; }
.prediction-card__bet-confidence--low  { --conf-color: #b0b0b0; }

.prediction-card__bet-confidence-track {
    position: relative;
    flex: 1;
    min-width: 60px;
    max-width: 160px;
    height: 4px;
    background: rgba(0, 0, 0, 0.06);
    border-radius: 999px;
    overflow: hidden;
}

.prediction-card__bet-confidence-fill {
    position: absolute;
    inset: 0 auto 0 0;
    background: var(--conf-color);
    border-radius: inherit;
    transition: width 0.3s ease;
}

.prediction-card__bet-confidence-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--conf-color);
    white-space: nowrap;
}

.prediction-card__bet-aside {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.prediction-card__bet-odds {
    display: inline-flex;
    align-items: center;
    padding: 5px 10px;
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    color: #232323;
    white-space: nowrap;
}

.prediction-card__bet-result {
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
}

.prediction-card__bet-result--won {
    background: #ebf8ec;
    color: #2c8a3a;
}

.prediction-card__bet-result--lost {
    background: #fdecec;
    color: #c43d3d;
}

.prediction-card__bet-chevron {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    color: #7d7d7d;
    transition: transform 0.2s ease, color 0.15s ease;
    flex-shrink: 0;
}

button.prediction-card__bet-row:hover .prediction-card__bet-chevron {
    color: #232323;
}

button.prediction-card__bet-row[aria-expanded="true"] .prediction-card__bet-chevron {
    transform: rotate(180deg);
    color: var(--primary, #9345d8);
}

.prediction-card__bet-reasoning {
    padding: 0 14px 12px 56px;
    margin: -4px 0 0;
}

.prediction-card__bet-reasoning p {
    margin: 0;
    padding: 10px 12px;
    background: rgba(255, 255, 255, 0.7);
    border-left: 3px solid var(--primary, #9345d8);
    border-radius: 0 8px 8px 0;
    font-size: 13px;
    line-height: 1.55;
    color: #232323;
}

.prediction-card__bet-item--won .prediction-card__bet-reasoning p {
    border-left-color: #34b945;
}

.prediction-card__bet-item--lost .prediction-card__bet-reasoning p {
    border-left-color: #c43d3d;
}

@media (max-width: 768px) {
    .prediction-card__bets {
        padding: 14px 14px 16px;
    }

    .prediction-card__bet-row {
        grid-template-columns: auto 1fr auto;
        grid-template-areas:
            "rank body aside"
            "rank confidence confidence";
        column-gap: 10px;
        row-gap: 8px;
        padding: 10px 12px;
    }

    .prediction-card__bet-rank {
        grid-area: rank;
        align-self: start;
    }

    .prediction-card__bet-body {
        grid-area: body;
    }

    .prediction-card__bet-aside {
        grid-area: aside;
    }

    .prediction-card__bet-confidence {
        grid-area: confidence;
    }

    .prediction-card__bet-chevron {
        display: none;
    }

    .prediction-card__bet-row::after {
        content: '';
        position: absolute;
        right: 12px;
        top: 14px;
        width: 8px;
        height: 8px;
        border-right: 2px solid #b0b0b0;
        border-bottom: 2px solid #b0b0b0;
        transform: rotate(45deg);
        transition: transform 0.2s ease;
    }

    button.prediction-card__bet-row[aria-expanded="true"]::after {
        transform: rotate(225deg);
        top: 18px;
    }

    .prediction-card__bet-reasoning {
        padding: 0 12px 12px 50px;
    }
}

@media (max-width: 768px) {
    .prediction-card__content {
        padding: 14px 14px 16px;
        gap: 10px;
    }

    .prediction-card__bets {
        padding: 0 14px 14px;
    }

    .prediction-card__bet-item {
        padding: 10px 12px;
    }

    .prediction-card__bet-head {
        align-items: flex-start;
    }
}


/* --- olegtix-predictions-tab-experts-summary --- */
.predictions-tab-experts-summary {
    padding: 20px;
    background: #fff;
    border-radius: 14px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.predictions-tab-experts-summary__title {
    margin: 0;
    font-size: 20px;
    font-weight: 700;
    color: #232323;
    line-height: 1.3;
}

.predictions-tab-experts-summary__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.predictions-tab-experts-summary__row {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 16px;
    background: #fff;
    border: 1px solid #f0f0f0;
    border-radius: 14px;
}

.predictions-tab-experts-summary__icon {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: #f1eafb;
    color: #6d28d9;
}

.predictions-tab-experts-summary__icon-svg {
    width: 26px;
    height: 26px;
}

.predictions-tab-experts-summary__main {
    flex: 1 1 auto;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.predictions-tab-experts-summary__share {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 6px;
    line-height: 1.2;
}

.predictions-tab-experts-summary__pct {
    font-size: 22px;
    font-weight: 700;
    color: #6d28d9;
}

.predictions-tab-experts-summary__share-text {
    font-size: 14px;
    font-weight: 400;
    color: #7d7d7d;
    overflow-wrap: anywhere;
}

.predictions-tab-experts-summary__pick {
    font-size: 18px;
    font-weight: 700;
    color: #232323;
    line-height: 1.3;
    overflow-wrap: anywhere;
}

.predictions-tab-experts-summary__result {
    flex: 0 0 200px;
    align-self: stretch;
    display: flex;
    align-items: center;
    gap: 12px;
    padding-left: 24px;
    border-left: 1px solid #eee;
}

.predictions-tab-experts-summary__result-icon {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.predictions-tab-experts-summary__result-text {
    font-size: 15px;
    font-weight: 600;
}

.predictions-tab-experts-summary__result--won .predictions-tab-experts-summary__result-icon {
    background: #e8f7ec;
    color: #34b945;
}

.predictions-tab-experts-summary__result--won .predictions-tab-experts-summary__result-text {
    color: #34b945;
}

.predictions-tab-experts-summary__result--lost .predictions-tab-experts-summary__result-icon {
    background: #fdecec;
    color: #ef4444;
}

.predictions-tab-experts-summary__result--lost .predictions-tab-experts-summary__result-text {
    color: #ef4444;
}

.predictions-tab-experts-summary__result--unrated .predictions-tab-experts-summary__result-icon {
    background: #f0f0f0;
    color: #9ca3af;
}

.predictions-tab-experts-summary__result--unrated .predictions-tab-experts-summary__result-text {
    color: #7d7d7d;
}

.predictions-tab-experts-summary__result--pending .predictions-tab-experts-summary__result-icon {
    background: #f1eafb;
    color: #6d28d9;
}

.predictions-tab-experts-summary__result--pending .predictions-tab-experts-summary__result-text {
    color: #6d28d9;
    white-space: nowrap;
}

.predictions-tab-experts-summary__result--live .predictions-tab-experts-summary__result-icon {
    background: #f1eafb;
    color: #6d28d9;
}

.predictions-tab-experts-summary__result--live .predictions-tab-experts-summary__result-text {
    color: #6d28d9;
    white-space: nowrap;
}

@media (prefers-reduced-motion: no-preference) {
    .predictions-tab-experts-summary__result--live .predictions-tab-experts-summary__result-icon {
        animation: predictions-experts-live-pulse 1.6s ease-in-out infinite;
    }
}

@keyframes predictions-experts-live-pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

@media (max-width: 768px) {
    .predictions-tab-experts-summary__result {
        flex-basis: 150px;
        padding-left: 16px;
    }
}

@media (max-width: 600px) {
    .predictions-tab-experts-summary {
        padding: 16px;
    }

    .predictions-tab-experts-summary__row {
        gap: 10px;
        padding: 12px;
    }

    .predictions-tab-experts-summary__icon {
        display: none;
    }

    .predictions-tab-experts-summary__pct {
        font-size: 18px;
    }

    .predictions-tab-experts-summary__share-text {
        font-size: 12px;
    }

    .predictions-tab-experts-summary__pick {
        font-size: 15px;
    }

    .predictions-tab-experts-summary__result {
        flex: 0 0 auto;
        gap: 8px;
        padding-left: 12px;
    }

    .predictions-tab-experts-summary__result-icon {
        width: 32px;
        height: 32px;
    }

    .predictions-tab-experts-summary__result-text {
        font-size: 13px;
    }
}


/* --- olegtix-predictions-tab-recommended-bets --- */
.predictions-tab-recommended-bets {
  padding: 20px;
  background: #fff;
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.predictions-tab-recommended-bets__title {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
  color: #232323;
}

.predictions-tab-recommended-bets__list {
  display: flex;
  flex-direction: column;
  border: 1px solid #ececec;
  border-radius: 14px;
}

.predictions-tab-recommended-bets__item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  border-bottom: 1px solid #f0f0f0;
}

.predictions-tab-recommended-bets__item:last-child {
  border-bottom: none;
}

.predictions-tab-recommended-bets__bk {
  flex: 0 0 auto;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: #13131f;
  overflow: hidden;
}

.predictions-tab-recommended-bets__bk img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.predictions-tab-recommended-bets__body {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 16px;
}

.predictions-tab-recommended-bets__odds {
  flex: 0 0 auto;
  min-width: 64px;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.2;
  color: #6d28d9;
}

.predictions-tab-recommended-bets__main {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.predictions-tab-recommended-bets__pick {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
  color: #232323;
}

.predictions-tab-recommended-bets__subtitle {
  margin: 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.3;
  color: #7d7d7d;
}

.predictions-tab-recommended-bets__aside {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 10px;
}

.predictions-tab-recommended-bets__confidence {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  background: #f0f0f0;
  color: #7d7d7d;
}

.predictions-tab-recommended-bets__confidence--high {
  background: #e8f7ec;
  color: #2f9c3f;
}

.predictions-tab-recommended-bets__confidence--mid {
  background: #fff3da;
  color: #d98b0a;
}

.predictions-tab-recommended-bets__confidence--low {
  background: #fdecec;
  color: #ef4444;
}

.predictions-tab-recommended-bets__confidence-label {
  font-size: 14px;
  color: #7d7d7d;
}

@media (max-width: 640px) {
  .predictions-tab-recommended-bets {
    padding: 16px;
    gap: 12px;
  }

  .predictions-tab-recommended-bets__item {
    gap: 12px;
    padding: 14px 16px;
  }

  .predictions-tab-recommended-bets__bk {
    width: 40px;
    height: 40px;
    border-radius: 10px;
  }

  .predictions-tab-recommended-bets__body {
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
  }

  .predictions-tab-recommended-bets__odds {
    min-width: 0;
    font-size: 18px;
  }

  .predictions-tab-recommended-bets__aside {
    flex-direction: column;
    align-items: center;
    gap: 2px;
  }

  .predictions-tab-recommended-bets__confidence-label {
    font-size: 12px;
  }
}


/* --- olegtix-predictions-tab-trends --- */
.predictions-tab-trends {
  padding: 20px;
  background: #fff;
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.predictions-tab-trends__title {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
  color: #232323;
}

.predictions-tab-trends__group {
  display: flex;
  flex-direction: column;
}

.predictions-tab-trends__team {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 4px;
}

.predictions-tab-trends__flag {
  width: 28px;
  height: 20px;
  object-fit: contain;
  border-radius: 3px;
  flex-shrink: 0;
}

.predictions-tab-trends__team-name {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
  color: #232323;
}

.predictions-tab-trends__list {
  display: flex;
  flex-direction: column;
}

.predictions-tab-trends__item {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 3fr);
  align-items: stretch;
  border-bottom: 1px solid #ededed;
}

.predictions-tab-trends__pick-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 8px;
  padding: 18px 24px 18px 0;
}

.predictions-tab-trends__pick {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.3;
  color: #232323;
}

.predictions-tab-trends__text {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 18px 0 18px 24px;
  border-left: 1px solid #ededed;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
  color: #7d7d7d;
}

@media (max-width: 640px) {
  .predictions-tab-trends {
    padding: 16px;
    gap: 16px;
  }

  .predictions-tab-trends__team-name {
    font-size: 16px;
  }

  .predictions-tab-trends__item {
    grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
  }

  .predictions-tab-trends__pick-col {
    gap: 6px;
    padding: 14px 14px 14px 0;
  }

  .predictions-tab-trends__pick {
    font-size: 15px;
  }

  .predictions-tab-trends__text {
    padding: 14px 0 14px 14px;
    font-size: 13px;
  }
}


/* --- olegtix-predictions-tab-editorial --- */
.math-prediction {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 20px;
    background: #fff;
    border-radius: 14px;
}

.math-prediction__head {
    display: flex;
    align-items: center;
    gap: 8px;
}

.math-prediction__title {
    margin: 0;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.3;
    color: #232323;
}

.math-prediction__info {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 0;
    background: transparent;
    color: #b3b3bd;
    line-height: 0;
    cursor: pointer;
    transition: color .15s ease;
}

.math-prediction__info:hover,
.math-prediction__info[aria-expanded="true"] {
    color: #6828ba;
}

.math-prediction-tooltip {
    position: fixed;
    z-index: 1000;
    max-width: 280px;
    padding: 10px 14px;
    background: #26334d;
    color: #fff;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.45;
    border-radius: 10px;
    box-shadow: 0 10px 28px rgba(15, 23, 42, .22);
}

.math-prediction-tooltip[hidden] {
    display: none;
}

.math-prediction-tooltip::before {
    content: "";
    position: absolute;
    top: -5px;
    left: var(--arrow-x, 18px);
    width: 10px;
    height: 10px;
    background: inherit;
    border-radius: 2px;
    transform: translateX(-50%) rotate(45deg);
}

.math-prediction-tooltip::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: -10px;
    height: 10px;
}

.math-prediction__card {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    border: 1px solid #ececf0;
    border-radius: 16px;
    overflow: hidden;
}

.math-prediction__main {
    display: flex;
    flex-direction: column;
    gap: 18px;
    padding: 22px;
    background: #f5f2fd;
}

.math-prediction__main-head {
    display: flex;
    align-items: center;
    gap: 12px;
}

.math-prediction__main-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: #fff;
    color: #6828ba;
    box-shadow: 0 4px 12px rgba(104, 40, 186, .14);
}

.math-prediction__main-caption {
    font-size: 14px;
    font-weight: 400;
    color: #7d7d7d;
}

.math-prediction__main-body {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.math-prediction__main-label {
    font-size: 13px;
    font-weight: 400;
    color: #8a8a96;
}

.math-prediction__main-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
}

.math-prediction__main-outcome {
    font-size: 22px;
    font-weight: 700;
    line-height: 1.25;
    color: #232323;
}

.math-prediction__main-figure {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    line-height: 1.1;
    flex-shrink: 0;
}

.math-prediction__main-pct {
    font-size: 30px;
    font-weight: 800;
    color: #6828ba;
}

.math-prediction__main-pct--won {
    color: #34b945;
}

.math-prediction__main-pct--lost {
    color: #f85c5f;
}

.math-prediction__main-pct-label {
    font-size: 12px;
    font-weight: 400;
    color: #8a8a96;
}

.math-prediction__main-desc {
    margin: 0;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    color: #6f6f78;
}

.math-prediction__gauge {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: auto;
    padding-top: 6px;
}

.math-prediction__gauge-head {
    display: flex;
    align-items: center;
    gap: 8px;
}

.math-prediction__gauge-title {
    font-size: 13px;
    font-weight: 400;
    color: #7d7d7d;
}

.math-prediction__gauge-value {
    margin-left: auto;
    font-size: 15px;
    font-weight: 700;
    color: #232323;
}

.math-prediction__gauge-track {
    display: flex;
    gap: 6px;
}

.math-prediction__gauge-bar {
    flex: 1;
    height: 7px;
    border-radius: 4px;
    background: #e4ddf3;
}

.math-prediction__gauge-bar--on {
    background: #6828ba;
}

.math-prediction__table {
    display: flex;
    flex-direction: column;
    padding: 14px 20px;
    background: #fff;
    border-left: 1px solid #ececf0;
}

.math-prediction__table-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 4px 12px;
    border-bottom: 1px solid #f0f0f3;
}

.math-prediction__table-th {
    font-size: 13px;
    font-weight: 400;
    color: #8a8a96;
}

.math-prediction__rows {
    display: flex;
    flex-direction: column;
}

.math-prediction__row {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 4px;
    border-bottom: 1px solid #f3f3f6;
}

.math-prediction__row:last-child {
    border-bottom: 0;
}

.math-prediction__row-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    flex-shrink: 0;
    background: #f5f2fd;
    color: #6828ba;
}

.math-prediction__row-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex: 1;
    min-width: 0;
}

.math-prediction__row-market {
    font-size: 12px;
    font-weight: 400;
    color: #8a8a96;
}

.math-prediction__row-pick {
    font-size: 15px;
    font-weight: 700;
    color: #232323;
}

.math-prediction__row-conf {
    font-size: 17px;
    font-weight: 800;
    color: #6828ba;
    white-space: nowrap;
}

.math-prediction__row-conf--won {
    color: #34b945;
}

.math-prediction__row-conf--lost {
    color: #f85c5f;
}

.math-prediction__disclaimer {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
    padding: 14px 16px;
    background: #f7f7f9;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.45;
    color: #8a8a96;
}

.math-prediction__disclaimer svg {
    flex-shrink: 0;
    color: #b3b3bd;
}

@media (max-width: 720px) {
    .math-prediction {
        padding: 16px;
        gap: 14px;
    }

    .math-prediction__card {
        grid-template-columns: 1fr;
    }

    .math-prediction__main {
        padding: 18px;
        gap: 16px;
    }

    .math-prediction__table {
        padding: 6px 16px 10px;
        border-left: 0;
        border-top: 1px solid #ececf0;
    }

    .math-prediction__main-outcome {
        font-size: 20px;
    }

    .math-prediction__main-pct {
        font-size: 26px;
    }
}

@media (max-width: 420px) {
    .math-prediction__main-row {
        flex-direction: column;
        gap: 8px;
    }

    .math-prediction__main-figure {
        flex-direction: row;
        align-items: baseline;
        gap: 8px;
    }
}


/* --- olegtix-predictions-tab-other-list --- */
.predictions-tab-other-list {
    margin-bottom: 24px;
}

.predictions-tab-other-list__title {
    margin: 0 0 14px;
    font-size: 18px;
    font-weight: 700;
    color: #111827;
}

.predictions-tab-other-list__items {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.predictions-tab-other-list__more {
    display: block;
    width: 100%;
    margin-top: 14px;
    padding: 12px 20px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    color: #6d28d9;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
}

.predictions-tab-other-list__more:hover {
    background: #f9fafb;
    border-color: #d1d5db;
}

.predictions-tab-other-list__more:disabled {
    opacity: 0.6;
    cursor: wait;
}


/* --- olegtix-dates-header --- */
.dates-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.dates-header__title {
  font-size: 22px;
  font-weight: 700;
  margin: 0;
}

.dates-header__title-link {
  color: inherit;
  text-decoration: none;
}
.dates-header__title-link:hover {
  text-decoration: underline;
}

.dates-header__dates-wrap {
  position: relative;
  min-width: 0;
}

.dates-header__dates {
  display: flex;
  align-items: center;
  gap: 4px;
  overflow-x: auto;
  scrollbar-width: none;
}

.dates-header__dates::-webkit-scrollbar {
  display: none;
}

.dates-header__calendar-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: none;
  border-radius: 10px;
  width: 40px;
  height: 40px;
  padding: 0;
  cursor: pointer;
  flex-shrink: 0;
  margin-right: 5px;
}
.dates-header__calendar-btn svg {
  flex-shrink: 0;
}
.dates-header__calendar-btn:hover {
  background: #f4f4f4;
}
.dates-header__calendar-btn--active {
  box-shadow: inset 0 0 0 2px var(--primary);
}

.dates-header__filter-btn {
  background: transparent;
  border: none;
  border-radius: 10px;
  padding: 0 16px;
  height: 40px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
}
.dates-header__filter-btn:hover {
  background: #f4f4f4;
}
.dates-header__filter-btn--active {
  background: var(--primary);
  color: var(--white);
}
.dates-header__filter-btn--active:hover {
  background: var(--primary-hover);
}

.dates-header .sort-btn:not(.sort-btn--active) {
  background: transparent;
  color: var(--text);
}

.dates-header__calendar-popup {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 8px;
  background: var(--white);
  border-radius: 14px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12);
  padding: 20px;
  z-index: 100;
  min-width: 300px;
}

.dates-header__calendar-popup--open {
  display: block;
}

.dates-header__calendar-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.dates-header__calendar-nav-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  color: var(--text);
  font-size: 18px;
}

.dates-header__calendar-month {
  font-size: 15px;
  font-weight: 600;
}

.dates-header__calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
  text-align: center;
}

.dates-header__calendar-weekday {
  font-size: 12px;
  color: var(--grey);
  padding: 4px;
  font-weight: 500;
}

.dates-header__calendar-day {
  padding: 8px 4px;
  font-size: 14px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
  background: none;
  font-family: inherit;
}

.dates-header__calendar-day:hover {
  background: var(--grey-light);
}

.dates-header__calendar-day--today {
  box-shadow: inset 0 0 0 2px var(--primary);
  font-weight: 600;
}

.dates-header__calendar-day--selected {
  background: var(--primary);
  color: var(--white);
  font-weight: 600;
}

.dates-header__calendar-day--selected:hover {
  background: var(--primary-hover);
}

.dates-header__calendar-day--other {
  color: #ccc;
  cursor: default;
}

.dates-header__calendar-day--has-matches {
  font-weight: 700;
  position: relative;
}

.dates-header__calendar-day--has-matches::after {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--primary);
}

.dates-header__calendar-day--selected.dates-header__calendar-day--has-matches::after {
  background: var(--white);
}

.dates-header__calendar-day--other.dates-header__calendar-day--has-matches::after {
  display: none;
}

@media (max-width: 768px) {
  .dates-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .dates-header__title {
    font-size: 18px;
  }

  .dates-header__dates-wrap {
    width: 100%;
  }
}


/* --- olegtix-sport-banners --- */
.sport-banners {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin: 24px 0;
}

.sport-banners__item {
    display: block;
    overflow: hidden;
    border-radius: 12px;
    line-height: 0;
    transition: opacity 0.2s ease;
}

a.sport-banners__item:hover {
    opacity: 0.92;
}

.sport-banners__img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}

@media (max-width: 768px) {
    .sport-banners {
        grid-template-columns: 1fr;
        gap: 12px;
        margin: 16px 0;
    }
}


/* --- olegtix-team-header --- */
.team-header {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 24px 32px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow:
    0 1px 2px rgba(16, 24, 40, 0.04),
    0 2px 8px rgba(16, 24, 40, 0.06);
  margin-bottom: 20px;
}

.team-header__logo-wrap {
  flex: 0 0 112px;
  width: 112px;
  height: 112px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.team-header__logo,
.team-header__logo-placeholder {
  display: block;
  width: 112px;
  height: 112px;
  object-fit: contain;
}

.team-header__body {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}

.team-header__country {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #6b7280;
  font-size: 14px;
  line-height: 1.4;
}

.team-header__flag {
  width: 20px;
  height: 20px;
  border-radius: 3px;
  object-fit: cover;
  flex: 0 0 20px;
}

.team-header__country-name {
  font-weight: 500;
}

.team-header__name {
  margin: 0;
  font-size: 28px;
  line-height: 1.2;
  font-weight: 700;
  color: #0f172a;
}

.team-header__name-original {
  font-size: 16px;
  line-height: 1.3;
  font-weight: 500;
  color: #6b7280;
  margin-top: 2px;
}

.team-header__tournaments {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 16px;
  font-size: 14px;
  line-height: 1.4;
  margin-top: 4px;
}

.team-header__tournaments-label {
  color: #6b7280;
  font-weight: 500;
}

.team-header__tournaments-list {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 8px 16px;
}

.team-header__tournament-link {
  color: var(--text);
  text-decoration: none;
  transition: color 0.15s ease;
}

a.team-header__tournament-link:hover {
  color: var(--primary);
  text-decoration: underline;
}

@media (max-width: 768px) {
  .team-header {
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    border-radius: 12px;
  }

  .team-header__logo-wrap,
  .team-header__logo,
  .team-header__logo-placeholder {
    width: 80px;
    height: 80px;
    flex-basis: 80px;
  }

  .team-header__name {
    font-size: 22px;
  }

  .team-header__name-original {
    font-size: 14px;
  }
}


/* --- olegtix-team-tabs --- */
.team-tabs {
  margin: 20px 0;
}

.team-tabs__nav {
  margin: 0 0 16px;
}

.team-tabs__panel[hidden] {
  display: none;
}

.team-tabs__panel {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.team-tabs__placeholder {
  text-align: center;
  color: #9ca3af;
  font-size: 15px;
  padding: 48px 16px;
}

.team-tab-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.team-tab-section__title {
  margin: 0;
  font-size: 22px;
  line-height: 1.2;
  font-weight: 700;
  color: #232323;
}

.team-tab-section__empty {
  padding: 24px;
  border-radius: 16px;
  background: #fff;
  color: #7d7d7d;
  font-size: 14px;
  text-align: center;
}

.team-tabs__banner {
  border-radius: 18px;
  overflow: hidden;
}

.team-tabs__banner-image {
  display: block;
  width: 100%;
  height: auto;
}

.matches-table--team {
  background: transparent;
}

.matches-table--team .matches-table__odds-label:last-child {
  border-radius: 10px;
}

.matches-table--team .matches-table__body {
  gap: 8px;
}

.matches-table--team .matches-table__row {
  overflow: hidden;
}

.matches-table--team .matches-table__row-header,
.matches-table--team a.matches-table__row-header.matches-table__match-link {
  border-bottom-color: #f1f3f5;
}

.matches-table--team .matches-table__match-info {
  padding: 12px 14px;
}

.matches-table--team .matches-table__time {
  width: 56px;
}

.matches-table--team .matches-table__separator {
  min-width: 28px;
}

.matches-table--team .matches-table__odd {
  width: 128px;
  border-left: none;
}

.matches-table--team .matches-table__odd-inner {
  width: 100%;
  justify-content: center;
  padding: 8px 12px;
}

.matches-table--team
  .matches-table__row[data-status="finished"]
  .matches-table__match-info {
  justify-content: center;
}

.matches-table--team
  .matches-table__row[data-status="finished"]
  .matches-table__time {
  display: none;
}

@media (max-width: 768px) {
  .team-tabs__panels {
    padding: 16px;
    border-radius: 10px;
  }

  .team-tabs__placeholder {
    padding: 32px 12px;
  }

  .team-tab-section__title {
    font-size: 18px;
  }

  .matches-table--team .matches-table__header {
    display: none;
  }

  .matches-table--team .matches-table__row-header,
  .matches-table--team a.matches-table__row-header.matches-table__match-link {
    padding: 8px 16px;
    font-size: 12px;
  }
}


/* --- olegtix-team-squad --- */
.team-squad {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.team-squad__empty {
  padding: 24px;
  border-radius: 14px;
  background: #fff;
  color: #7d7d7d;
  font-size: 14px;
  text-align: center;
}

.team-squad__table {
  display: flex;
  flex-direction: column;
  padding: 4px;
  border-radius: 14px;
  background: #fff;
  font-family: "Onest", sans-serif;
}

.team-squad__head,
.team-squad__row {
  display: grid;
  grid-template-columns:
    40px minmax(0, 2fr) minmax(0, 1.4fr) minmax(0, 1.4fr)
    90px;
  align-items: center;
  gap: 8px;
  padding: 0 20px;
  min-height: 50px;
  font-size: 14px;
  line-height: 1.3;
}

.team-squad__head {
  background: #f4f4f4;
  border-radius: 10px;
  color: #7d7d7d;
  font-weight: 400;
}

.team-squad__row {
  color: #232323;
  text-decoration: none;
  border-top: 1px solid #f4f4f4;
  transition: background-color 0.15s ease;
}

a.team-squad__row {
  cursor: pointer;
}

a.team-squad__row:hover {
  background-color: #fafafa;
  color: #232323;
}

a.team-squad__row:focus-visible {
  outline: none;
  background-color: #f5f3ff;
  box-shadow: inset 0 0 0 2px #9345d8;
}

.team-squad__cell {
  min-width: 0;
  text-align: center;
}

.team-squad__cell--player {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.team-squad__cell--nationality {
  display: flex;
  align-items: center;
  justify-content: center;
}

.team-squad__player {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.team-squad__player-avatar {
  flex: 0 0 32px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  overflow: hidden;
  background: #eef0f3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.team-squad__player-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.team-squad__player-placeholder {
  display: inline-flex;
  width: 100%;
  height: 100%;
}

.team-squad__player-placeholder svg {
  width: 100%;
  height: 100%;
}

.team-squad__player-name {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.team-squad__nationality {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.team-squad__flag {
  flex: 0 0 16px;
  width: 16px;
  height: 16px;
  object-fit: cover;
  border-radius: 2px;
}

.team-squad__country-name {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.team-squad__description {
  padding: 24px 28px;
  border-radius: 14px;
  background: #fff;
  color: #3d3d3d;
  font-size: 15px;
  line-height: 1.7;
}

.team-squad__description > :first-child {
  margin-top: 0;
}

.team-squad__description > :last-child {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .team-squad__table {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 0;
    background: transparent;
    border-radius: 0;
  }

  .team-squad__head {
    display: none;
  }

  .team-squad__row {
    display: grid;
    grid-template-columns: 64px minmax(0, 1fr);
    grid-template-areas:
      "avatar name"
      "avatar number"
      "avatar age"
      "avatar nationality"
      "avatar stat";
    column-gap: 16px;
    row-gap: 4px;
    padding: 14px;
    min-height: 0;
    background: #fff;
    border-radius: 14px;
    border-top: none;
  }

  a.team-squad__row:hover {
    background-color: #fff;
  }

  .team-squad__cell--player,
  .team-squad__player {
    display: contents;
  }

  .team-squad__player-avatar {
    grid-area: avatar;
    flex: 0 0 64px;
    width: 64px;
    height: 64px;
    align-self: start;
  }

  .team-squad__player-name {
    grid-area: name;
    font-size: 14px;
    color: #232323;
    text-align: left;
    white-space: normal;
    overflow: visible;
    text-overflow: clip;
    margin-bottom: 4px;
  }

  .team-squad__cell {
    text-align: left;
    justify-content: flex-start;
    color: #232323;
    font-size: 14px;
    line-height: 1.3;
  }

  .team-squad__cell--number {
    grid-area: number;
  }

  .team-squad__cell--age {
    grid-area: age;
  }

  .team-squad__cell--nationality {
    grid-area: nationality;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 4px;
  }

  .team-squad__cell--stat {
    grid-area: stat;
    font-weight: 400;
  }

  .team-squad__cell--number::before {
    content: "№";
    color: #7d7d7d;
    margin-right: 4px;
  }

  .team-squad__cell--age::before {
    content: "Возраст";
    color: #7d7d7d;
    margin-right: 4px;
  }

  .team-squad__cell--nationality::before {
    content: "Национальность";
    color: #7d7d7d;
  }

  .team-squad__cell--stat::before {
    content: "Статистика";
    color: #7d7d7d;
    margin-right: 4px;
  }

  .team-squad__nationality {
    gap: 4px;
  }

  .team-squad__description {
    padding: 18px 16px;
    font-size: 14px;
  }
}

