.card{
  margin:14px 0;
  padding:14px;
  border-radius:18px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
}

.cardHead{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  margin-bottom:10px;
}

.badge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.18);
  font-size:12px;
  font-weight:950;
}
.badgeDot{
  width:8px;height:8px;border-radius:999px;background:var(--accent);
}

.cardTitle{
  font-weight:990;
  font-size:16px;
  letter-spacing:-.2px;
}
.cardText{
  margin-top:8px;
  color: rgba(242,245,249,.80);
  font-size:14px;
  font-weight:750;
  line-height:1.45;
}

/* match list */
.matchList{
  margin-top:12px;
  display:flex;
  flex-direction:column;
  gap:10px;
}
.matchRow{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  padding:10px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.18);
}
.matchLeft{min-width:0}
.matchTeams{
  font-size:13px;
  font-weight:950;
  color: rgba(242,245,249,.92);
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}
.matchMeta{
  margin-top:4px;
  display:flex;
  gap:8px;
  align-items:center;
  flex-wrap:wrap;
  color: rgba(242,245,249,.70);
  font-size:12px;
  font-weight:850;
}
.chip{
  padding:4px 8px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
}
.matchRight{
  text-align:right;
  flex:0 0 auto;
}
.matchTime{
  font-size:12px;
  font-weight:950;
  color: rgba(242,245,249,.88);
}
.matchChannel{
  margin-top:4px;
  font-size:12px;
  font-weight:850;
  color: rgba(242,245,249,.70);
}

/* external notices */
.externalList a{
  display:flex;
  justify-content:space-between;
  gap:10px;
  padding:10px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  margin-bottom:8px;
}
.externalTitle{
  font-size:13px;
  font-weight:900;
  color: rgba(242,245,249,.90);
  min-width:0;
  overflow:hidden;
  text-overflow:ellipsis;
  white-space:nowrap;
}
.externalSource{
  font-size:12px;
  font-weight:850;
  color: rgba(242,245,249,.62);
  white-space:nowrap;
  margin-left:10px;
}

/* ===== 320x320 Ad ===== */
.adCard{
  margin:14px 0;
  padding:12px;
  border-radius:18px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.18);
}

.adHead{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  margin-bottom:10px;
}

.adBadge{
  font-size:12px;
  font-weight:950;
  text-transform:uppercase;
  letter-spacing:.2px;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  color: rgba(242,245,249,.85);
}

.adMeta{
  font-size:12px;
  font-weight:900;
  color: rgba(242,245,249,.65);
}

.adStage{
  /* Centrerad 320x320-yta men responsiv på mobil */
  width:min(320px, 100%);
  aspect-ratio: 1 / 1;
  margin: 0 auto;
  border-radius: 16px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  display:grid;
  place-items:center;
  position:relative;
}

.adCreative{
  width:100%;
  height:100%;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:8px;
  background:
    radial-gradient(320px 160px at 20% 10%, rgba(217,180,92,.18), transparent 60%),
    radial-gradient(320px 180px at 80% 70%, rgba(255,255,255,.08), transparent 60%),
    rgba(255,255,255,.04);
}

.adCreativeTitle{
  font-size:16px;
  font-weight:990;
  letter-spacing:-.2px;
}

.adCreativeSub{
  font-size:12px;
  font-weight:900;
  color: rgba(242,245,249,.70);
  text-transform:uppercase;
  letter-spacing:.2px;
}

.adFoot{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  margin-top:10px;
}

.adSponsor{
  font-size:12px;
  font-weight:900;
  color: rgba(242,245,249,.70);
}

.adCta{
  padding:10px 12px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  color: rgba(242,245,249,.92);
  font-size:13px;
  font-weight:950;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  cursor:pointer;
}
.adCta:active{transform:translateY(1px)}

