/* ============================================
   TRAININGEN PAGE — Specific Styles
   Matches growsult.com/trainingen/ layout
   ============================================ */

/* ---------- Hero ---------- */
.trainingen-hero {
  position: relative;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.trainingen-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.trainingen-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.trainingen-hero__content {
  position: relative;
  z-index: 2;
  color: #fff;
  padding: 80px 20px 60px;
  max-width: 800px;
}

.trainingen-hero__content h1 {
  font-size: 42px;
  font-weight: 700;
  margin: 0 0 16px;
  color: #fff;
}

.trainingen-hero__content p {
  font-size: 17px;
  line-height: 1.7;
  opacity: 0.92;
  margin: 0;
}

.trainingen-hero__ctas {
  display: flex;
  gap: 14px;
  margin-top: 28px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-white {
  background: #fff;
  color: #0071bc;
  border: 2px solid #fff;
  font-weight: 700;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.3s;
  font-family: 'Manrope', sans-serif;
  text-decoration: none;
}

.btn-white:hover {
  background: transparent;
  color: #fff;
  opacity: 1;
}

.btn-outline-white {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.6);
  font-weight: 700;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.3s;
  font-family: 'Manrope', sans-serif;
  text-decoration: none;
}

.btn-outline-white:hover {
  background: #fff;
  color: #0071bc;
  border-color: #fff;
  opacity: 1;
}


/* ---------- USPs ---------- */
.trainingen-usps {
  padding: 36px 0;
  background: #fff;
  border-bottom: 1px solid #eef2f7;
}

.usps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.usp-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.usp-item__icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: linear-gradient(135deg, #e8f4fd, #ecfaf9);
  color: #0071bc;
}

.usp-item__icon svg {
  width: 20px;
  height: 20px;
}

.usp-item__text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.usp-item__text strong {
  font-size: 14px;
  font-weight: 700;
  color: #222;
}

.usp-item__text span {
  font-size: 13px;
  color: #666;
  line-height: 1.5;
}


/* ---------- Main Layout ---------- */
.trainingen-content {
  padding: 50px 0 40px;
  background: #fff;
}

.trainingen-layout {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 40px;
  align-items: start;
}


/* ---------- Sidebar ---------- */
.trainingen-sidebar {
  position: sticky;
  top: 100px;
}

.sidebar-block {
  background: #fff;
  padding: 0 0 20px 0;
  margin-bottom: 0;
}

.sidebar-block__title {
  font-size: 18px;
  font-weight: 700;
  color: #222;
  margin: 0 0 14px;
  padding: 0;
  border-bottom: none;
}

/* Search */
.filter-search-wrap {
  position: relative;
}

.filter-search-wrap svg {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  fill: #999;
  pointer-events: none;
}

.filter-search {
  width: 100%;
  padding: 10px 14px 10px 36px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 14px;
  font-family: 'Manrope', sans-serif;
  outline: none;
  transition: border-color 0.2s;
  box-sizing: border-box;
}

.filter-search:focus {
  border-color: #0071bc;
}

/* Checkboxes */
.filter-checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.filter-checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 14px;
  color: #333;
}

.filter-checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: #0071bc;
  cursor: pointer;
  flex-shrink: 0;
}

.filter-checkbox__count {
  color: #999;
  font-size: 13px;
  margin-left: auto;
}

/* Range sliders */
.filter-range {
  padding: 4px 0;
}

.filter-range input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  background: linear-gradient(to right, #0071bc 0%, #5acac8 50%, #ddd 50%);
  border-radius: 3px;
  outline: none;
  position: relative;
  z-index: 2;
}

.filter-range input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #0071bc;
  cursor: pointer;
  border: 3px solid #fff;
  box-shadow: 0 1px 4px rgba(0,0,0,0.2);
}

.filter-range input[type="range"]::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #0071bc;
  cursor: pointer;
  border: 3px solid #fff;
  box-shadow: 0 1px 4px rgba(0,0,0,0.2);
}

.filter-range__value {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: #666;
  margin-top: 4px;
}

.filter-reset-btn {
  background: none;
  border: none;
  color: #999;
  font-size: 13px;
  font-family: 'Manrope', sans-serif;
  cursor: pointer;
  padding: 2px 0;
  transition: color 0.2s;
}

.filter-reset-btn:hover {
  color: #0071bc;
}

