/* KVCW Stats — front-end styling (blauw/goud, mockup-stijl).
   Kleuren komen uit --kvcw-primary / --kvcw-accent (instelbaar in de admin). */

.kvcw-home,
.kvcw-standings,
.kvcw-calendar {
	--kvcw-primary: #11337a;
	--kvcw-accent: #d4a13a;
	--kvcw-bg: #eef1f8;
	--kvcw-bg-inner: #e3e8f3;
	--kvcw-text: #1b2440;
	--kvcw-muted: #4b5563;
	--kvcw-title: var(--kvcw-primary); /* titelkleur (overschreven via instelling) */
	--kvcw-radius: 22px;
	font-family: inherit;
	color: var(--kvcw-text);
	box-sizing: border-box;
}
.kvcw-home *,
.kvcw-standings *,
.kvcw-calendar * { box-sizing: border-box; }

/* ───── Kale modus (zonder achtergrond) — voor eigen page-builder modules ───── */
.kvcw-card--bare,
.kvcw-standings--bare {
	background: none !important;
	padding: 0 !important;
	border-radius: 0 !important;
}

/* Optioneel logo vóór de titel */
.kvcw-title-logo { display: inline-flex; align-items: center; }
.kvcw-title-logo img { height: 1.1em; width: auto; vertical-align: middle; display: block; }
.kvcw-standings__head .kvcw-title-logo img { height: 44px; }
.kvcw-card__title .kvcw-title-logo { margin-right: 8px; }

/* ───── HOME: 3 blokken ───── */
.kvcw-home {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	align-items: start;
}
.kvcw-home--single { grid-template-columns: 1fr; max-width: 480px; margin-inline: auto; }

.kvcw-card {
	background: var(--kvcw-bg);
	border-radius: var(--kvcw-radius);
	padding: 26px 22px 28px;
}
.kvcw-card__title {
	margin: 0 0 18px;
	color: var(--kvcw-title);
	font-weight: 800;
	font-style: italic;
	text-transform: uppercase;
	letter-spacing: .5px;
	font-size: clamp(1.3rem, 2.2vw, 1.9rem);
	line-height: 1;
	text-align: center;
}
.kvcw-card__title--icon { display: flex; align-items: center; justify-content: center; gap: 10px; }

/* Bull-icoon (gestileerd; vervang gerust door je eigen logo via CSS) */
.kvcw-bull {
	width: 30px; height: 30px; flex: 0 0 auto;
	background: var(--kvcw-primary);
	-webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M4 4c2 2 3 3 3 6a5 5 0 0 0 10 0c0-3 1-4 3-6-1 3-1 4 0 6a7 7 0 1 1-16 0c1-2 1-3 0-6z'/></svg>") center/contain no-repeat;
	mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M4 4c2 2 3 3 3 6a5 5 0 0 0 10 0c0-3 1-4 3-6-1 3-1 4 0 6a7 7 0 1 1-16 0c1-2 1-3 0-6z'/></svg>") center/contain no-repeat;
}
.kvcw-bull--lg { width: 44px; height: 44px; }

/* Logo's */
.kvcw-logo { display: inline-flex; align-items: center; justify-content: center; }
.kvcw-logo img { display: block; width: 100%; height: 100%; object-fit: contain; }
.kvcw-match .kvcw-logo { width: 62px; height: 62px; }
.kvcw-next__teams .kvcw-logo { width: 78px; height: 78px; }
.kvcw-logo--text {
	background: var(--kvcw-primary); color: #fff; border-radius: 50%;
	font-weight: 800; font-size: .8rem; width: 100%; height: 100%;
}

