/* ==========================================================================
   Dancesport.dk v2 — Portal (public frontend)
   Page-specific rules that ds.css doesn't already provide: topbar nav/burger,
   heroes (neutral forside, forbunds-forside, event-side), section/list
   layout for the fixture screens. Mobile-first; ds.css breakpoints (768px,
   1160px) are reused for consistency.
   ========================================================================== */

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

/* ============ TOPBAR / NAV ============ */
.portal-topbar { justify-content: space-between; }
.portal-topbar__brand {
  display: flex;
  align-items: center;
  gap: var(--ds-space-3);
  color: inherit;
}
.portal-topbar__brand:hover { filter: none; }

.portal-burger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  width: 40px;
  height: 40px;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 0;
}
.portal-burger__bar {
  display: block;
  height: 2px;
  border-radius: 1px;
  background: var(--ds-color-text);
}

.portal-nav {
  display: none;
  align-items: center;
  gap: var(--ds-space-5);
}
.portal-nav.is-open {
  display: flex;
  position: absolute;
  top: 60px;
  left: 0;
  right: 0;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  background: var(--ds-color-surface);
  border-bottom: 1px solid var(--ds-color-border);
  padding: var(--ds-space-3) var(--ds-space-4) var(--ds-space-4);
  z-index: 20;
}
.portal-nav__link {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ds-color-text-secondary);
  padding: var(--ds-space-3) 0;
  border-bottom: 1px solid var(--ds-color-border-soft);
}
.portal-nav.is-open .portal-nav__link:last-of-type { border-bottom: none; }
.portal-nav__link.is-active { color: var(--ds-color-primary); }
.portal-nav__spacer { display: none; }
.portal-lang {
  display: flex;
  gap: var(--ds-space-2);
  padding: var(--ds-space-3) 0;
  font-size: 12px;
}
.portal-lang__option {
  font-weight: 700;
  color: var(--ds-color-text-muted);
  cursor: default;
}
.portal-lang__option.is-active { color: var(--ds-color-primary); }
.portal-nav__login { margin-top: var(--ds-space-2); align-self: flex-start; }

@media (min-width: 768px) {
  .portal-burger { display: none; }
  .portal-nav {
    display: flex;
    position: static;
    flex-direction: row;
    background: none;
    border: none;
    padding: 0;
    margin-left: var(--ds-space-6);
  }
  .portal-nav__link {
    border-bottom: none;
    padding: 0;
  }
  .portal-nav__link.is-active { border-bottom: 2px solid var(--ds-color-primary); padding-bottom: 2px; }
  .portal-nav__spacer { display: block; flex: 1; }
  .portal-lang { padding: 0; }
  .portal-nav__login { margin-top: 0; }
}

/* Farvekodning af andre forbunds navne/pills i kryds-forbunds-lister —
   bevidst undtagelse fra tenant-theming: dette er IKKE sidens egen tenant,
   men en reference til et andet forbund vist på den neutrale portal. */
.portal-fedtag[data-fed="dansebroen"] { color: oklch(0.44 0.16 358); font-weight: 700; }
a.pill.portal-fedstrip__pill[data-fed="dansebroen"] { background: oklch(0.96 0.025 358); color: oklch(0.44 0.16 358); }

/* ============ SECTIONS ============ */
.portal-section { padding: var(--ds-space-6) 0; }
.portal-section__head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: var(--ds-space-4);
  gap: var(--ds-space-3);
}
.portal-section__head a,
.portal-section__title-standalone { font-size: 13px; font-weight: 600; }
.portal-section__title-standalone { display: block; margin-bottom: var(--ds-space-4); font-size: 20px; }