/* Hulp nodig sidebar */
.sidebar-hulp {
  background: linear-gradient(135deg, #0071bc, #5acac8);
  border-radius: 12px;
  padding: 28px 24px;
  color: #fff;
  text-align: center;
}

.sidebar-hulp__heading {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 12px;
}

.sidebar-hulp__text {
  font-size: 14px;
  line-height: 1.6;
  margin: 0 0 18px;
  opacity: 0.92;
}

.sidebar-hulp__contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sidebar-hulp__contact a {
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 700;
  padding: 8px;
  background: rgba(255,255,255,0.15);
  border-radius: 8px;
  transition: background 0.2s;
}

.sidebar-hulp__contact a:hover {
  background: rgba(255,255,255,0.25);
}

.sidebar-hulp__contact svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
  flex-shrink: 0;
}


/* ---------- Main Content ---------- */
.trainingen-main__header {
  display: flex;
  flex-direction: column;
  margin-bottom: 24px;
  gap: 0;
}

.trainingen-count {
  font-size: 15px;
  color: #666;
}

.trainingen-count strong {
  color: #333;
}

.trainingen-sort {
  flex: 1;
}

.trainingen-sort label {
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: #222;
  margin-bottom: 8px;
}

.trainingen-sort select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 15px;
  font-family: 'Manrope', sans-serif;
  background: #fff;
  cursor: pointer;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
  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='%23666' stroke-width='2' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
}

.trainingen-sort select:focus {
  border-color: #0071bc;
}


/* ---------- Training Cards — List Style ---------- */
.trainingen-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.t-card {
  position: relative;
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 14px;
  padding: 24px 28px;
  text-decoration: none;
  color: inherit;
  display: flex;
  align-items: center;
  gap: 20px;
  transition: all 0.3s ease;
  overflow: hidden;
}

.t-card:hover {
  background: linear-gradient(135deg, #1a8fc4 0%, #3cbbb8 100%);
  border-color: transparent;
  box-shadow: 0 8px 28px rgba(0,113,188,0.25);
}

/* Card content (left side) */
.t-card__body {
  flex: 1;
  min-width: 0;
}

.t-card__title {
  font-size: 22px;
  font-weight: 700;
  color: #222;
  margin: 0 0 8px;
  line-height: 1.3;
  transition: color 0.3s;
}

.t-card:hover .t-card__title {
  color: #fff;
}

.t-card__rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
}

.t-card__stars {
  display: flex;
  gap: 2px;
}

.t-card__stars svg {
  width: 16px;
  height: 16px;
}

.t-card__stars .star-filled {
  fill: #FFB800;
}

.t-card__stars .star-empty {
  fill: #ddd;
}

.t-card__reviews {
  font-size: 14px;
  color: #666;
  transition: color 0.3s;
}

.t-card:hover .t-card__reviews {
  color: rgba(255,255,255,0.85);
}

.t-card__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.t-card__badge {
  display: inline-flex;
  align-items: center;
  gap: 0;
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 700;
  background: #e0f0f8;
  color: #1a6d96;
  transition: all 0.3s;
}

.t-card__badge--price {
  background: #ddf1ec;
  color: #1a7a5a;
}

.t-card__badge--duration {
  background: #fef0db;
  color: #9a6b1e;
}

.t-card:hover .t-card__badge {
  background: rgba(255,255,255,0.2);
  color: #fff;
}

/* Round avatar on right (visible on hover) */
.t-card__avatar {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  opacity: 0;
  transform: translateX(20px);
  transition: opacity 0.35s ease, transform 0.35s ease;
  border: 3px solid rgba(255,255,255,0.5);
}

.t-card:hover .t-card__avatar {
  opacity: 1;
  transform: translateX(0);
}


/* ---------- Load More ---------- */
.trainingen-loadmore {
  text-align: center;
  margin-top: 32px;
}

.trainingen-loadmore .btn {
  min-width: 200px;
}

/* No results */
.trainingen-no-results {
  text-align: center;
  padding: 60px 20px;
  color: #888;
  grid-column: 1 / -1;
}

.trainingen-no-results h3 {
  color: #333;
  margin: 0 0 8px;
}

.trainingen-no-results p {
  margin: 0;
}


/* ---------- Ontdek Section ---------- */
.trainingen-ontdek {
  padding: 60px 0;
  background: #f7f7f7;
}

