/* ============================================
   DESIGN SYSTEM — ACCENT PATTERN (vastgelegd 2026-04-16)
   ============================================

   PATROON: rode accents worden NIET gebruikt als card borders.
   Geen border-top, border-left, border-right, of border-bottom met
   rode kleur op cards of content-blokken.

   Reden: volle rode borders op cards voelen als template/AI-cliché.

   TOEGESTAAN:
   - Section-title underlines via ::after pseudo-element (bestaand patroon)
   - Structurele identiteit: navbar border-bottom (2px), footer border-top
   - Hover-effecten met transform + shadow, GEEN borders

   NIET TOEGESTAAN:
   - border-top/left/right op cards (.hs-sport-card, .hs-credo-box,
     .hs-highlight-box, etc.)
   - Rode borders die op hover verschijnen
   - Page-hero borders

   GELDT VOOR: Hoensport-rood (#E63227) EN club-kleuren (#62292b, etc.)

   Volg dit patroon bij alle toekomstige sections.
   ============================================ */

/* ============================================================
   HOENSPORT SECTIONS — shared components + section styles
   Used on content pages (homepage, sport pages, info pages)
   ============================================================ */

/* --- Animations --- */
@keyframes hs-fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* --- Container --- */
.hs-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

@media (min-width: 481px) {
  .hs-container { padding: 0 2.4rem; }
}

@media (min-width: 750px) {
  .hs-container { padding: 0 5rem; }
}

/* --- Section --- */
.hs-section {
  padding: 88px 0;
}

