.dtkv-public-match {
  --dtkv-primary: var(--dtkv-color-gold, #a9936f);
  --dtkv-text: var(--dtkv-color-text, #1f1f1f);
  --dtkv-muted: var(--dtkv-color-text-muted, #4f4a43);
  --dtkv-background: var(--dtkv-color-surface-soft, #f6f4f1);
  --dtkv-soft: var(--dtkv-color-control-hover, #f3efe8);
  --dtkv-line: var(--dtkv-color-line, #e8e4de);
  --dtkv-line-strong: var(--dtkv-color-black, #000);
  --dtkv-focus-ring: var(--dtkv-focus-outline, 2px solid var(--dtkv-primary));
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  color: var(--dtkv-text);
  font: inherit;
  box-sizing: border-box;
}

.dtkv-public-match *,
.dtkv-public-match *::before,
.dtkv-public-match *::after {
  box-sizing: border-box;
}

.dtkv-public-match :focus-visible {
  outline: var(--dtkv-focus-ring);
  outline-offset: 2px;
}

.dtkv-public-match a {
  color: inherit;
  text-decoration: none;
}

.dtkv-public-match__back {
  margin: 0 0 18px;
}

.dtkv-public-match__back a,
.dtkv-public-match__team a,
.dtkv-public-match__lineup a,
.dtkv-public-match__game-player a,
.dtkv-public-match__game-footer a,
.dtkv-public-match__ranking-table a {
  color: inherit;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

.dtkv-public-match__back a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 34px;
  padding: 0 2px;
  font-size: 14px;
  line-height: 1.2;
}

.dtkv-public-match__back a:hover,
.dtkv-public-match__back a:focus-visible,
.dtkv-public-match__team a:hover,
.dtkv-public-match__team a:focus-visible,
.dtkv-public-match__lineup a:hover,
.dtkv-public-match__lineup a:focus-visible,
.dtkv-public-match__game-player a:hover,
.dtkv-public-match__game-player a:focus-visible,
.dtkv-public-match__game-footer a:hover,
.dtkv-public-match__game-footer a:focus-visible,
.dtkv-public-match__ranking-table a:hover,
.dtkv-public-match__ranking-table a:focus-visible {
  color: inherit;
  text-decoration: none;
  outline: none;
}

.dtkv-public-match__back-icon {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: square;
  stroke-linejoin: miter;
  stroke-width: 2.3;
  transition: transform 0.16s ease;
}

.dtkv-public-match__back a:hover .dtkv-public-match__back-icon,
.dtkv-public-match__back a:focus-visible .dtkv-public-match__back-icon {
  transform: translateX(-3px);
}

.dtkv-public-match__back a:focus-visible,
.dtkv-public-match__team a:focus-visible,
.dtkv-public-match__lineup a:focus-visible,
.dtkv-public-match__game-player a:focus-visible,
.dtkv-public-match__game-footer a:focus-visible,
.dtkv-public-match__ranking-table a:focus-visible {
  outline: var(--dtkv-focus-ring);
  outline-offset: 2px;
}

.dtkv-public-match__back a:hover,
.dtkv-public-match__team a:hover,
.dtkv-public-match__lineup a:hover,
.dtkv-public-match__game-player a:hover,
.dtkv-public-match__game-footer a:hover,
.dtkv-public-match__ranking-table a:hover {
  color: var(--dtkv-primary);
}

.dtkv-public-match__team-name-mobile {
  display: none;
}

.dtkv-public-match__card {
  overflow: visible;
  background: transparent;
}

.dtkv-public-match__header,
.dtkv-public-match__section,
.dtkv-public-match__footer {
  padding: 0;
  margin: 0 0 38px;
}

.dtkv-public-match__header,
.dtkv-public-match__section + .dtkv-public-match__section,
.dtkv-public-match__footer {
  border-top: 0;
}

.dtkv-public-match__header {
  padding-bottom: 22px;
  border-bottom: 0;
}

.dtkv-public-match__meta-row,
.dtkv-public-match__game-meta,
.dtkv-public-match__game-footer,
.dtkv-public-match__progress-meta,
.dtkv-public-match__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.dtkv-public-match__eyebrow,
.dtkv-public-match__meta {
  margin: 0;
}

.dtkv-public-match__eyebrow {
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
}

.dtkv-public-match__meta,
.dtkv-public-match__game-meta,
.dtkv-public-match__game-footer,
.dtkv-public-match__footer,
.dtkv-public-match__progress-meta {
  color: var(--dtkv-muted);
  font-size: 14px;
}

.dtkv-public-match__meta {
  margin-top: 5px;
  font-weight: 400;
  line-height: 1.2;
}

.dtkv-public-match__status {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 5px 10px;
  border: 1px solid currentColor;
  background: #fff;
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.15;
}

.dtkv-public-match__status[data-state="official"] {
  color: #27643a;
}

.dtkv-public-match__status[data-state="live"] {
  color: #8a1d1d;
}

.dtkv-public-match__status[data-state="provisional"],
.dtkv-public-match__status[data-state="review"],
.dtkv-public-match__status[data-state="correction"] {
  color: #755800;
}

.dtkv-public-match__status[data-state="upcoming"] {
  color: var(--dtkv-muted);
}

.dtkv-public-match__scoreboard {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto minmax(220px, 1fr);
  align-items: center;
  gap: clamp(18px, 5vw, 54px);
  margin-top: 24px;
}

.dtkv-public-match__team {
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 0;
}

.dtkv-public-match__team--guest {
  justify-content: flex-end;
  text-align: right;
}

.dtkv-public-match__team-copy {
  min-width: 0;
}

.dtkv-public-match__team strong {
  display: block;
  overflow-wrap: anywhere;
  font-size: clamp(1.25rem, 2.2vw, 1.75rem);
  font-weight: 800;
  line-height: 1.12;
}

.dtkv-public-match__team strong a {
  font-size: inherit;
  font-weight: inherit;
}

.dtkv-public-match__club-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex: 0 0 64px;
  width: 64px;
  height: 64px;
  border: 1px solid var(--dtkv-line);
  background: #fff;
  color: var(--dtkv-muted);
  font-size: 0.85rem;
  font-weight: 800;
}

.dtkv-public-match__club-logo--image {
  border: 0;
  background: transparent;
}

.dtkv-public-match__club-logo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.dtkv-public-match__score {
  min-width: 132px;
  padding: 12px 18px;
  background: var(--dtkv-line-strong);
  color: #fff;
  text-align: center;
}

.dtkv-public-match__score strong {
  display: block;
  font-size: clamp(2.25rem, 6vw, 3.75rem);
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
}

.dtkv-public-match__score span {
  display: block;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
}

.dtkv-public-match__notice,
.dtkv-public-match__message,
.dtkv-public-match__empty {
  padding: 12px 14px;
  background: var(--dtkv-background);
}

.dtkv-public-match__notice {
  margin-top: 26px;
  border-left: 1px solid var(--dtkv-primary);
}

.dtkv-public-match__progress-wrap {
  margin-top: 22px;
  padding-top: 14px;
  border-top: 1px solid var(--dtkv-line);
}

.dtkv-public-match__progress-meta {
  margin-bottom: 8px;
  font-weight: 700;
}

.dtkv-public-match__progress-value.is-complete {
  color: var(--dtkv-primary);
}

.dtkv-public-match__progress {
  position: relative;
  overflow: visible;
  height: 22px;
  border: 2px solid var(--dtkv-line-strong);
  background: #fff;
}

.dtkv-public-match__progress-fill {
  display: block;
  overflow: hidden;
  height: 100%;
  background: var(--dtkv-line-strong);
  transition: width 0.25s ease;
}

.dtkv-public-match__progress-marker {
  position: absolute;
  top: 50%;
  left: clamp(0%, var(--dtkv-match-progress), 100%);
  display: block;
  width: 44px;
  height: 44px;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.dtkv-public-match__progress-marker svg {
  display: block;
  width: 100%;
  height: 100%;
  fill: var(--dtkv-line-strong);
}

.dtkv-public-match__section h2 {
  margin: 0 0 18px;
  padding-bottom: 9px;
  border-bottom: 2px solid var(--dtkv-line-strong);
  font-size: 1.35rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: 0;
}

.dtkv-public-match__lineups {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 4vw, 34px);
}

.dtkv-public-match__lineup {
  border-top: 0;
  background: #fff;
}

.dtkv-public-match__lineup h3 {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0;
  padding: 12px 0 14px;
  border-bottom: 1px solid var(--dtkv-line);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.18;
}

.dtkv-public-match__lineup h3 a {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

.dtkv-public-match__lineup h3 .dtkv-public-match__club-logo {
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
  font-size: 0.56rem;
}

.dtkv-public-match__lineup ol {
  margin: 0;
  padding: 4px 0 0;
  list-style: none;
}

.dtkv-public-match__lineup li {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
}

.dtkv-public-match__lineup li + li {
  border-top: 1px solid var(--dtkv-line);
}

.dtkv-public-match__lineup-position {
  position: relative;
  z-index: 2;
  grid-column: 1;
  grid-row: 1;
  align-self: end;
  justify-self: end;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: var(--dtkv-line-strong);
  color: #fff;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1;
}

.dtkv-public-match__lineup-portrait {
  grid-column: 1;
  grid-row: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  width: 60px;
  height: auto;
  aspect-ratio: 2 / 1.732;
  padding: 2px;
  background: var(--dtkv-line-strong);
  color: var(--dtkv-muted);
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1;
  clip-path: polygon(25% 0, 75% 0, 100% 50%, 75% 100%, 25% 100%, 0 50%);
}

.dtkv-public-match__lineup-portrait img,
.dtkv-public-match__lineup-portrait > span {
  display: block;
  width: 100%;
  height: 100%;
  background: #fff;
  clip-path: inherit;
}

.dtkv-public-match__lineup-portrait img {
  object-fit: cover;
}

.dtkv-public-match__lineup-portrait > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.dtkv-public-match__lineup-portrait.has-image {
  background: var(--dtkv-line-strong);
}

.dtkv-public-match__lineup-player {
  min-width: 0;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.25;
}

.dtkv-public-match__lineup-player a {
  overflow-wrap: anywhere;
}

.dtkv-public-match__marker,
.dtkv-public-match__automatic {
  display: inline-flex;
  align-items: center;
  padding: 3px 7px;
  border: 1px solid var(--dtkv-line);
  background: #fff;
  font-size: 0.75rem;
  font-weight: 800;
}

.dtkv-public-match__round-selector {
  display: grid;
  gap: 16px;
}

.dtkv-public-match__round-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.dtkv-public-match__round-button {
  appearance: none;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1 1 64px;
  min-width: 54px;
  min-height: 44px;
  padding: 8px 10px;
  border: 2px solid var(--dtkv-line-strong);
  background: #fff;
  color: var(--dtkv-text);
  font: inherit;
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

.dtkv-public-match__round-button--all {
  flex-basis: 82px;
}

.dtkv-public-match__round-button:hover,
.dtkv-public-match__round-button:focus-visible {
  background: var(--dtkv-soft);
  color: var(--dtkv-text);
}

.dtkv-public-match__round-button.is-active {
  border-color: var(--dtkv-line-strong);
  background: var(--dtkv-line-strong);
  color: #fff;
}

.dtkv-public-match__round-panel {
  overflow: visible;
  border-top: 0;
  background: #fff;
}

.dtkv-public-match__round-panel[hidden] {
  display: none !important;
}

.dtkv-public-match__round-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  border-bottom: 1px solid var(--dtkv-line);
  background: var(--dtkv-soft);
}

.dtkv-public-match__round-heading strong {
  font-size: 1rem;
  font-weight: 800;
}

.dtkv-public-match__round-heading span {
  color: var(--dtkv-muted);
  font-size: 0.76rem;
}

.dtkv-public-match__round-panel .dtkv-public-match__games {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  padding: 0;
}

.dtkv-public-match__round-panel .dtkv-public-match__game {
  display: grid;
  grid-template-columns: 92px minmax(180px, 1fr) 62px minmax(180px, 1fr) minmax(96px, 150px);
  grid-template-areas: "meta white result black footer";
  align-items: center;
  gap: 10px 16px;
  padding: 14px;
  border: 0;
  background: #fff;
}

.dtkv-public-match__round-panel .dtkv-public-match__game + .dtkv-public-match__game {
  border-top: 1px solid var(--dtkv-line);
}

.dtkv-public-match__round-panel .dtkv-public-match__game-meta {
  grid-area: meta;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 1px;
  min-width: 0;
  font-size: 0.73rem;
  font-weight: 700;
  line-height: 1.2;
}

.dtkv-public-match__round-panel .dtkv-public-match__game-meta strong {
  color: var(--dtkv-text);
  font-size: 0.86rem;
  font-weight: 800;
}

.dtkv-public-match__game-player--white {
  grid-area: white;
}

.dtkv-public-match__game-result {
  grid-area: result;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 56px;
  min-height: 36px;
  padding: 0 8px;
  text-align: center;
  font-size: 1.02rem;
  line-height: 1;
  white-space: nowrap;
}

.dtkv-public-match__game-result.has-result {
  background: var(--dtkv-line-strong);
  color: #fff;
}

.dtkv-public-match__game-player--black {
  grid-area: black;
}

.dtkv-public-match__round-panel .dtkv-public-match__game-footer {
  grid-area: footer;
}

.dtkv-public-match__round-panel .dtkv-public-match__game-player {
  display: flex;
  align-items: center;
  gap: 7px;
  min-width: 0;
}

.dtkv-public-match__round-panel .dtkv-public-match__game-player--white {
  justify-content: flex-end;
  text-align: right;
}

.dtkv-public-match__round-panel .dtkv-public-match__game-player--black {
  justify-content: flex-start;
  text-align: left;
}

.dtkv-public-match__round-panel .dtkv-public-match__game-player strong {
  display: block;
  overflow: hidden;
  min-width: 0;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.dtkv-public-match__round-panel .dtkv-public-match__game-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 3px 9px;
  color: var(--dtkv-muted);
  font-size: 0.72rem;
  line-height: 1.25;
  text-align: right;
}

.dtkv-public-match__round-panel .dtkv-public-match__game-points {
  order: -1;
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  color: var(--dtkv-text);
  font-size: 0.82rem;
  font-weight: 800;
}

.dtkv-public-match__referee {
  display: inline-flex;
  align-items: baseline;
  justify-content: flex-start;
  gap: 3px;
  min-width: 0;
  max-width: 100%;
}

.dtkv-public-match__colour-marker {
  display: inline-block;
  flex: 0 0 18px;
  width: 18px;
  height: 16px;
  clip-path: polygon(25% 0, 75% 0, 100% 50%, 75% 100%, 25% 100%, 0 50%);
}

.dtkv-public-match__colour-marker--white {
  position: relative;
  background: var(--dtkv-muted);
}

.dtkv-public-match__colour-marker--white::after {
  content: "";
  position: absolute;
  inset: 1.5px;
  background: #fff;
  -webkit-clip-path: inherit;
  clip-path: inherit;
}

.dtkv-public-match__colour-marker--black {
  background: var(--dtkv-line-strong);
}

.dtkv-public-match__individual-ranking {
  margin-top: 30px;
  padding-top: 24px;
  border-top: 2px solid var(--dtkv-line-strong);
}

.dtkv-public-match__footer {
  padding-top: 14px;
  border-top: 1px solid var(--dtkv-line);
}

.dtkv-public-match__individual-ranking h3 {
  margin: 0 0 16px;
  font-size: 1.35rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: 0;
}

.dtkv-public-match__ranking-wrap {
  overflow-x: auto;
  border: 0;
  outline: 0;
  background: transparent;
  box-shadow: none;
  scrollbar-color: var(--dtkv-line-strong) transparent;
  scrollbar-width: thin;
}

.dtkv-public-match__ranking-table {
  width: 100%;
  min-width: 980px;
  border: 0;
  border-collapse: collapse;
  outline: 0;
  box-shadow: none;
  font-size: 0.94rem;
  font-variant-numeric: tabular-nums;
}

.dtkv-public-match__ranking-table th,
.dtkv-public-match__ranking-table td {
  padding: 10px 12px;
  border: 0;
  border-left: 0;
  border-right: 0;
  border-bottom: 1px solid var(--dtkv-line);
  background: transparent;
  text-align: left;
  vertical-align: middle;
  white-space: nowrap;
}

.dtkv-public-match__ranking-table th {
  background: transparent;
  color: var(--dtkv-muted);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.dtkv-public-match__ranking-table th abbr {
  border: 0;
  text-decoration: none;
}

.dtkv-public-match__ranking-table tbody tr:hover {
  background: var(--dtkv-soft);
}

.dtkv-public-match__ranking-table tr:last-child td {
  border-bottom: 0;
}

.dtkv-public-match__ranking-table th:first-child,
.dtkv-public-match__ranking-table td:first-child {
  border-left: 0;
}

.dtkv-public-match__ranking-table th:last-child,
.dtkv-public-match__ranking-table td:last-child {
  border-right: 0;
}

.dtkv-public-match__ranking-table th:not(:nth-child(2)):not(:nth-child(3)),
.dtkv-public-match__ranking-table td:not(:nth-child(2)):not(:nth-child(3)) {
  text-align: center;
}

.dtkv-public-match__ranking-player,
.dtkv-public-match__ranking-player a {
  font-size: 14px;
  font-weight: 800;
  line-height: 1.25;
}

.dtkv-public-match__ranking-team {
  min-width: 250px;
}

.dtkv-public-match__ranking-team-inner {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  color: var(--dtkv-text);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.25;
}

.dtkv-public-match__ranking-team .dtkv-public-match__club-logo {
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
  font-size: 0.52rem;
}

.dtkv-public-match__ranking-team .dtkv-public-match__club-logo--image {
  border: 0;
  background: transparent;
}

.dtkv-public-match__ranking-col-points,
.dtkv-public-match__ranking-col-points strong {
  white-space: nowrap;
}

.dtkv-public-match__ranking-toggle-head,
.dtkv-public-match__ranking-toggle-cell,
.dtkv-public-match__ranking-detail-row {
  display: none;
}

.dtkv-public-match .dtkv-public-match__ranking-toggle {
  appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  min-width: 28px;
  flex: 0 0 28px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: var(--dtkv-text);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.dtkv-public-match .dtkv-public-match__ranking-toggle:hover,
.dtkv-public-match .dtkv-public-match__ranking-toggle:focus-visible,
.dtkv-public-match .dtkv-public-match__ranking-toggle:active,
.dtkv-public-match .dtkv-public-match__ranking-toggle[aria-expanded="true"] {
  border: 0;
  background: transparent;
  box-shadow: none;
  color: var(--dtkv-text);
}

.dtkv-public-match .dtkv-public-match__ranking-toggle:focus-visible {
  outline: var(--dtkv-focus-ring);
  outline-offset: 2px;
}

.dtkv-public-match .dtkv-public-match__ranking-toggle .dtkv-public-match__chevron-icon {
  display: block;
  width: 18px;
  height: 18px;
  fill: none;
  stroke: var(--dtkv-line-strong);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
  transition: transform 0.16s ease;
}

.dtkv-public-match .dtkv-public-match__ranking-toggle.is-open .dtkv-public-match__chevron-icon,
.dtkv-public-match .dtkv-public-match__ranking-toggle[aria-expanded="true"] .dtkv-public-match__chevron-icon {
  transform: rotate(90deg);
}

.dtkv-public-match__ranking-details {
  margin: 0;
  padding: 0;
}

@media (max-width: 720px) {
  .dtkv-public-match__header,
  .dtkv-public-match__section,
  .dtkv-public-match__footer {
    padding: 0;
    margin-bottom: 30px;
  }

  .dtkv-public-match__meta-row,
  .dtkv-public-match__footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .dtkv-public-match__footer {
    padding-top: 12px;
  }

  .dtkv-public-match__progress-wrap {
    margin-right: 20px;
  }

  .dtkv-public-match__scoreboard {
    grid-template-columns: minmax(0, 1fr) minmax(110px, auto) minmax(0, 1fr);
    gap: 7px;
    margin-top: 18px;
  }

  .dtkv-public-match__team,
  .dtkv-public-match__team--guest {
    flex-direction: row;
    align-items: center;
    gap: 7px;
  }

  .dtkv-public-match__team--home {
    justify-content: flex-start;
    text-align: left;
  }

  .dtkv-public-match__team--guest {
    justify-content: flex-end;
    text-align: right;
  }

  .dtkv-public-match__team-copy {
    width: 100%;
    min-width: 0;
  }

  .dtkv-public-match__team strong {
    display: -webkit-box;
    overflow: hidden;
    font-size: 0.9rem;
    line-height: 1.18;
    overflow-wrap: anywhere;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    line-clamp: 3;
  }

  .dtkv-public-match__team-name-full {
    display: none;
  }

  .dtkv-public-match__team-name-mobile {
    display: inline;
  }

  .dtkv-public-match__club-logo {
    flex: 0 0 40px;
    width: 40px;
    height: 40px;
    font-size: 0.68rem;
  }

  .dtkv-public-match__score {
    min-width: 110px;
    padding: 10px 12px;
  }

  .dtkv-public-match__score strong {
    font-size: 2rem;
  }

  .dtkv-public-match__score span {
    font-size: 0.72rem;
  }

  .dtkv-public-match__lineups {
    grid-template-columns: 1fr;
  }

  .dtkv-public-match__lineup li {
    grid-template-columns: 60px minmax(0, 1fr) auto;
  }

  .dtkv-public-match__lineup-portrait {
    width: 52px;
    height: auto;
    font-size: 0.78rem;
  }

  .dtkv-public-match__round-button {
    flex: 1 1 calc(20% - 7px);
    min-height: 40px;
    padding: 7px 5px;
    font-size: 0.86rem;
  }

  .dtkv-public-match__round-button--all {
    flex-basis: calc(20% - 7px);
  }

  .dtkv-public-match__round-panel .dtkv-public-match__game {
    grid-template-columns: minmax(0, 1fr) 52px minmax(0, 1fr);
    grid-template-areas:
      "meta meta meta"
      "white result black"
      "footer footer footer";
    gap: 7px 12px;
    padding: 10px 11px;
  }

  .dtkv-public-match__round-panel .dtkv-public-match__game-meta {
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 5px;
    font-size: 0.67rem;
  }

  .dtkv-public-match__round-panel .dtkv-public-match__game-meta > * + *::before {
    content: "·";
    margin-right: 5px;
    color: var(--dtkv-muted);
  }

  .dtkv-public-match__round-panel .dtkv-public-match__game-player {
    width: 100%;
    gap: 5px;
  }

  .dtkv-public-match__round-panel .dtkv-public-match__game-player--white {
    justify-content: flex-start;
    text-align: left;
  }

  .dtkv-public-match__round-panel .dtkv-public-match__game-player--black {
    justify-content: flex-end;
    text-align: right;
  }

  .dtkv-public-match__round-panel .dtkv-public-match__game-player strong {
    display: -webkit-box;
    flex: 1 1 auto;
    overflow: hidden;
    min-width: 0;
    font-size: 0.8rem;
    white-space: normal;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-clamp: 2;
  }

  .dtkv-public-match__round-panel .dtkv-public-match__game-footer {
    justify-content: space-between;
    gap: 5px 10px;
    padding-top: 7px;
    border-top: 1px solid var(--dtkv-line);
  }

  .dtkv-public-match__round-panel .dtkv-public-match__referee {
    justify-content: flex-end;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .dtkv-public-match__colour-marker {
    flex-basis: 16px;
    width: 16px;
    height: 14px;
  }
}

@media (max-width: 700px) {
  .dtkv-public-match__progress {
    height: 18px;
  }

  .dtkv-public-match__progress-marker {
    width: 40px;
    height: 40px;
  }

  .dtkv-public-match__round-panel .dtkv-public-match__game-points {
    display: none;
  }

  .dtkv-public-match__ranking-wrap {
    overflow: visible;
    width: 100%;
  }

  .dtkv-public-match__ranking-table {
    display: block;
    width: 100%;
    min-width: 0;
    max-width: 100%;
    table-layout: auto;
    font-size: 14px;
  }

  .dtkv-public-match__ranking-table thead,
  .dtkv-public-match__ranking-table tbody {
    display: block;
    width: 100%;
  }

  .dtkv-public-match__ranking-table thead tr,
  .dtkv-public-match__ranking-main-row {
    display: grid;
    width: 100%;
    min-width: 0;
    grid-template-columns: 42px minmax(0, 1fr) 74px 42px;
    align-items: center;
  }

  .dtkv-public-match__ranking-table th,
  .dtkv-public-match__ranking-table td {
    align-items: center;
    min-width: 0;
    padding: 9px 8px;
    overflow: visible;
    text-overflow: clip;
    white-space: normal;
  }

  .dtkv-public-match__ranking-table thead th,
  .dtkv-public-match__ranking-main-row > td {
    display: none;
  }

  .dtkv-public-match__ranking-table .dtkv-public-match__ranking-col-team,
  .dtkv-public-match__ranking-table .dtkv-public-match__ranking-col-games,
  .dtkv-public-match__ranking-table .dtkv-public-match__ranking-col-record,
  .dtkv-public-match__ranking-table .dtkv-public-match__ranking-col-goals,
  .dtkv-public-match__ranking-table .dtkv-public-match__ranking-col-difference {
    display: none;
  }

  .dtkv-public-match__ranking-table .dtkv-public-match__ranking-col-rank,
  .dtkv-public-match__ranking-table .dtkv-public-match__ranking-col-player,
  .dtkv-public-match__ranking-table .dtkv-public-match__ranking-col-points,
  .dtkv-public-match__ranking-table .dtkv-public-match__ranking-col-toggle {
    display: flex;
  }

  .dtkv-public-match__ranking-col-rank,
  .dtkv-public-match__ranking-col-points {
    justify-content: center;
    text-align: center;
    white-space: nowrap;
  }

  .dtkv-public-match__ranking-col-player {
    justify-content: flex-start;
    text-align: left;
  }

  .dtkv-public-match__ranking-col-rank {
    grid-column: 1;
    width: 42px;
    min-width: 42px;
  }

  .dtkv-public-match__ranking-col-player {
    grid-column: 2;
    width: auto;
    min-width: 0;
  }

  .dtkv-public-match__ranking-col-points {
    grid-column: 3;
    width: auto;
    min-width: 0;
  }

  .dtkv-public-match__ranking-col-toggle {
    grid-column: 4;
    width: auto;
    min-width: 0;
    justify-content: flex-end;
    padding-left: 0;
    text-align: right;
  }

  .dtkv-public-match__ranking-player a {
    display: -webkit-box;
    overflow: hidden;
    width: 100%;
    font-size: 14px;
    font-weight: 800;
    line-height: 1.2;
    overflow-wrap: anywhere;
    white-space: normal;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-clamp: 2;
  }

  .dtkv-public-match__ranking-detail-row:not([hidden]) {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr) 74px 42px;
    width: 100%;
    background: var(--dtkv-soft);
  }

  .dtkv-public-match__ranking-detail-row > td {
    display: block;
    grid-column: 1 / -1;
    width: 100%;
    padding: 0 8px 10px 50px;
    text-align: left;
    border-top: 0;
    border-bottom: 1px solid var(--dtkv-line);
  }

  .dtkv-public-match__ranking-details {
    display: grid;
    grid-template-columns: max-content minmax(0, 1fr);
    column-gap: 18px;
    padding-top: 2px;
  }

  .dtkv-public-match__ranking-details div {
    display: contents;
  }

  .dtkv-public-match__ranking-details dt,
  .dtkv-public-match__ranking-details dd {
    margin: 0;
    padding: 7px 0;
    border-top: 1px solid var(--dtkv-line);
    font-size: 0.76rem;
    line-height: 1.25;
  }

  .dtkv-public-match__ranking-details dt {
    color: var(--dtkv-muted);
    font-weight: 650;
  }

  .dtkv-public-match__ranking-details dd {
    min-width: 0;
    font-weight: 700;
    text-align: left;
  }

  .dtkv-public-match__ranking-details dd:not(.dtkv-public-match__ranking-detail-team) {
    white-space: nowrap;
  }

  .dtkv-public-match__ranking-detail-team {
    display: flex;
    align-items: center;
    gap: 8px;
    overflow-wrap: anywhere;
    white-space: normal;
  }

  .dtkv-public-match__ranking-detail-team .dtkv-public-match__club-logo {
    flex: 0 0 28px;
    width: 28px;
    height: 28px;
    font-size: 0.58rem;
  }
}

@media (max-width: 480px) {
  .dtkv-public-match__back {
    margin-bottom: 10px;
    padding-inline: 2px;
  }

  .dtkv-public-match__club-logo {
    flex-basis: 34px;
    width: 34px;
    height: 34px;
    font-size: 0.62rem;
  }

  .dtkv-public-match__team strong {
    font-size: 0.82rem;
  }

  .dtkv-public-match__scoreboard {
    grid-template-columns: minmax(0, 1fr) minmax(104px, auto) minmax(0, 1fr);
  }

  .dtkv-public-match__score {
    min-width: 104px;
    padding-inline: 10px;
  }

  .dtkv-public-match__score strong {
    font-size: 1.8rem;
  }

  .dtkv-public-match__progress-meta {
    font-size: 0.72rem;
  }

  .dtkv-public-match__round-heading {
    padding: 10px 12px;
  }

  .dtkv-public-match__round-button {
    min-height: 38px;
    padding: 6px 4px;
    font-size: 0.78rem;
  }

  .dtkv-public-match__round-panel .dtkv-public-match__game-footer {
    flex-wrap: wrap;
    align-items: flex-start;
  }

  .dtkv-public-match__round-panel .dtkv-public-match__referee {
    max-width: 72%;
  }
}