.ontdek-header {
  text-align: center;
  margin-bottom: 36px;
}

.trainingen-ontdek h2 {
  font-size: 32px;
  font-weight: 700;
  color: #0071bc;
  margin: 0 0 10px;
  text-align: center;
}

.ontdek-subtitle {
  font-size: 16px;
  line-height: 1.6;
  color: #555;
  margin: 0;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.ontdek-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 900px;
  margin: 0 auto;
}

.ontdek-grid--cta {
  grid-template-columns: 1fr;
  max-width: 960px;
}

.ontdek-grid--cta .ontdek-card:not(.ontdek-card--featured) {
  /* Small cards in a sub-grid */
}

.ontdek-grid--cta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 24px;
}

.ontdek-card--featured {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, #0071bc, #5acac8);
  color: #fff;
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.ontdek-card--featured .ontdek-card__icon {
  width: 44px;
  height: 44px;
  margin-bottom: 16px;
  color: rgba(255,255,255,.85);
}

.ontdek-card--featured .ontdek-card__title {
  color: #fff;
  font-size: 24px;
}

.ontdek-card--featured .ontdek-card__desc {
  color: rgba(255,255,255,.9);
  font-size: 16px;
  max-width: 620px;
}

.ontdek-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  padding: 12px 24px;
  background: #fff;
  color: #0071bc;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 700;
  transition: background .2s, transform .2s;
}

.ontdek-card--featured:hover .ontdek-card__cta {
  background: #f0f4f8;
  transform: translateX(4px);
}

.ontdek-card__icon {
  width: 32px;
  height: 32px;
  margin-bottom: 12px;
  color: #0071bc;
}

.ontdek-card__icon svg {
  width: 100%;
  height: 100%;
}

.ontdek-card {
  background: #fff;
  border-radius: 12px;
  padding: 32px 28px;
  text-decoration: none;
  color: inherit;
  transition: transform 0.25s, box-shadow 0.25s;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.ontdek-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.ontdek-card__title {
  font-size: 22px;
  font-weight: 700;
  color: #0071bc;
  margin: 0 0 12px;
}

.ontdek-card__desc {
  font-size: 15px;
  line-height: 1.7;
  color: #555;
  margin: 0 0 18px;
}

.ontdek-card__link {
  font-size: 14px;
  font-weight: 700;
  color: #0071bc;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.ontdek-card:hover .ontdek-card__link {
  gap: 10px;
}


/* ---------- Stappenplan Accordion ---------- */
.trainingen-stappenplan {
  padding: 60px 0 80px;
  background: #fff;
}

.trainingen-stappenplan h2 {
  font-size: 32px;
  font-weight: 700;
  color: #0071bc;
  margin: 0 0 32px;
  text-align: center;
}

.stappenplan-accordion {
  max-width: 800px;
  margin: 0 auto;
}

.stap-item {
  border: 1px solid #e8e8e8;
  border-radius: 10px;
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color 0.2s;
}

.stap-item.active {
  border-color: #0071bc;
}

.stap-item__header {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  cursor: pointer;
  background: #fff;
  border: none;
  width: 100%;
  text-align: left;
  font-family: 'Manrope', sans-serif;
  transition: background 0.2s;
}

.stap-item__header:hover {
  background: #f7f9fc;
}

.stap-item__number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0071bc, #5acac8);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  flex-shrink: 0;
}

.stap-item__title {
  font-size: 16px;
  font-weight: 700;
  color: #333;
  flex: 1;
}

.stap-item__arrow {
  font-size: 18px;
  color: #999;
  transition: transform 0.25s;
  flex-shrink: 0;
}

.stap-item.active .stap-item__arrow {
  transform: rotate(180deg);
  color: #0071bc;
}

.stap-item__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.stap-item.active .stap-item__body {
  max-height: 200px;
}

.stap-item__body p {
  padding: 0 20px 18px 66px;
  margin: 0;
  font-size: 15px;
  line-height: 1.7;
  color: #555;
}


/* ---------- Breadcrumbs ---------- */
.breadcrumbs {
  background: #f7f9fc;
  padding: 14px 0;
}

.breadcrumbs .container {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
}

.breadcrumbs a {
  color: #0071bc;
  text-decoration: none;
  transition: color 0.2s;
}

.breadcrumbs a:hover {
  text-decoration: underline;
}

.breadcrumbs__sep {
  color: #999;
  font-size: 11px;
}