/* ───── Vorige wedstrijden ───── */
.kvcw-match {
	position: relative;
	background: var(--kvcw-bg-inner);
	border-radius: 16px;
	padding: 26px 18px 18px;
	margin-top: 26px;
}
.kvcw-match:first-of-type { margin-top: 8px; }
.kvcw-match__date,
.kvcw-next__date {
	position: absolute; top: -15px; left: 50%; transform: translateX(-50%);
	background: var(--kvcw-accent); color: #2a2008;
	font-weight: 700; font-size: .82rem;
	padding: 5px 14px; border-radius: 8px; white-space: nowrap;
}
.kvcw-match__row { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.kvcw-match__score {
	color: var(--kvcw-primary); font-weight: 800; font-size: 2rem;
	display: inline-flex; align-items: center; gap: 12px; line-height: 1;
}
.kvcw-match__sep { color: var(--kvcw-primary); opacity: .5; font-weight: 400; }

/* ───── Volgende wedstrijd ───── */
.kvcw-next {
	position: relative;
	background: var(--kvcw-bg-inner);
	border-radius: 16px;
	padding: 30px 18px 20px;
	margin-top: 22px;
	text-align: center;
}
.kvcw-next__teams { display: flex; align-items: center; justify-content: center; gap: 18px; }
.kvcw-next__vs { color: var(--kvcw-primary); font-weight: 800; font-style: italic; font-size: 1.8rem; }
.kvcw-next__time { display: block; margin-top: 8px; color: var(--kvcw-primary); font-weight: 800; font-size: 1.15rem; }
.kvcw-next__names { display: block; margin-top: 6px; color: var(--kvcw-muted); font-size: .9rem; }

.kvcw-tickets { margin-top: 22px; }
.kvcw-tickets__row { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 10px 2px; }
.kvcw-tickets__label { font-weight: 600; }
.kvcw-badge { color: #fff; font-weight: 700; font-size: .8rem; padding: 7px 16px; border-radius: 20px; white-space: nowrap; }
.kvcw-badge--open { background: #15803d; }
.kvcw-badge--gesloten { background: #d23b3b; }
.kvcw-badge--uitverkocht { background: var(--kvcw-primary); }

.kvcw-btn {
	display: inline-block; margin-top: 16px;
	background: var(--kvcw-accent); color: #2a2008 !important;
	font-weight: 700; text-decoration: none;
	padding: 12px 34px; border-radius: 10px;
}
.kvcw-btn:hover { filter: brightness(.95); }

/* ───── Klassement (mini + vol) ───── */
.kvcw-table { width: 100%; border-collapse: collapse; }
.kvcw-table td, .kvcw-table th { padding: 12px 8px; text-align: left; }
.kvcw-table__rank { width: 34px; color: var(--kvcw-muted); font-weight: 600; }
.kvcw-table__team { display: flex; align-items: center; gap: 10px; font-weight: 600; }
.kvcw-table__team .kvcw-logo { width: 26px; height: 26px; flex: 0 0 26px; }
.kvcw-table__pts { text-align: right; font-weight: 800; color: var(--kvcw-primary); }
.kvcw-num { text-align: center; }
.kvcw-table--mini tbody tr + tr { border-top: 1px solid rgba(0,0,0,.06); }
.kvcw-row--own { background: var(--kvcw-accent); border-radius: 10px; }
.kvcw-row--own td { color: #2a2008; }
.kvcw-row--own .kvcw-table__pts { color: #2a2008; }

/* ───── Volledig klassement & kalender ───── */
.kvcw-standings, .kvcw-calendar {
	background: var(--kvcw-bg);
	border-radius: var(--kvcw-radius);
	padding: 30px clamp(16px, 3vw, 40px);
}
.kvcw-standings__head { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
.kvcw-standings__title {
	margin: 0; color: var(--kvcw-title); font-weight: 800; font-style: italic;
	text-transform: uppercase; letter-spacing: .5px; font-size: clamp(1.4rem, 3vw, 2.2rem);
}
.kvcw-table--full thead th { color: var(--kvcw-muted); font-weight: 700; font-size: .78rem; text-transform: uppercase; border-bottom: 2px solid rgba(0,0,0,.08); }
.kvcw-table--full tbody tr { border-bottom: 1px solid rgba(0,0,0,.06); }

/* Lichte hover-overlay op ALLE ranking-tabellen (mini + volledig) */
.kvcw-table tbody tr { transition: background-color .12s ease; }
.kvcw-table tbody tr:hover { background: rgba(17,51,122,.06); }
/* Eigen rij blijft goud, met subtiel donkerdere overlay bij hover */
.kvcw-row--own:hover { background: var(--kvcw-accent); box-shadow: inset 0 0 0 9999px rgba(0,0,0,.06); }

/* Stage-tabs */
.kvcw-tabs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 18px; }
.kvcw-tab {
	text-decoration: none; color: var(--kvcw-primary);
	border: 1px solid rgba(17,51,122,.25); border-radius: 20px;
	padding: 6px 16px; font-weight: 600; font-size: .85rem;
}
.kvcw-tab.is-active { background: var(--kvcw-primary); color: #fff; border-color: var(--kvcw-primary); }

/* Zichtbare toetsenbord-focus (WCAG 2.4.7) — niet leunen op thema-default */
.kvcw-tab:focus-visible,
.kvcw-btn:focus-visible { outline: 3px solid var(--kvcw-primary); outline-offset: 2px; }
.kvcw-tab.is-active:focus-visible { outline-color: #fff; }

/* ───── Kalender (datum + uur gecentreerd boven score/clash) ───── */
.kvcw-cal-list { list-style: none; margin: 0; padding: 0; }
.kvcw-cal-item {
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center; gap: 16px;
	padding: 15px 6px; border-bottom: 1px solid rgba(0,0,0,.06);
	border-radius: 8px; transition: background-color .12s ease;
}
.kvcw-cal-item:hover { background: rgba(17,51,122,.05); }
.kvcw-cal-item__team { display: flex; align-items: center; gap: 11px; min-width: 0; }
.kvcw-cal-item__home { justify-content: flex-end; text-align: right; }
.kvcw-cal-item__away { justify-content: flex-start; }
.kvcw-cal-item__team .kvcw-logo { width: 80px; height: 80px; flex: 0 0 80px; }
.kvcw-cal-item__name { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; font-weight: 600; }
.kvcw-cal-item__home .kvcw-cal-item__name { font-weight: 700; }
.kvcw-cal-item__code { display: none; }

/* Midden-kolom: datum/uur-regel boven, daaronder score (gespeeld) of clash (komend) */
.kvcw-cal-item__mid { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 5px; min-width: 200px; }
.kvcw-cal-item__datetime {
	display: inline-flex; align-items: baseline; justify-content: center; gap: .5em;
	font-variant-numeric: tabular-nums lining-nums; line-height: 1.1; white-space: nowrap;
	margin-bottom: 4px;
}
.kvcw-cal-item__date { background: var(--kvcw-accent); color: #2a2008; font-weight: 700; font-size: .85rem; letter-spacing: .02em; padding: 4px 12px; border-radius: 0; }
.kvcw-cal-item__time { color: var(--kvcw-primary); font-weight: 500; font-size: .98rem; }
.kvcw-cal-item__dtsep { color: var(--kvcw-muted); font-weight: 600; }
.kvcw-cal-item__dtsep--balk { align-self: stretch; width: 0; border-left: 1.6px solid var(--kvcw-accent); margin-block: .14em; }
.kvcw-cal-item.is-played .kvcw-cal-item__datetime { opacity: .82; }
.kvcw-cal--time-center .kvcw-cal-item.is-scheduled .kvcw-cal-item__time,
.kvcw-cal--time-center .kvcw-cal-item.is-scheduled .kvcw-cal-item__dtsep { display: none; }
.kvcw-cal-item__score { font-weight: 800; color: var(--kvcw-primary); font-size: 1.35rem; letter-spacing: .5px; }
.kvcw-cal-item__comp { color: var(--kvcw-muted); font-size: .72rem; text-align: center; text-transform: uppercase; letter-spacing: .06em; font-weight: 600; }
.kvcw-cal-item__clash { display: inline-flex; align-items: center; justify-content: center; }

/* Hulp / status */
.kvcw-empty { color: var(--kvcw-muted); text-align: center; padding: 16px 0; }
.kvcw-error { background: #fde8e8; color: #9b1c1c; padding: 8px 12px; border-radius: 8px; font-size: .85rem; }
.kvcw-attribution { margin-top: 14px; text-align: right; color: var(--kvcw-muted); font-size: .72rem; opacity: .8; }
.kvcw-provisional { margin: 0 0 14px; color: var(--kvcw-muted); font-size: .8rem; font-style: italic; text-align: center; }

/* Screenreader-only (visueel verborgen, wel voorgelezen) */
.kvcw-sr { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); clip-path: inset(50%); white-space: nowrap; border: 0; }
/* Voorlopige (placeholder) tabel: cijfers dimmen zodat het niet als "niet geladen" oogt */
.kvcw-table--provisional .kvcw-num,
.kvcw-table--provisional .kvcw-table__pts { opacity: .4; }

/* ───── Klassement: kolom-tekstgrootte (instelbaar in de admin) ───── */
.kvcw-font-klein   .kvcw-table--full thead th { font-size: .68rem; }
.kvcw-font-klein   .kvcw-table--full tbody td { font-size: .85rem; }
.kvcw-font-normaal .kvcw-table--full thead th { font-size: .78rem; }
.kvcw-font-normaal .kvcw-table--full tbody td { font-size: 1rem; }
.kvcw-font-groot   .kvcw-table--full thead th { font-size: .95rem; }
.kvcw-font-groot   .kvcw-table--full tbody td { font-size: 1.15rem; }
.kvcw-font-extra   .kvcw-table--full thead th { font-size: 1.1rem; }
.kvcw-font-extra   .kvcw-table--full tbody td { font-size: 1.3rem; }

/* ───── Responsief ───── */
@media (max-width: 900px) {
	.kvcw-home { grid-template-columns: 1fr; max-width: 480px; margin-inline: auto; }
}
@media (max-width: 600px) {
	.kvcw-hide-mobile { display: none !important; }
	.kvcw-cal-item { grid-template-columns: 1fr auto 1fr; gap: 8px; }
	.kvcw-cal-item__code { display: none; }
	/* Logo prominent bovenaan, volledige naam klein eronder (gecentreerd). */
	.kvcw-cal-item__team { flex-direction: column; align-items: center; gap: 5px; }
	.kvcw-cal-item__home { flex-direction: column-reverse; text-align: center; }
	.kvcw-cal-item__away { flex-direction: column; text-align: center; }
	.kvcw-cal-item__name { display: block; white-space: normal; overflow: visible; text-overflow: clip; text-align: center; font-size: .6rem; font-weight: 600; line-height: 1.12; max-width: 84px; color: var(--kvcw-text); }
	.kvcw-cal-item__team .kvcw-logo { width: 46px; height: 46px; flex: 0 0 46px; }
	.kvcw-cal-item__comp { display: none; }
	.kvcw-cal-item__mid { min-width: 0; }
	.kvcw-cal-item__date { padding: 3px 8px; font-size: .78rem; }
	.kvcw-cal-item__clash.clash--uur-groot { font-size: 1.3rem; }
	.kvcw-cal-item__score { font-size: 1.1rem; }
	.kvcw-cal-item__datetime { flex-direction: column; align-items: center; gap: 2px; }
	.kvcw-cal-item__dtsep--balk { border-left: 0; border-top: 1.6px solid var(--kvcw-accent); width: 20px; align-self: center; margin: 1px 0; }
}

/* ============================================================
   KALENDER — MIDDEN-ELEMENT ("clash") OPTIES (admin-keuze)
   Gescopet op .clash--<id>; basis-markup ongewijzigd.
   ============================================================ */

/* VS-pil */
.kvcw-cal-item__clash.clash--vs-pil {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  padding: 3px 11px 4px;
  font-family: inherit;
  font-weight: 800;
  font-style: italic;
  font-size: .82rem;
  letter-spacing: .04em;
  text-transform: lowercase;
  line-height: 1;
  color: #fff;
  background: var(--kvcw-primary);
  border-radius: 999px;
  position: relative;
}
.kvcw-cal-item__clash.clash--vs-pil::after {
  content: "";
  position: absolute;
  left: 22%;
  right: 22%;
  bottom: 3px;
  height: 2px;
  border-radius: 2px;
  background: var(--kvcw-accent);
}

/* Diagonale streep */
.kvcw-cal-item__clash.clash--diagonale-streep {
  display: inline-block;
  position: relative;
  width: 34px;
  height: 20px;
  border-radius: 5px;
  overflow: hidden;
  background: var(--kvcw-bg-inner);
}
.kvcw-cal-item__clash.clash--diagonale-streep::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg,
      var(--kvcw-primary) 0 44%,
      var(--kvcw-accent) 44% 56%,
      var(--kvcw-primary) 56% 100%);
}
.kvcw-cal-item__clash.clash--diagonale-streep::after {
  content: "";
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 0 1px rgba(17,51,122,.18);
  border-radius: 5px;
}

/* Botsende chevrons */
.kvcw-cal-item__clash.clash--botsende-chevrons {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  height: 18px;
}
.kvcw-cal-item__clash.clash--botsende-chevrons::before,
.kvcw-cal-item__clash.clash--botsende-chevrons::after {
  content: "";
  width: 7px;
  height: 7px;
  border-style: solid;
  border-color: var(--kvcw-primary);
  border-width: 2px 2px 0 0;
}
.kvcw-cal-item__clash.clash--botsende-chevrons::before {
  transform: rotate(45deg);
}
.kvcw-cal-item__clash.clash--botsende-chevrons::after {
  transform: rotate(-135deg);
}
.kvcw-cal-item__clash.clash--botsende-chevrons {
  position: relative;
}
.kvcw-cal-item__clash.clash--botsende-chevrons > span {
  position: absolute;
}
.kvcw-cal-item__clash.clash--botsende-chevrons {
  background:
    radial-gradient(circle at 50% 50%, var(--kvcw-accent) 0 2px, transparent 2.5px) center/100% 100% no-repeat;
}

/* Diagonale clash-streep */
.clash--diagonale-vs{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  position:relative;
  min-width:42px;
  padding:3px 12px;
  font-weight:800;
  font-style:italic;
  font-size:.74rem;
  letter-spacing:.06em;
  text-transform:uppercase;
  color:#fff;
  line-height:1;
  background:var(--kvcw-primary);
  /* schuine 'clash'-snede links/rechts */
  clip-path:polygon(14% 0, 100% 0, 86% 100%, 0% 100%);
  overflow:hidden;
}
/* dunne gouden snijlijn = decoratief, draagt geen tekst */
.clash--diagonale-vs::before{
  content:"";
  position:absolute;
  top:-20%;
  left:50%;
  width:2px;
  height:140%;
  background:var(--kvcw-accent);
  transform:translateX(-50%) rotate(18deg);
  opacity:.95;
}
@media (max-width:600px){
  .clash--diagonale-vs{min-width:36px;padding:3px 9px;font-size:.68rem;}
}

/* Gouden ruit-chevron */
.clash--gouden-ruit{
  display:inline-block;
  position:relative;
  width:26px;
  height:26px;
  margin:2px auto;
  background:var(--kvcw-primary);
  border:2px solid var(--kvcw-accent);
  transform:rotate(45deg);
  border-radius:5px;
  box-shadow:0 1px 3px rgba(17,51,122,.25);
}
/* twee gouden chevrons die naar elkaar wijzen (decoratief) */
.clash--gouden-ruit::before,
.clash--gouden-ruit::after{
  content:"";
  position:absolute;
  top:50%;
  width:6px;
  height:6px;
  border-top:2px solid var(--kvcw-accent);
  border-right:2px solid var(--kvcw-accent);
}
.clash--gouden-ruit::before{
  left:5px;
  transform:translateY(-50%) rotate(225deg);
}
.clash--gouden-ruit::after{
  right:5px;
  transform:translateY(-50%) rotate(45deg);
}
@media (max-width:600px){
  .clash--gouden-ruit{width:22px;height:22px;}
}

/* Split-badge VS */
.clash--split-badge{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  position:relative;
  width:30px;
  height:30px;
  margin:2px auto;
  border-radius:50%;
  font-weight:800;
  font-style:italic;
  font-size:.62rem;
  letter-spacing:.02em;
  text-transform:uppercase;
  color:#fff;
  line-height:1;
  z-index:0;
  /* schuine split: clubblauw vs licht-blauw vlak */
  background:linear-gradient(115deg, var(--kvcw-primary) 0 49%, var(--kvcw-bg-inner) 51% 100%);
  box-shadow:inset 0 0 0 1.5px rgba(17,51,122,.2);
}
/* gouden diagonale naad (decoratief) */
.clash--split-badge::before{
  content:"";
  position:absolute;
  inset:0;
  border-radius:50%;
  background:linear-gradient(115deg, transparent 0 48.5%, var(--kvcw-accent) 48.5% 51.5%, transparent 51.5% 100%);
  z-index:-1;
}
/* blauwe centermunt zodat 'VS' altijd op donker staat = contrast ≥4.5:1 */
.clash--split-badge::after{
  content:"";
  position:absolute;
  width:20px;
  height:20px;
  border-radius:50%;
  background:var(--kvcw-primary);
  z-index:-1;
}
@media (max-width:600px){
  .clash--split-badge{width:26px;height:26px;font-size:.56rem;}
  .clash--split-badge::after{width:17px;height:17px;}
}

/* Dubbele schuine streep */
.kvcw-cal-item__clash.clash--dubbele-schuine-streep{
  position: relative;
  display: inline-block;
  width: 34px;
  height: 22px;
  vertical-align: middle;
}
.clash--dubbele-schuine-streep::before,
.clash--dubbele-schuine-streep::after{
  content: "";
  position: absolute;
  top: 1px;
  bottom: 1px;
  width: 3px;
  border-radius: 3px;
  transform: skewX(-22deg);
  transition: left .18s ease, right .18s ease;
}
/* achterste streep: decoratief goud */
.clash--dubbele-schuine-streep::before{
  left: 8px;
  background: var(--kvcw-accent);
  opacity: .85;
}
/* voorste streep: clubblauw, de KVCW-kant */
.clash--dubbele-schuine-streep::after{
  right: 8px;
  background: var(--kvcw-primary);
}
@media (hover: hover) and (prefers-reduced-motion: no-preference){
  .kvcw-cal-item:hover .clash--dubbele-schuine-streep::before{ left: 6px; }
  .kvcw-cal-item:hover .clash--dubbele-schuine-streep::after{ right: 6px; }
}
@media (max-width: 600px){
  .kvcw-cal-item__clash.clash--dubbele-schuine-streep{ width: 28px; height: 20px; }
}

/* Pulserend accent-puntje */
.kvcw-cal-item__clash.clash--pulserend-puntje{
  position: relative;
  display: inline-block;
  width: 16px;
  height: 16px;
  vertical-align: middle;
}
/* kern: clubblauw */
.clash--pulserend-puntje::before{
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 7px;
  height: 7px;
  margin: -3.5px 0 0 -3.5px;
  border-radius: 50%;
  background: var(--kvcw-primary);
}
/* ring: decoratief goud, ademt zacht */
.clash--pulserend-puntje::after{
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 16px;
  margin: -8px 0 0 -8px;
  border-radius: 50%;
  border: 1.5px solid var(--kvcw-accent);
  opacity: .7;
  transform-origin: center;
  animation: kvcw-clash-pulse 2.4s ease-in-out infinite;
}
@keyframes kvcw-clash-pulse{
  0%,100%{ transform: scale(.78); opacity: .55; }
  50%   { transform: scale(1);   opacity: .85; }
}
@media (prefers-reduced-motion: reduce){
  .clash--pulserend-puntje::after{ animation: none; transform: scale(.9); opacity: .75; }
}

/* Chevron-paar (naar elkaar) */
.kvcw-cal-item__clash.clash--chevron-paar{
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  width: 34px;
  height: 16px;
  vertical-align: middle;
}
.clash--chevron-paar::before,
.clash--chevron-paar::after{
  content: "";
  width: 7px;
  height: 7px;
  border: solid var(--kvcw-primary);
  border-width: 2px 2px 0 0;
  transition: transform .18s ease;
}
/* linker chevron wijst naar rechts (>) */
.clash--chevron-paar::before{
  transform: rotate(45deg);
}
/* rechter chevron wijst naar links (<) */
.clash--chevron-paar::after{
  transform: rotate(225deg);
}
/* decoratief goud botspunt in het midden */
.clash--chevron-paar{
  background-image: radial-gradient(circle, var(--kvcw-accent) 0 1.5px, transparent 1.6px);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 3px 3px;
}
@media (hover: hover) and (prefers-reduced-motion: no-preference){
  .kvcw-cal-item:hover .clash--chevron-paar::before{ transform: translateX(1.5px) rotate(45deg); }
  .kvcw-cal-item:hover .clash--chevron-paar::after{ transform: translateX(-1.5px) rotate(225deg); }
}
@media (max-width: 600px){
  .kvcw-cal-item__clash.clash--chevron-paar{ width: 30px; gap: 6px; }
}

/* FIFA-stijl: groot kickoff-uur in het midden */
.kvcw-cal-item__clash.clash--uur-groot { font-weight:400; color:var(--kvcw-primary); font-size:1.6rem; letter-spacing:.5px; font-variant-numeric:tabular-nums lining-nums; }
.kvcw-cal--time-center .kvcw-cal-item__mid { gap:4px; }


/* "Volgende wedstrijd"-aanduiding op de eerstvolgende match */
.kvcw-cal-item.is-next { background: #fff; box-shadow: 0 2px 14px rgba(27,36,64,.08); position: relative; z-index: 1; }
.kvcw-cal-item__next { display: inline-flex; align-items: center; gap: 6px; font-size: .66rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; color: var(--kvcw-primary); }
.kvcw-cal-item__next::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--kvcw-accent); animation: kvcw-next-pulse 1.8s ease-in-out infinite; }
@keyframes kvcw-next-pulse { 0% { box-shadow: 0 0 0 0 rgba(212,161,58,.55); } 70% { box-shadow: 0 0 0 6px rgba(212,161,58,0); } 100% { box-shadow: 0 0 0 0 rgba(212,161,58,0); } }
@media (prefers-reduced-motion: reduce) { .kvcw-cal-item__next::before { animation: none; } }


/* ============================================================
   KVCW Stats — entrance/load-animatie (PURE CSS, geen JS).
   Kan nooit "vastlopen" op verborgen: een CSS-animatie loopt
   altijd af → eindstaat = zichtbaar (animation-fill-mode both).
   Animeert enkel opacity + transform (GPU-laag, geen reflow).
   Alle selectors .kvcw-* → veilig naast Avada.
   ============================================================ */
@keyframes kvcw-rise { from { opacity: 0; transform: translate3d(0, 14px, 0); } to { opacity: 1; transform: none; } }
@keyframes kvcw-rise-card { from { opacity: 0; transform: translate3d(0, 16px, 0) scale(.985); } to { opacity: 1; transform: none; } }

.kvcw-home .kvcw-card,
.kvcw-standings .kvcw-standings__head,
.kvcw-standings .kvcw-table--full tbody tr,
.kvcw-calendar .kvcw-standings__head,
.kvcw-calendar .kvcw-cal-list > .kvcw-cal-item {
	animation: kvcw-rise 480ms cubic-bezier(.22,.61,.36,1) both;
}
/* Koppen leiden de cascade */
.kvcw-standings .kvcw-standings__head,
.kvcw-calendar .kvcw-standings__head { animation-duration: 400ms; }
/* Home-kaarten: zachte scale + eigen stagger */
.kvcw-home .kvcw-card { animation-name: kvcw-rise-card; }
.kvcw-home .kvcw-card:nth-child(2) { animation-delay: 90ms; }
.kvcw-home .kvcw-card:nth-child(3) { animation-delay: 180ms; }
/* Rijen/cal-items: gestaggerde cascade (gecapt) */
.kvcw-standings .kvcw-table--full tbody tr:nth-child(1),
.kvcw-calendar .kvcw-cal-list > .kvcw-cal-item:nth-child(1) { animation-delay: 40ms; }
.kvcw-standings .kvcw-table--full tbody tr:nth-child(2),
.kvcw-calendar .kvcw-cal-list > .kvcw-cal-item:nth-child(2) { animation-delay: 95ms; }
.kvcw-standings .kvcw-table--full tbody tr:nth-child(3),
.kvcw-calendar .kvcw-cal-list > .kvcw-cal-item:nth-child(3) { animation-delay: 150ms; }
.kvcw-standings .kvcw-table--full tbody tr:nth-child(4),
.kvcw-calendar .kvcw-cal-list > .kvcw-cal-item:nth-child(4) { animation-delay: 205ms; }
.kvcw-standings .kvcw-table--full tbody tr:nth-child(5),
.kvcw-calendar .kvcw-cal-list > .kvcw-cal-item:nth-child(5) { animation-delay: 260ms; }
.kvcw-standings .kvcw-table--full tbody tr:nth-child(6),
.kvcw-calendar .kvcw-cal-list > .kvcw-cal-item:nth-child(6) { animation-delay: 315ms; }
.kvcw-standings .kvcw-table--full tbody tr:nth-child(7),
.kvcw-calendar .kvcw-cal-list > .kvcw-cal-item:nth-child(7) { animation-delay: 370ms; }
.kvcw-standings .kvcw-table--full tbody tr:nth-child(8),
.kvcw-calendar .kvcw-cal-list > .kvcw-cal-item:nth-child(8) { animation-delay: 425ms; }
.kvcw-standings .kvcw-table--full tbody tr:nth-child(9),
.kvcw-calendar .kvcw-cal-list > .kvcw-cal-item:nth-child(9) { animation-delay: 480ms; }
.kvcw-standings .kvcw-table--full tbody tr:nth-child(10),
.kvcw-calendar .kvcw-cal-list > .kvcw-cal-item:nth-child(10) { animation-delay: 535ms; }
.kvcw-standings .kvcw-table--full tbody tr:nth-child(11),
.kvcw-calendar .kvcw-cal-list > .kvcw-cal-item:nth-child(11) { animation-delay: 590ms; }
.kvcw-standings .kvcw-table--full tbody tr:nth-child(12),
.kvcw-calendar .kvcw-cal-list > .kvcw-cal-item:nth-child(12) { animation-delay: 645ms; }
.kvcw-standings .kvcw-table--full tbody tr:nth-child(n+13),
.kvcw-calendar .kvcw-cal-list > .kvcw-cal-item:nth-child(n+13) { animation-delay: 700ms; }

@media (prefers-reduced-motion: reduce) {
	.kvcw-home .kvcw-card,
.kvcw-standings .kvcw-standings__head,
.kvcw-standings .kvcw-table--full tbody tr,
.kvcw-calendar .kvcw-standings__head,
.kvcw-calendar .kvcw-cal-list > .kvcw-cal-item { animation: none; }
}