.hs-section--light {
  background: var(--hs-light, #f4f4f4);
}

.hs-section--dark {
  background: var(--hs-dark, #111111);
}

/* --- Section label + title --- */
.hs-section-label {
  display: block;
  font-family: var(--font-body-family);
  font-weight: 600;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--hs-red, #E63227);
  margin-bottom: 12px;
}

.hs-section-title {
  font-family: var(--font-heading-family);
  font-weight: 900;
  font-size: clamp(30px, 4vw, 46px);
  text-transform: uppercase;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
  color: var(--hs-dark, #111111);
}

.hs-section-title::after {
  content: '';
  display: block;
  width: 48px;
  height: 3px;
  background: var(--hs-red, #E63227);
  margin-top: 10px;
}

/* --- Content text --- */
.hs-content-text p {
  font-size: 16px;
  line-height: 1.85;
  color: var(--hs-grey, #3d3d3d);
  margin-bottom: 1rem;
}

.hs-content-text p:last-child { margin-bottom: 0; }
.hs-content-text strong { font-weight: 600; color: var(--hs-dark, #111111); }

/* --- Buttons --- */
.hs-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  font-family: var(--font-heading-family);
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: var(--hs-radius-btn, 8px);
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.2s;
  border: 2px solid transparent;
}

.hs-btn--red {
  background: var(--hs-red, #E63227);
  color: #ffffff;
  border-color: var(--hs-red, #E63227);
}

.hs-btn--red:hover {
  background: var(--hs-red-dark, #b5201a);
  border-color: var(--hs-red-dark, #b5201a);
}

.hs-btn--outline-red {
  background: transparent;
  color: var(--hs-red, #E63227);
  border-color: var(--hs-red, #E63227);
}

.hs-btn--outline-red:hover {
  background: var(--hs-red, #E63227);
  color: #ffffff;
}

.hs-btn--outline-white {
  background: transparent;
  color: #ffffff;
  border-color: #ffffff;
}

.hs-btn--outline-white:hover {
  background: #ffffff;
  color: var(--hs-dark, #111111);
}

/* --- Two-column layouts --- */
.hs-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.hs-two-col--3-2 {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 48px;
  align-items: start;
}

/* --- Credo box --- */
.hs-credo-box {
  background: var(--hs-dark, #111111);
  padding: 32px 36px;
  border-radius: var(--hs-radius, 12px);
  margin: 32px 0;
  box-shadow: var(--hs-shadow-md, 0 8px 28px rgba(0,0,0,0.14));
}

.hs-credo-box__label {
  font-family: var(--font-body-family);
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--hs-red, #E63227);
  margin-bottom: 10px;
}

.hs-credo-box__text {
  font-family: var(--font-heading-family);
  font-weight: 900;
  font-size: 24px;
  text-transform: uppercase;
  color: #ffffff;
  letter-spacing: 2px;
  margin: 0;
}

/* --- Highlight box --- */
.hs-highlight-box {
  background: var(--hs-dark, #111111);
  border-radius: var(--hs-radius, 12px);
  padding: 40px 48px;
  box-shadow: var(--hs-shadow-md, 0 8px 28px rgba(0,0,0,0.14));
}

.hs-highlight-box h3 {
  color: #ffffff;
  font-size: 26px;
  margin-bottom: 8px;
}

.hs-highlight-box p {
  color: rgba(255,255,255,0.7);
  margin: 0 0 24px;
}

/* --- Feature block --- */
.hs-feature-block {
  background: var(--hs-light, #f4f4f4);
  border-radius: var(--hs-radius, 12px);
  padding: 40px;
  height: 100%;
  box-shadow: var(--hs-shadow-sm, 0 2px 12px rgba(0,0,0,0.08));
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.hs-feature-block:hover {
  box-shadow: var(--hs-shadow-md, 0 8px 28px rgba(0,0,0,0.14));
  transform: translateY(-3px);
}

.hs-feature-block h3 {
  font-size: 26px;
  margin-bottom: 8px;
}

.hs-feature-block p {
  color: var(--hs-mid, #6b6b6b);
  margin-bottom: 24px;
}

/* ============================================================
   HERO
   ============================================================ */
.hs-hero {
  position: relative;
  min-height: 540px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hs-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      45deg,
      rgba(255,255,255,0.018) 0px,
      rgba(255,255,255,0.018) 1px,
      transparent 1px,
      transparent 44px
    ),
    repeating-linear-gradient(
      -45deg,
      rgba(255,255,255,0.018) 0px,
      rgba(255,255,255,0.018) 1px,
      transparent 1px,
      transparent 44px
    );
  pointer-events: none;
}


.hs-hero__content {
  position: relative;
  z-index: 1;
  max-width: 680px;
  animation: hs-fadeInUp 0.65s ease both;
}

.hs-hero__label {
  display: inline-block;
  font-family: var(--font-body-family);
  font-weight: 600;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--hs-red, #E63227);
  margin-bottom: 20px;
}

.hs-hero h1 {
  font-size: clamp(38px, 5.5vw, 70px);
  color: #ffffff;
  margin-bottom: 20px;
  line-height: 1;
  text-transform: uppercase;
  font-weight: 900;
}

.hs-hero__sub {
  font-size: 18px;
  color: rgba(255,255,255,0.75);
  margin-bottom: 36px;
  max-width: 520px;
  font-weight: 400;
  line-height: 1.6;
}

.hs-hero__cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ============================================================
   USP STRIP
   ============================================================ */
.hs-usp-strip {
  background: var(--hs-red, #E63227);
  padding: 30px 0;
}

.hs-usp-strip .hs-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.hs-usp-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #ffffff;
  font-family: var(--font-heading-family);
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hs-usp-icon {
  width: 34px;
  height: 34px;
  background: rgba(255,255,255,0.22);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

/* ============================================================
   SPORTS GRID
   ============================================================ */
/* Desktop: 4-col grid. Mobile: horizontal scroll slider with peek */
.hs-sport-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

@media (max-width: 749px) {
  .hs-sports-slider {
    display: block;
    overflow: visible;
    margin-left: -1.5rem;
    margin-right: -1.5rem;
  }

  .hs-sport-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    gap: 12px;
    padding: 0 1.5rem;
    scroll-padding-inline-start: 1.5rem;
    scrollbar-width: none;
  }

  .hs-sport-grid::-webkit-scrollbar {
    display: none;
  }

  .hs-sport-card {
    flex: 0 0 calc(42% - 6px);
    scroll-snap-align: start;
  }
}

@media (min-width: 481px) and (max-width: 749px) {
  .hs-sports-slider {
    margin-left: -2.4rem;
    margin-right: -2.4rem;
  }
  .hs-sport-grid {
    padding: 0 2.4rem;
    scroll-padding-inline-start: 2.4rem;
  }
}

.hs-sport-card {
  background: #ffffff;
  border-radius: var(--hs-radius, 12px);
  padding: 28px 20px 24px;
  text-align: center;
  box-shadow: var(--hs-shadow-sm, 0 2px 12px rgba(0,0,0,0.08));
  transition: box-shadow 0.2s ease, transform 0.2s ease;
  cursor: pointer;
  text-decoration: none;
  display: block;
  color: inherit;
}

.hs-sport-card:hover {
  box-shadow: var(--hs-shadow-md, 0 8px 28px rgba(0,0,0,0.14));
  transform: translateY(-2px);
}

.hs-sport-card__icon {
  font-size: 38px;
  margin-bottom: 14px;
  line-height: 1;
}

.hs-sport-card h3 {
  font-size: 18px;
  margin-bottom: 8px;
  color: var(--hs-dark, #111111);
}

.hs-sport-card p {
  font-size: 13px;
  color: var(--hs-mid, #6b6b6b);
  margin-bottom: 16px;
  line-height: 1.55;
}

/* Mobile slider: compactere cards */
@media (max-width: 749px) {
  .hs-sport-card {
    padding: 20px 16px 18px;
  }
  .hs-sport-card__icon { font-size: 32px; margin-bottom: 10px; }
  .hs-sport-card h3 { font-size: 16px; margin-bottom: 6px; }
  .hs-sport-card p { margin-bottom: 12px; }
}

.hs-sport-card__link {
  font-family: var(--font-heading-family);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--hs-red, #E63227);
  transition: color 0.2s;
}

.hs-sport-card:hover .hs-sport-card__link {
  color: var(--hs-red-dark, #b5201a);
}

/* ============================================================
   BRAND LOGOS
   ============================================================ */
.hs-brand-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 8px;
  padding: 0 12%;
}

.hs-brand-logo-item {
  flex: 1 1 0;
  min-width: 0;
  height: 80px;
  background: #ffffff;
  border: 1px solid var(--hs-border, #e0e0e0);
  border-radius: var(--hs-radius, 12px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  filter: grayscale(100%);
  opacity: 0.6;
  transition: filter 0.3s, opacity 0.3s, box-shadow 0.3s, transform 0.3s;
  cursor: default;
}

.hs-brand-logo-item:hover {
  filter: grayscale(0%);
  opacity: 1;
  box-shadow: var(--hs-shadow-md, 0 8px 28px rgba(0,0,0,0.14));
  transform: translateY(-3px);
}

.hs-brand-logo-item img {
  max-height: 44px;
  width: 100%;
  object-fit: contain;
}

/* ============================================================
   TEAM CTA BLOCK (used on sport pages)
   ============================================================ */
.hs-team-cta-block {
  background: var(--hs-dark, #111111);
  border-radius: var(--hs-radius, 12px);
  padding: 40px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  box-shadow: var(--hs-shadow-md, 0 8px 28px rgba(0,0,0,0.14));
}

.hs-team-cta-block h3 {
  color: #ffffff;
  font-size: 26px;
  margin-bottom: 8px;
}

.hs-team-cta-block p { color: rgba(255,255,255,0.7); margin: 0; }

/* ============================================================
   PAGE HERO (sport pages, info pages)
   ============================================================ */
.hs-page-hero {
  position: relative;
  background: linear-gradient(135deg, #111 60%, rgba(230,50,39,0.14) 100%);
  height: 280px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hs-page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      45deg,
      rgba(255,255,255,0.018) 0px,
      rgba(255,255,255,0.018) 1px,
      transparent 1px,
      transparent 44px
    );
  pointer-events: none;
}

.hs-page-hero::after {
  display: none;
}

.hs-page-hero__content {
  position: relative;
  z-index: 1;
  animation: hs-fadeInUp 0.55s ease both;
}

.hs-page-hero h1 {
  font-size: clamp(36px, 5vw, 62px);
  color: #ffffff;
  margin-bottom: 12px;
  text-transform: uppercase;
  font-weight: 900;
}

.hs-page-hero p {
  font-size: 18px;
  color: rgba(255,255,255,0.7);
  font-weight: 400;
  margin: 0;
}

/* ============================================================
   BRAND BADGES (sport pages)
   ============================================================ */
.hs-brand-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
}

.hs-brand-badge {
  padding: 8px 20px;
  background: #ffffff;
  border: 1px solid var(--hs-border, #e0e0e0);
  border-radius: 40px;
  font-family: var(--font-heading-family);
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--hs-grey, #3d3d3d);
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
  cursor: default;
}

.hs-brand-badge:hover {
  background: linear-gradient(135deg, var(--hs-red, #E63227) 0%, var(--hs-red-dark, #b5201a) 100%);
  color: #ffffff;
  border-color: var(--hs-red-dark, #b5201a);
  box-shadow: 0 4px 14px rgba(230,50,39,0.35);
  transform: translateY(-2px);
}

/* ============================================================
   CLUBS ROW (sport pages)
   ============================================================ */
.hs-clubs-row {
  background: var(--hs-light, #f4f4f4);
  border-radius: var(--hs-radius, 12px);
  padding: 20px 28px;
  margin-top: 32px;
  box-shadow: var(--hs-shadow-sm, 0 2px 12px rgba(0,0,0,0.08));
}

.hs-clubs-row__label {
  font-family: var(--font-body-family);
  font-weight: 600;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--hs-red, #E63227);
  margin-bottom: 8px;
}

.hs-clubs-row__list {
  font-family: var(--font-heading-family);
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--hs-mid, #6b6b6b);
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.hs-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.hs-contact-info h3 { font-size: 22px; margin-bottom: 16px; }

.hs-hours-table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0 24px;
}

.hs-hours-table td {
  padding: 8px 0;
  border-bottom: 1px solid var(--hs-border, #e0e0e0);
  font-size: 14px;
}

.hs-hours-table td:first-child { font-weight: 600; color: var(--hs-dark, #111111); }
.hs-hours-table td:last-child { text-align: right; color: var(--hs-mid, #6b6b6b); }
.hs-hours-table tr.is-closed td:last-child { color: var(--hs-red, #E63227); }

.hs-map-embed {
  width: 100%;
  height: 220px;
  border: 0;
  border-radius: var(--hs-radius, 12px);
  margin-top: 16px;
}

.hs-contact-form h3 { font-size: 22px; margin-bottom: 16px; }

.hs-form-group {
  margin-bottom: 16px;
}

.hs-form-group label {
  display: block;
  font-family: var(--font-heading-family);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--hs-dark, #111111);
  margin-bottom: 6px;
}

.hs-form-input,
.hs-form-select,
.hs-form-textarea {
  width: 100%;
  padding: 10px 14px;
  font-family: var(--font-body-family);
  font-size: 14px;
  border: 1px solid var(--hs-border, #e0e0e0);
  border-radius: var(--hs-radius-sm, 8px);
  background: #ffffff;
  color: var(--hs-grey, #3d3d3d);
  transition: border-color 0.2s;
}

.hs-form-input:focus,
.hs-form-select:focus,
.hs-form-textarea:focus {
  outline: none;
  border-color: var(--hs-red, #E63227);
}

/* Select dropdown — custom styled */
.hs-form-select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding-right: 40px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23E63227' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  cursor: pointer;
}

.hs-form-textarea { min-height: 140px; resize: vertical; }

.hs-form-success {
  background: #e8f5e9;
  color: #2e7d32;
  padding: 16px;
  border-radius: var(--hs-radius-sm, 8px);
  font-size: 14px;
}

/* ============================================================
   TIMELINE (over-ons) — exact v1 styling
   ============================================================ */
.hs-timeline {
  position: relative;
  padding-left: 28px;
}

.hs-timeline::before {
  content: '';
  position: absolute;
  left: 6px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--hs-border, #e0e0e0);
}

.hs-timeline-item {
  position: relative;
  margin-bottom: 32px;
}

.hs-timeline-item::before {
  content: '';
  position: absolute;
  left: -24px;
  top: 6px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--hs-red, #E63227);
  border: 2px solid #ffffff;
  box-shadow: 0 0 0 2px var(--hs-red, #E63227);
}

.hs-timeline-year {
  font-family: var(--font-heading-family);
  font-weight: 900;
  font-size: 22px;
  color: var(--hs-red, #E63227);
  line-height: 1;
  margin-bottom: 4px;
}

.hs-timeline-desc {
  font-size: 15px;
  color: var(--hs-mid, #6b6b6b);
  margin: 0;
}

/* ============================================================
   TEAM GRID (medewerkers)
   ============================================================ */
.hs-team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.hs-team-card {
  background: #ffffff;
  border-radius: var(--hs-radius, 12px);
  padding: 28px 20px;
  text-align: center;
  box-shadow: var(--hs-shadow-sm, 0 2px 12px rgba(0,0,0,0.08));
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.hs-team-card:hover {
  box-shadow: var(--hs-shadow-md, 0 8px 28px rgba(0,0,0,0.14));
  transform: translateY(-3px);
}

.hs-team-card__avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: 0 auto 16px;
  overflow: hidden;
}

.hs-team-card__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hs-team-card__initials {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--hs-red, #E63227), var(--hs-red-dark, #b5201a));
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading-family);
  font-weight: 900;
  font-size: 24px;
  text-transform: uppercase;
  margin: 0 auto 16px;
}

.hs-team-card__name {
  font-family: var(--font-heading-family);
  font-weight: 900;
  font-size: 16px;
  text-transform: uppercase;
  color: var(--hs-dark, #111111);
  margin-bottom: 4px;
}

.hs-team-card__role {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--hs-red, #E63227);
  margin-bottom: 12px;
}

.hs-team-card__bio {
  font-size: 13px;
  color: var(--hs-mid, #6b6b6b);
  line-height: 1.6;
}

/* ============================================================
   USP ICON CARDS (teamkleding)
   ============================================================ */
.hs-usp-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}

.hs-usp-card {
  background: var(--hs-light, #f4f4f4);
  border-radius: var(--hs-radius, 12px);
  padding: 28px 24px;
  text-align: center;
  box-shadow: var(--hs-shadow-sm, 0 2px 12px rgba(0,0,0,0.08));
}

.hs-usp-card__icon {
  margin-bottom: 16px;
}

.hs-usp-card h4 {
  font-size: 16px;
  margin-bottom: 6px;
  color: var(--hs-dark, #111111);
}

.hs-usp-card p {
  font-size: 13px;
  color: var(--hs-mid, #6b6b6b);
  margin: 0;
}

/* ============================================================
   CLUB LOGO GRID (verenigingen)
   ============================================================ */
.hs-club-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 32px;
}

.hs-club-card {
  background: #ffffff;
  border: 1px solid var(--hs-border, #e0e0e0);
  border-radius: var(--hs-radius, 12px);
  padding: 20px 16px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100px;
  transition: box-shadow 0.2s, transform 0.2s;
  text-decoration: none;
  color: inherit;
}

.hs-club-card:hover {
  box-shadow: var(--hs-shadow-md, 0 8px 28px rgba(0,0,0,0.14));
  transform: translateY(-2px);
}

.hs-club-card img {
  max-height: 60px;
  max-width: 100%;
  object-fit: contain;
  margin-bottom: 8px;
}

.hs-club-card__placeholder {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--hs-light, #f4f4f4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading-family);
  font-weight: 900;
  font-size: 18px;
  color: var(--hs-mid, #6b6b6b);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.hs-club-card__name {
  font-family: var(--font-heading-family);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--hs-grey, #3d3d3d);
}

/* ============================================================
   ORDER BOX (sportprijzen)
   ============================================================ */
.hs-order-box {
  background: var(--hs-dark, #111111);
  border-radius: var(--hs-radius, 12px);
  padding: 40px;
  box-shadow: var(--hs-shadow-md, 0 8px 28px rgba(0,0,0,0.14));
  align-self: center;
}

.hs-order-box h3 { color: #ffffff; font-size: 22px; margin-bottom: 12px; }
.hs-order-box p { color: rgba(255,255,255,0.7); font-size: 14px; line-height: 1.6; margin-bottom: 16px; }
.hs-order-box a { color: #ffffff; }

/* ============================================================
   CONTACT BLOCK (verenigingen, inline CTA)
   ============================================================ */
.hs-contact-block {
  max-width: 640px;
}

.hs-contact-block__title {
  font-size: 24px;
  margin-bottom: 12px;
}

.hs-contact-block__details {
  margin-top: 20px;
}

.hs-contact-block__details p {
  font-size: 14px;
  color: var(--hs-grey, #3d3d3d);
  margin: 0 0 6px;
}

.hs-contact-block__details a {
  color: var(--hs-red, #E63227);
  text-decoration: none;
}

.hs-contact-block__details a:hover {
  text-decoration: underline;
}

/* ============================================================
   BRAND CATEGORY (merken page)
   ============================================================ */
.hs-brand-category { margin-top: 40px; }

.hs-brand-category__title {
  font-family: var(--font-heading-family);
  font-weight: 900;
  font-size: 20px;
  text-transform: uppercase;
  color: var(--hs-dark, #111111);
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--hs-border, #e0e0e0);
}

/* ============================================================
   PHOTO SECTION (over-ons, dark background)
   ============================================================ */
.hs-photo-section {
  margin-top: 32px;
}

.hs-photo-section img {
  width: 100%;
  border-radius: var(--hs-radius, 12px);
  box-shadow: var(--hs-shadow-sm, 0 2px 12px rgba(0,0,0,0.08));
}

.hs-history-image img {
  width: 100%;
  border-radius: var(--hs-radius, 12px);
  box-shadow: var(--hs-shadow-sm, 0 2px 12px rgba(0,0,0,0.08));
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hs-sport-grid { grid-template-columns: repeat(3, 1fr); }
  .hs-usp-strip .hs-container { grid-template-columns: repeat(2, 1fr); }
  .hs-team-grid { grid-template-columns: repeat(3, 1fr); }
  .hs-club-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 749px) {
  .hs-section { padding: 60px 0; }

  .hs-hero { min-height: 440px; padding: 64px 0; }
  .hs-hero h1 { font-size: 36px; }
  .hs-hero__cta { flex-direction: column; }
  .hs-hero__cta .hs-btn { text-align: center; }


  .hs-page-hero { height: 210px; }
  .hs-page-hero h1 { font-size: 32px; }
  .hs-page-hero p { font-size: 15px; }

  .hs-sport-grid { grid-template-columns: repeat(2, 1fr); }

  .hs-two-col,
  .hs-two-col--3-2 { grid-template-columns: 1fr; }

  .hs-team-cta-block {
    flex-direction: column;
    align-items: flex-start;
    padding: 28px 24px;
  }

  .hs-usp-strip .hs-container { grid-template-columns: repeat(2, 1fr); }

  .hs-brand-logos { gap: 16px; padding: 0 8%; }
  .hs-brand-logo-item { height: 70px; padding: 10px 12px; }
  .hs-brand-logo-item img { max-height: 40px; }

  .hs-contact-grid { grid-template-columns: 1fr; }
  .hs-map-embed { height: 160px; }
  .hs-hours-table td { padding: 6px 0; font-size: 1.3rem; }
  .hs-form-group { margin-bottom: 12px; }
  .hs-team-grid { grid-template-columns: repeat(2, 1fr); }
  .hs-usp-cards { grid-template-columns: 1fr; }
  .hs-club-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .hs-section { padding: 48px 0; }

  .hs-hero { min-height: 380px; padding: 48px 0; }
  .hs-hero h1 { font-size: clamp(28px, 8vw, 36px); }

  .hs-hero__cta .hs-btn { width: 100%; min-height: 44px; }
  .hs-hero__sub { font-size: 15px; }

  .hs-page-hero { height: 180px; }
  .hs-page-hero h1 { font-size: 26px; }
  .hs-page-hero p { font-size: 14px; }

  .hs-usp-strip .hs-container { grid-template-columns: 1fr; gap: 12px; }
  .hs-usp-strip { padding: 20px 0; }

  .hs-brand-logos { gap: 10px; padding: 0 5%; }
  .hs-brand-logo-item { flex: 0 0 calc(33.333% - 8px); height: 60px; padding: 8px 10px; }
  .hs-brand-logo-item img { max-height: 36px; }

  .hs-feature-block { padding: 24px 20px; }
  .hs-feature-block h3 { font-size: 22px; }

  .hs-credo-box { padding: 24px 20px; }
  .hs-credo-box__text { font-size: 18px; letter-spacing: 1px; }

  .hs-highlight-box { padding: 24px 20px; }
  .hs-highlight-box h3 { font-size: 20px; }

  .hs-team-cta-block { padding: 24px 20px; }
  .hs-team-cta-block h3 { font-size: 22px; }

  .hs-btn { min-height: 44px; padding: 12px 24px; }

  .hs-team-grid { grid-template-columns: 1fr; }
  .hs-club-grid { grid-template-columns: 1fr; }
  .hs-order-box { padding: 28px 20px; }
  .hs-map-embed { height: 140px; }
}