.breadcrumbs__current {
  color: #666;
}


/* ---------- Trust Bar ---------- */
.trainingen-trust-bar {
  background: linear-gradient(135deg, #f0f7ff 0%, #eefaf9 100%);
  padding: 18px 0;
  border-bottom: 1px solid #e8f0f7;
}

.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
}

.trust-bar-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  color: #444;
}

.trust-bar-item strong {
  color: #0071bc;
  font-weight: 700;
}

.trust-bar-stars {
  display: flex;
  gap: 2px;
}

.trust-bar-stars svg {
  width: 18px;
  height: 18px;
}

.trust-bar-stars .star-filled {
  fill: #FFB800;
}

.trust-bar-stars .star-empty {
  fill: #ddd;
}

.trust-bar-sep {
  width: 1px;
  height: 20px;
  background: #d0dde8;
}

.trust-bar-quote em {
  font-style: italic;
  color: #555;
  font-size: 13.5px;
}


/* ---------- Card Description ---------- */
.t-card__desc {
  font-size: 14px;
  line-height: 1.5;
  color: #666;
  margin: 0 0 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.3s;
}

/* ---------- Card Bottom: Date + Urgency + CTA ---------- */
.t-card__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 12px;
  gap: 12px;
}

.t-card__schedule {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.t-card__date {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  font-weight: 600;
  color: #555;
  transition: color 0.3s;
}

.t-card:hover .t-card__date {
  color: rgba(255,255,255,0.85);
}

.t-card__date svg {
  opacity: 0.6;
}

.t-card__urgency {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  font-weight: 700;
  color: #d68a00;
  background: #fff8e6;
  padding: 3px 10px;
  border-radius: 20px;
  transition: all 0.3s;
}

.t-card__urgency--low {
  color: #d63031;
  background: #ffeaea;
}

.t-card:hover .t-card__urgency {
  background: rgba(255,255,255,0.2);
  color: #fff;
}

.t-card:hover .t-card__desc {
  color: rgba(255,255,255,0.8);
}


/* ---------- Card CTA ---------- */
.t-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 700;
  color: #0071bc;
  margin-top: 10px;
  transition: color 0.3s, gap 0.25s;
}

.t-card:hover .t-card__cta {
  color: #fff;
  gap: 10px;
}


/* ---------- Active Filter Chips ---------- */
.active-filters {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.active-filters:empty {
  display: none;
  margin: 0;
}

.filter-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: #e8f4fd;
  color: #0071bc;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  font-family: 'Manrope', sans-serif;
  transition: background 0.2s;
}

.filter-chip:hover {
  background: #d0e8f7;
}

.filter-chip__x {
  font-size: 15px;
  line-height: 1;
  opacity: 0.5;
  transition: opacity 0.2s;
}

.filter-chip:hover .filter-chip__x {
  opacity: 1;
}

.clear-all-btn {
  background: none;
  border: none;
  color: #999;
  font-size: 13px;
  font-family: 'Manrope', sans-serif;
  cursor: pointer;
  padding: 6px 8px;
  transition: color 0.2s;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.clear-all-btn:hover {
  color: #e74c3c;
}


/* ---------- Results Count ---------- */
.trainingen-results-count {
  font-size: 14px;
  color: #888;
  margin-bottom: 16px;
}

.trainingen-results-count strong {
  color: #333;
  font-weight: 700;
}


/* ---------- Card Entrance Animation ---------- */
@keyframes cardFadeIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.t-card {
  animation: cardFadeIn 0.4s ease both;
}

.t-card:nth-child(1)  { animation-delay: 0s; }
.t-card:nth-child(2)  { animation-delay: 0.04s; }
.t-card:nth-child(3)  { animation-delay: 0.08s; }
.t-card:nth-child(4)  { animation-delay: 0.12s; }
.t-card:nth-child(5)  { animation-delay: 0.16s; }
.t-card:nth-child(6)  { animation-delay: 0.20s; }
.t-card:nth-child(7)  { animation-delay: 0.24s; }
.t-card:nth-child(8)  { animation-delay: 0.28s; }
.t-card:nth-child(9)  { animation-delay: 0.32s; }
.t-card:nth-child(10) { animation-delay: 0.36s; }
.t-card:nth-child(n+11) { animation-delay: 0.40s; }


/* ---------- Mobile Filter Drawer ---------- */
.filter-drawer-overlay {
  display: none;
}

.filter-drawer-toggle {
  display: none;
}

.sidebar-drawer-header {
  display: none;
}


/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .trainingen-layout {
    grid-template-columns: 260px 1fr;
    gap: 28px;
  }

  .usps-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}


