/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Feb 05 2026 | 10:03:50 */
.matches {
  padding: clamp(20px, 3vw, 40px) 0;
}

.matches__container {
  width: min(1120px, 100% - 32px);
  margin: 0 auto;
}

.matches__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.matches__title {
  font-size: clamp(20px, 2.2vw, 30px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0;
}

.matches__subtitle {
  margin: 8px 0 0;
  opacity: 0.75;
  font-size: 14px;
}

.matches__legend {
  display: inline-flex;
  gap: 8px;
}

.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 32px;
  min-width: 42px;
  padding: 0 10px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.02em;
}

.pill--muted {
  background: rgba(0, 0, 0, 0.05);
}

.matches__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 14px;
}

.match-card {
  grid-column: span 6;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(0, 0, 0, 0.08);
  overflow: hidden;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.match-card__top {
  padding: 16px 16px 12px;
  display: grid;
  gap: 12px;
}

.match-card__date {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.04);
}

.match-card__dateLabel {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  opacity: 0.7;
}

.match-card__dateValue {
  font-size: 14px;
  font-weight: 800;
}

.match-card__teams {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 12px;
}

.match-card__vs {
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.55;
}

.team {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.team--away {
  justify-content: flex-end;
}

.team__logo {
  width: 26px;
  height: 26px;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.10);
  flex: 0 0 auto;
  background-size: cover;
  background-position: center;
}

.team__name {
  font-weight: 800;
  font-size: 14px;
  line-height: 1.2;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.odds {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  padding: 0 16px 16px;
}

.odd {
  appearance: none;
  border: 1px solid rgba(0, 0, 0, 0.10);
  background: rgba(0, 0, 0, 0.03);
  border-radius: 14px;
  padding: 12px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  cursor: pointer;
  transition: transform 120ms ease, background 120ms ease, border-color 120ms ease;
}

.odd:hover {
  transform: translateY(-1px);
  background: rgba(0, 0, 0, 0.05);
  border-color: rgba(0, 0, 0, 0.16);
}

.odd:active {
  transform: translateY(0);
}

.odd__label {
  font-weight: 900;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.8;
}

.odd__value {
  font-weight: 900;
  font-size: 16px;
}

@media (max-width: 860px) {
  .match-card {
    grid-column: span 12;
  }

  .matches__header {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 420px) {
  .team__logo {
    width: 22px;
    height: 22px;
    border-radius: 7px;
  }

  .team__name {
    font-size: 13px;
  }

  .odd {
    padding: 11px 10px;
  }

  .odd__value {
    font-size: 15px;
  }
}