/* ============ 2a — NEUTRAL FORSIDE ============ */
.portal-hero {
  background: var(--ds-color-surface-dark);
  padding: var(--ds-space-7) 0 var(--ds-space-6);
}
.portal-hero__inner { max-width: 640px; margin: 0 auto; text-align: center; }
.portal-hero__kicker { color: var(--ds-color-energy); }
.portal-hero__title { color: #fff; margin-top: var(--ds-space-3); }
.portal-hero__search { max-width: 480px; margin: var(--ds-space-5) auto 0; }
.portal-hero__search .field__input { height: 52px; }
.portal-hero__stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--ds-space-5);
  margin-top: var(--ds-space-5);
  font-size: 13px;
  color: oklch(0.8 0.02 260);
}
.portal-hero__stats strong { color: #fff; font-size: 16px; }

.portal-event-list { display: flex; flex-direction: column; gap: var(--ds-space-3); }
.portal-event-card { text-decoration: none; color: var(--ds-color-text); }
.portal-event-card:hover { filter: none; border-color: var(--ds-color-border-strong); }

.portal-danceid { background: var(--ds-color-primary-soft); display: flex; flex-direction: column; gap: var(--ds-space-3); align-items: flex-start; }
.portal-danceid__actions { display: flex; flex-direction: column; gap: var(--ds-space-2); align-items: flex-start; }

.portal-fedstrip { display: flex; flex-wrap: wrap; align-items: center; gap: var(--ds-space-3); padding-top: 0; padding-bottom: var(--ds-space-6); }
.portal-fedstrip__placeholder { border: 1.5px dashed var(--ds-color-border-strong); background: transparent; color: var(--ds-color-text-muted); }
.portal-fedstrip__note { margin-left: auto; }

@media (min-width: 768px) {
  .portal-hero__title { font-size: 44px; }
}

/* ============ 1a — FORBUNDS-FORSIDE ============ */
.portal-fedhero { background: var(--ds-color-primary); padding: var(--ds-space-6) 0; }
.portal-fedhero__inner { max-width: 640px; }
.portal-fedhero__kicker { color: #fff; opacity: 0.85; }
.portal-fedhero__title { color: #fff; margin-top: var(--ds-space-3); font-size: 30px; }
.portal-fedhero__ctas { display: flex; flex-wrap: wrap; gap: var(--ds-space-2); margin-top: var(--ds-space-5); }
.portal-fedhero__cta-primary { background: #fff; color: var(--ds-color-primary); }
.portal-fedhero__cta-secondary { background: transparent; border-color: rgba(255,255,255,0.5); color: #fff; }
@media (min-width: 768px) {
  .portal-fedhero__title { font-size: 40px; }
}

.portal-fedevent-grid { display: grid; grid-template-columns: 1fr; gap: var(--ds-space-4); }
@media (min-width: 768px) {
  .portal-fedevent-grid { grid-template-columns: repeat(3, 1fr); }
}
.portal-fedevent-card__image {
  height: 110px;
  background: repeating-linear-gradient(45deg, var(--ds-color-primary-soft), var(--ds-color-primary-soft) 7px, var(--ds-color-bg) 7px, var(--ds-color-bg) 14px);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ds-font-mono);
  font-size: 10px;
  color: var(--ds-color-text-muted);
}
.portal-fedevent-card__body { padding: var(--ds-space-4); display: flex; flex-direction: column; gap: 4px; }
.portal-fedevent-card__meta { display: flex; align-items: center; gap: var(--ds-space-2); }
.portal-fedevent-card__date { font-weight: 700; color: var(--ds-color-primary); }
.portal-fedevent-card__title { margin: 4px 0 0; font-size: 16px; font-weight: 800; }
.portal-fedevent-card__venue { margin: 0; }
.portal-fedevent-card__btn { width: 100%; margin-top: var(--ds-space-3); }

.portal-news-grid { display: grid; grid-template-columns: 1fr; gap: var(--ds-space-4); }
@media (min-width: 768px) {
  .portal-news-grid { grid-template-columns: 1fr 1fr; }
}
.portal-news-card { display: flex; gap: var(--ds-space-4); align-items: center; }
.portal-news-card__thumb {
  flex: none;
  width: 72px;
  height: 72px;
  border-radius: var(--ds-radius-input);
  background: repeating-linear-gradient(45deg, var(--ds-color-primary-soft), var(--ds-color-primary-soft) 5px, var(--ds-color-bg) 5px, var(--ds-color-bg) 10px);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ds-font-mono);
  font-size: 8px;
  color: var(--ds-color-text-muted);
}
.portal-news-card__title { font-size: 15px; font-weight: 700; line-height: 1.3; }
.portal-news-card__meta { margin-top: 4px; }

/* ============ 1b — EVENT-SIDE ============ */
.portal-eventhero {
  position: relative;
  min-height: 220px;
  background: repeating-linear-gradient(45deg, var(--ds-color-surface-dark), var(--ds-color-surface-dark) 9px, oklch(0.30 0.05 262) 9px, oklch(0.30 0.05 262) 18px);
}
.portal-eventhero__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: var(--ds-space-4);
}
.portal-eventhero__brand { display: flex; align-items: center; gap: var(--ds-space-2); }
.portal-eventhero__brandname { font-size: 12px; font-weight: 700; color: #fff; }
.portal-eventhero__bottom { color: #fff; }
.portal-eventhero__title { margin: var(--ds-space-2) 0 0; font-size: 26px; font-weight: 800; letter-spacing: -0.02em; line-height: 1.1; }
.portal-eventhero__meta { margin: 4px 0 0; font-size: 13.5px; opacity: 0.85; }

.portal-event-body { padding: var(--ds-space-4) 0 var(--ds-space-6); display: flex; flex-direction: column; gap: var(--ds-space-4); max-width: 640px; }
.portal-event-ctas { display: grid; grid-template-columns: 1fr 1fr; gap: var(--ds-space-2); }
.portal-event-summary { display: flex; justify-content: center; flex-wrap: wrap; gap: var(--ds-space-3); font-size: 12px; color: var(--ds-color-text-secondary); }

.portal-event-card__label { margin-bottom: var(--ds-space-3); }
.portal-event-card__footnote { margin-top: var(--ds-space-3); }
.portal-event-rows { display: flex; flex-wrap: wrap; gap: var(--ds-space-2); }

.portal-event-schedule { display: flex; flex-direction: column; gap: var(--ds-space-2); font-size: 13.5px; }
.portal-event-schedule__row { display: flex; gap: var(--ds-space-3); }
.portal-event-schedule__time { width: 46px; flex: none; font-weight: 700; }

.portal-event-practical { display: flex; flex-direction: column; gap: var(--ds-space-2); font-size: 13.5px; line-height: 1.5; }
.portal-event-practical__row { display: flex; gap: var(--ds-space-3); }

.portal-participant-list { display: flex; flex-direction: column; gap: var(--ds-space-2); }
.portal-participant { padding: var(--ds-space-3); border: 1px solid var(--ds-color-border-soft); border-radius: var(--ds-radius-input); }

.portal-event-followbanner {
  background: var(--ds-color-primary-soft);
  border-radius: var(--ds-radius);
  padding: var(--ds-space-3) var(--ds-space-4);
  font-size: 12.5px;
  line-height: 1.5;
  text-align: center;
}

/* ============ NOT FOUND ============ */
.portal-notfound { padding: var(--ds-space-7) 0; display: flex; flex-direction: column; gap: var(--ds-space-4); align-items: flex-start; max-width: 480px; }

/* ============ DANSER-/PARPROFIL (1c/1d, 3c) ============ */
.portal-profile { padding: var(--ds-space-4) 0 var(--ds-space-6); display: flex; flex-direction: column; gap: var(--ds-space-3); max-width: 640px; }
.portal-profile__hero { display: flex; flex-direction: column; gap: var(--ds-space-4); }
.portal-profile__head { display: flex; gap: var(--ds-space-4); align-items: center; }
.portal-profile__avatar {
  flex: none; width: 60px; height: 60px; border-radius: var(--ds-radius-pill);
  background: var(--ds-color-energy); color: var(--ds-color-energy-ink);
  display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 21px;
}
.portal-profile__avatar--accent { background: var(--ds-color-primary); color: #fff; }
.portal-profile__name { margin: 0; font-size: 21px; font-weight: 800; letter-spacing: -0.01em; }
.portal-profile__club-link { font-weight: 600; }
.portal-profile__meta { margin: 2px 0 0; font-size: 13px; color: var(--ds-color-text-secondary); }
.portal-profile__danceid { margin: 2px 0 0; }
.portal-profile__levels { display: grid; grid-template-columns: 1fr 1fr; gap: var(--ds-space-2); }
.portal-profile__level-box { border: 1px solid var(--ds-color-border); border-radius: var(--ds-radius-input); padding: var(--ds-space-3) var(--ds-space-4); }
.portal-profile__level-value { font-size: 22px; font-weight: 800; margin-top: 2px; }

.portal-profile__partner { text-decoration: none; color: inherit; }
.portal-profile__partner-body { flex: 1; }
.portal-profile__partner-name { font-size: 14.5px; font-weight: 700; margin-top: 1px; }
.portal-profile__partner-link { font-size: 12.5px; font-weight: 600; }

.portal-profile__results-label,
.portal-profile__section-label { margin-bottom: 0; }
.portal-profile__badgebook p { margin: var(--ds-space-2) 0 0; line-height: 1.5; }
.portal-profile__visibility-note { text-align: center; }

.portal-result-list { display: flex; flex-direction: column; margin-top: var(--ds-space-3); }
.portal-result-row {
  display: flex; align-items: center; gap: var(--ds-space-3);
  padding: 11px 0; border-top: 1px solid var(--ds-color-border-soft);
}
.portal-result-row:first-child { border-top: none; }
.portal-result-row__badge {
  flex: none; width: 34px; height: 34px; border-radius: var(--ds-radius-pill);
  background: var(--ds-color-disabled-bg); color: var(--ds-color-text-secondary);
  display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 800;
}
.portal-result-row__badge--gold { background: var(--ds-status-pending-bg); color: var(--ds-status-pending-text); }
.portal-result-row__body { flex: 1; display: flex; flex-direction: column; }
.portal-result-row__title { font-size: 13.5px; font-weight: 700; }
.portal-result-row__title a { color: inherit; }
.portal-result-row__sub { font-size: 12px; color: var(--ds-color-text-secondary); }
.portal-result-row__date { white-space: nowrap; }
.portal-result-list__footer { text-align: center; padding-top: var(--ds-space-3); border-top: 1px solid var(--ds-color-border-soft); margin-top: var(--ds-space-1); font-size: 12.5px; font-weight: 600; }

.portal-hidden-profile {
  padding: var(--ds-space-8) var(--ds-space-4);
  display: flex; flex-direction: column; align-items: center; gap: var(--ds-space-3);
  text-align: center; max-width: 340px; margin: 0 auto;
}
.portal-hidden-profile__icon {
  width: 60px; height: 60px; border-radius: var(--ds-radius-pill);
  background: var(--ds-color-disabled-bg); color: var(--ds-color-text-muted);
  display: flex; align-items: center; justify-content: center; font-size: 22px;
}
.portal-hidden-profile__body { color: var(--ds-color-text-secondary); }

/* ============ PARPROFIL (3c) ============ */
.portal-couple-hero { display: flex; flex-direction: column; align-items: center; gap: var(--ds-space-3); text-align: center; }
.portal-couple-hero__avatars { display: flex; align-items: center; justify-content: center; }
.portal-couple-hero__avatar {
  width: 58px; height: 58px; border-radius: var(--ds-radius-pill); border: 3px solid var(--ds-color-surface);
  display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 19px;
  background: var(--ds-color-energy); color: var(--ds-color-energy-ink);
}
.portal-couple-hero__avatar--accent { background: var(--ds-color-primary); color: #fff; margin-left: -14px; }
.portal-couple-hero__name { margin: var(--ds-space-2) 0 0; font-size: 19px; font-weight: 800; letter-spacing: -0.01em; }
.portal-couple-hero__meta { margin: 2px 0 0; font-size: 12.5px; color: var(--ds-color-text-secondary); }
.portal-couple-hero__stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--ds-space-2); width: 100%; margin-top: var(--ds-space-2); }
.portal-couple-hero__stat { border: 1px solid var(--ds-color-border); border-radius: var(--ds-radius-input); padding: 9px 4px; }
.portal-couple-hero__stat-value { font-size: 18px; font-weight: 800; }
.portal-couple-hero__stat-label { font-size: 10px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ds-color-text-secondary); }

.portal-couple-dancers { display: flex; flex-direction: column; gap: var(--ds-space-2); margin-top: var(--ds-space-3); }
.portal-couple-dancer-row { display: flex; align-items: center; gap: 10px; text-decoration: none; color: inherit; }
.portal-couple-dancer-row__avatar {
  width: 32px; height: 32px; border-radius: var(--ds-radius-pill); flex: none;
  display: inline-flex; align-items: center; justify-content: center; font-weight: 800; font-size: 11px;
  background: var(--ds-color-energy); color: var(--ds-color-energy-ink);
}
.portal-couple-dancer-row__avatar--accent { background: var(--ds-color-primary); color: #fff; }
.portal-couple-dancer-row__name { font-size: 13.5px; font-weight: 700; }
.portal-couple-dancer-row__chevron { margin-left: auto; color: var(--ds-color-text-muted); }

/* ============ KLUBSIDE (3d) ============ */
.portal-club-hero { background: var(--ds-color-primary); padding: var(--ds-space-5) 0; }
.portal-club-hero__inner { display: flex; align-items: center; gap: var(--ds-space-4); }
.portal-club-hero__mark {
  flex: none; width: 52px; height: 52px; border-radius: var(--ds-radius-input);
  background: #fff; color: var(--ds-color-primary);
  display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 20px;
}
.portal-club-hero__name { margin: 0; font-size: 20px; font-weight: 800; color: #fff; letter-spacing: -0.01em; }
.portal-club-hero__stats { margin: 2px 0 0; font-size: 12.5px; color: rgba(255,255,255,0.8); }

.portal-club-body { padding: var(--ds-space-4) 0 var(--ds-space-6); display: flex; flex-direction: column; gap: var(--ds-space-3); max-width: 640px; }
.portal-club-about { line-height: 1.55; color: var(--ds-color-text); }
.portal-club-about__links { margin-top: var(--ds-space-2); font-size: 12.5px; }
.portal-club-about__links a { font-weight: 700; }

.portal-club-event-row { display: flex; align-items: center; gap: var(--ds-space-3); padding: 11px 0; border-top: 1px solid var(--ds-color-border-soft); text-decoration: none; color: inherit; }
.portal-club-event-row:first-child { border-top: none; }
.portal-club-event-row__date {
  flex: none; width: 40px; height: 44px; border-radius: 8px; background: var(--ds-color-primary-soft);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
}
.portal-club-event-row__day { font-size: 15px; font-weight: 800; color: var(--ds-color-primary); line-height: 1; }
.portal-club-event-row__month { font-size: 9px; font-weight: 700; letter-spacing: 0.08em; color: var(--ds-color-primary); }
.portal-club-event-row__body { flex: 1; }
.portal-club-event-row__title { font-size: 13.5px; font-weight: 700; }
.portal-club-event-row__status { font-size: 11.5px; color: var(--ds-color-text-secondary); }
.portal-club-event-row__chevron { color: var(--ds-color-text-muted); }

.portal-club-dancers__head { display: flex; justify-content: space-between; align-items: baseline; }
.portal-club-dancer-row { display: flex; align-items: center; gap: var(--ds-space-3); padding: 11px 0; border-top: 1px solid var(--ds-color-border-soft); text-decoration: none; color: inherit; }
.portal-club-dancer-row:first-child { border-top: none; }
.portal-club-dancer-row__avatar {
  flex: none; width: 34px; height: 34px; border-radius: var(--ds-radius-pill);
  display: inline-flex; align-items: center; justify-content: center; font-weight: 800; font-size: 12px;
  background: var(--ds-color-primary-soft); color: var(--ds-color-primary);
}
.portal-club-dancer-row__name { flex: 1; font-size: 13.5px; font-weight: 700; }

/* ============ SØGNING (3b) ============ */
.portal-search-head { background: var(--ds-color-surface); border-bottom: 1px solid var(--ds-color-border); padding: var(--ds-space-4) 0; }
.portal-search-head .field--search .field__input { height: 48px; border-width: 2px; border-color: var(--ds-color-primary); }
.portal-search-filters { display: flex; flex-wrap: wrap; gap: var(--ds-space-2); margin-top: var(--ds-space-3); }
.portal-search-filter {
  padding: 5px 13px; border-radius: var(--ds-radius-pill); font-size: 12px; font-weight: 700;
  background: var(--ds-color-disabled-bg); color: var(--ds-color-text-secondary);
}
.portal-search-filter.is-active { background: var(--ds-color-primary); color: #fff; }

.portal-search-body { padding: var(--ds-space-4) 0 var(--ds-space-6); max-width: 640px; }
.portal-search-results { display: flex; flex-direction: column; gap: var(--ds-space-2); }
.portal-search-result {
  display: flex; align-items: center; gap: var(--ds-space-3); padding: var(--ds-space-3);
  background: var(--ds-color-surface); border: 1px solid var(--ds-color-border); border-radius: var(--ds-radius); text-decoration: none; color: inherit;
}
.portal-search-avatar {
  flex: none; width: 38px; height: 38px; border-radius: var(--ds-radius-pill);
  display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 13px;
}
.portal-search-avatar--dancer { background: var(--ds-color-energy); color: var(--ds-color-energy-ink); }
.portal-search-avatar--couple { background: var(--ds-color-primary-soft); color: var(--ds-color-primary); }
.portal-search-avatar--club { border-radius: var(--ds-radius-input); background: var(--ds-status-approved-bg); color: var(--ds-status-approved-text); }
.portal-search-avatar--event { border-radius: var(--ds-radius-input); background: var(--ds-color-disabled-bg); color: var(--ds-color-text-secondary); flex-direction: column; font-size: 9px; }
.portal-search-result__body { flex: 1; min-width: 0; }
.portal-search-result__name { font-size: 14px; font-weight: 700; }
.portal-search-result__name mark { background: var(--ds-status-pending-bg); color: inherit; border-radius: 2px; }
.portal-search-result__meta { font-size: 11.5px; color: var(--ds-color-text-secondary); margin-top: 1px; }
.portal-search-empty { text-align: center; padding: var(--ds-space-7) var(--ds-space-4); color: var(--ds-color-text-secondary); }
.portal-search-footnote { text-align: center; font-size: 12px; color: var(--ds-color-text-secondary); padding: var(--ds-space-4) 0 0; }
.portal-search-result__badge { flex: none; }
.portal-search-badge--dancer { background: var(--ds-color-primary-soft); color: var(--ds-color-primary); }

/* ============ RESULTATARKIV (3a) ============ */
.portal-results-head { background: var(--ds-color-surface); border-bottom: 1px solid var(--ds-color-border); padding: var(--ds-space-4) 0; }
.portal-results-head__inner { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: var(--ds-space-3); }
.portal-results-head__search { width: 100%; max-width: 320px; }

.portal-results-layout { display: grid; grid-template-columns: 1fr; gap: var(--ds-space-4); padding: var(--ds-space-4) 0 var(--ds-space-6); }
@media (min-width: 1024px) {
  .portal-results-layout { grid-template-columns: 300px 1fr; align-items: start; }
}

.portal-results-eventlist { display: flex; flex-direction: column; gap: var(--ds-space-2); }
.portal-results-event-card {
  display: block; padding: 13px 16px; background: var(--ds-color-surface);
  border: 1px solid var(--ds-color-border); border-radius: var(--ds-radius); text-decoration: none; color: inherit;
}
.portal-results-event-card.is-active { border-color: var(--ds-color-primary); border-width: 1.5px; }
.portal-results-event-card__title { font-size: 14px; font-weight: 700; }
.portal-results-event-card__meta { font-size: 12px; color: var(--ds-color-text-secondary); margin-top: 2px; }

.portal-results-panel { background: var(--ds-color-surface); border: 1px solid var(--ds-color-border); border-radius: var(--ds-radius); padding: var(--ds-space-4); }
.portal-results-panel__head { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: var(--ds-space-3); gap: var(--ds-space-2); }
.portal-results-panel__title { margin: 0; font-size: 17px; font-weight: 800; }
.portal-results-group-label {
  font-size: 12px; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--ds-color-text-secondary); margin-bottom: var(--ds-space-2);
}
.portal-results-group { margin-bottom: var(--ds-space-5); }
.portal-results-group:last-child { margin-bottom: 0; }
.portal-results-row { display: flex; align-items: center; gap: var(--ds-space-3); padding: 10px 12px; border-radius: 8px; }
.portal-results-row--first { background: var(--ds-status-pending-bg); }
.portal-results-row__badge {
  flex: none; width: 30px; height: 30px; border-radius: var(--ds-radius-pill);
  background: var(--ds-color-disabled-bg); color: var(--ds-color-text-secondary);
  display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 800;
}
.portal-results-row--first .portal-results-row__badge { background: var(--ds-status-pending-dot); color: #fff; }
.portal-results-row__name { flex: 1; font-size: 13.5px; font-weight: 700; }
.portal-results-row__club { font-size: 12.5px; color: var(--ds-color-text-secondary); }
.portal-results-group__expand { display: block; font-size: 12px; font-weight: 600; padding: var(--ds-space-2) 12px 0; }

/* ============ KALENDER ============ */
.portal-calendar-head { margin-bottom: var(--ds-space-4); }

/* ============ FOOTER ============ */
.portal-footer { border-top: 1px solid var(--ds-color-border); background: var(--ds-color-surface); padding: var(--ds-space-5) 0; }
.portal-footer__row { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: var(--ds-space-3); }
.portal-footer__brand { display: flex; align-items: center; gap: var(--ds-space-2); }
.portal-footer__name { font-weight: 700; color: var(--ds-color-text); font-size: 13px; }
.portal-footer__links { display: flex; flex-wrap: wrap; gap: var(--ds-space-4); font-size: 12px; }
.portal-footer__powered { color: var(--ds-color-text-secondary); }