/* ---------- Sticky Mobile CTA ---------- */
.sticky-mobile-cta {
  display: none;
}

@media (max-width: 768px) {
  .sticky-mobile-cta {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    gap: 8px;
    padding: 10px 16px;
    padding-bottom: calc(10px + env(safe-area-inset-bottom, 0px));
    background: #fff;
    box-shadow: 0 -2px 12px rgba(0,0,0,.12);
    transform: translateY(100%);
    transition: transform .3s ease;
  }

  .sticky-mobile-cta.visible {
    transform: translateY(0);
  }

  .sticky-cta-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 10px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    font-family: 'Manrope', sans-serif;
    text-decoration: none;
    white-space: nowrap;
    transition: background .2s, color .2s;
  }

  .sticky-cta-primary {
    background: linear-gradient(135deg, #0071bc, #5acac8);
    color: #fff;
  }

  .sticky-cta-primary:hover {
    opacity: .9;
  }

  .sticky-cta-secondary {
    background: #f0f4f8;
    color: #0071bc;
    border: 1px solid #d0dde8;
  }

  .sticky-cta-secondary:hover {
    background: #e4eaf0;
  }

  /* Add bottom padding to body so content isn't hidden behind sticky bar */
  body {
    padding-bottom: 70px;
  }
}

@media (max-width: 768px) {
  .trainingen-layout {
    grid-template-columns: 1fr;
  }

  .usps-grid {
    grid-template-columns: 1fr 1fr;
    gap: 18px;
  }

  /* Mobile Filter Drawer */
  .filter-drawer-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 12px;
    background: #f7f9fc;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-family: 'Manrope', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #333;
    cursor: pointer;
    margin-bottom: 20px;
  }

  .filter-drawer-toggle svg {
    width: 18px;
    height: 18px;
    fill: #0071bc;
  }

  .filter-count-badge {
    background: #0071bc;
    color: #fff;
    font-size: 12px;
    padding: 2px 8px;
    border-radius: 10px;
    font-weight: 700;
  }

  .trainingen-sidebar {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: 320px;
    max-width: 85vw;
    z-index: 1000;
    background: #fff;
    padding: 20px;
    overflow-y: auto;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    box-shadow: 4px 0 20px rgba(0,0,0,0.15);
  }

  .trainingen-sidebar.drawer-open {
    transform: translateX(0);
  }

  .filter-drawer-overlay.active {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.4);
    z-index: 999;
  }

  .sidebar-drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    padding-bottom: 14px;
    border-bottom: 1px solid #eee;
  }

  .sidebar-drawer-header h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    color: #222;
  }

  .sidebar-drawer-close {
    background: none;
    border: none;
    font-size: 24px;
    color: #666;
    cursor: pointer;
    padding: 4px;
    line-height: 1;
    font-family: 'Manrope', sans-serif;
  }

  .trainingen-hero__content h1 {
    font-size: 30px;
  }

  .trainingen-hero__content {
    padding: 50px 16px 40px;
  }

  .ontdek-grid,
  .ontdek-grid--cta {
    grid-template-columns: 1fr;
  }

  .ontdek-card--featured {
    padding: 28px 22px;
  }

  .ontdek-card--featured .ontdek-card__title {
    font-size: 20px;
  }

  .t-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .t-card__avatar {
    width: 60px;
    height: 60px;
    position: absolute;
    top: 16px;
    right: 16px;
    opacity: 1;
    transform: none;
  }

  .t-card__body {
    padding-right: 70px;
    width: 100%;
  }

  .t-card__title {
    font-size: 18px;
  }

  .trust-bar-sep {
    display: none;
  }

  .trust-bar-inner {
    gap: 16px;
  }

  .trust-bar-item {
    font-size: 14px;
  }

  .trust-bar-quote {
    display: none;
  }
}

@media (max-width: 480px) {
  .trainingen-hero__content h1 {
    font-size: 26px;
  }

  .t-card {
    padding: 18px 16px;
  }

  .t-card__badges {
    gap: 6px;
  }

  .breadcrumbs .container {
    font-size: 13px;
  }
}
