/* ===================================================
   HH THEME — MAIN.CSS
   Alle klassen 1:1 uit mockup_b_bold.html
=================================================== */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: var(--hh-font-body);
  background: var(--hh-bg);
  color: var(--hh-text);
  line-height: 1.6;
  font-size: 16px;
}

a { color: inherit; }
img { max-width: 100%; height: auto; }

/* -----------------------------------------------
   LAYOUT HELPERS
----------------------------------------------- */
.hh-container {
  max-width: var(--hh-max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.hh-bg-white { background: var(--hh-white); }

/* -----------------------------------------------
   TAGS / LABELS
----------------------------------------------- */
.hh-tag {
  display: inline-block;
  background: var(--hh-primary);
  color: #fff;
  font-family: var(--hh-font-head);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 2px;
  text-decoration: none;
}
.hh-tag--outline {
  background: transparent;
  border: 2px solid var(--hh-primary);
  color: var(--hh-primary);
}
.hh-tag--outline:hover { background: var(--hh-primary); color: #fff; }

/* -----------------------------------------------
   HEADER
----------------------------------------------- */
.hh-header {
  background: var(--hh-header-bg);
  position: sticky;
  top: 0;
  z-index: 100;
}
.hh-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  max-width: var(--hh-max-width);
  margin: 0 auto;
  height: 64px;
}
.hh-header__logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}
.hh-header__logo-img {
  height: 44px;
  width: auto;
  display: block;
}

/* NAV */
.hh-nav {
  display: flex;
  align-items: center;
  gap: 0;
  list-style: none;
}
.hh-nav__item a {
  font-family: var(--hh-font-head);
  font-weight: 600;
  font-size: 13.5px;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  padding: 8px 14px;
  display: block;
  transition: color 0.15s ease;
  letter-spacing: 0.01em;
}
.hh-nav__item a:hover,
.hh-nav__item--active a { color: var(--hh-white); }
.hh-nav__item--cta a {
  background: var(--hh-primary);
  color: #fff;
  border-radius: 4px;
  margin-left: 8px;
  padding: 7px 16px;
}
.hh-nav__item--cta a:hover { background: var(--hh-primary-dark); }

/* -----------------------------------------------
   HERO
----------------------------------------------- */
.hh-hero {
  background: var(--hh-header-bg);
  padding: 64px 24px 72px;
}
.hh-hero__inner {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 48px;
  align-items: center;
}
.hh-hero__tag { margin-bottom: 20px; }
.hh-hero__title {
  font-family: var(--hh-font-head);
  font-weight: 900;
  font-size: 42px;
  line-height: 1.1;
  color: var(--hh-white);
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}
.hh-hero__title em { font-style: normal; color: var(--hh-primary); }
.hh-hero__teaser {
  font-size: 16.5px;
  line-height: 1.65;
  color: rgba(255,255,255,0.7);
  margin-bottom: 28px;
  max-width: 480px;
}
.hh-hero__cta { display: flex; gap: 0; flex-wrap: wrap; }

/* BUTTONS */
.hh-btn {
  display: inline-block;
  font-family: var(--hh-font-head);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.02em;
  padding: 13px 28px;
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.15s ease, transform 0.1s ease;
}
.hh-btn--primary { background: var(--hh-primary); color: #fff; }
.hh-btn--primary:hover { background: var(--hh-primary-dark); transform: translateY(-1px); }
.hh-btn--ghost {
  border: 2px solid rgba(255,255,255,0.35);
  color: rgba(255,255,255,0.8);
  margin-left: 12px;
}
.hh-btn--ghost:hover { border-color: rgba(255,255,255,0.7); color: #fff; }

/* HERO IMG PLACEHOLDER */
.hh-hero__img-placeholder {
  background: linear-gradient(135deg, #4E4271 0%, #7A6BAA 40%, #2D2540 100%);
  border-radius: 6px;
  height: 280px;
  position: relative;
  overflow: hidden;
}
.hh-hero__img-placeholder--variant-b { background: linear-gradient(135deg, #d1c4e9 0%, #6B5B95 100%); }
.hh-hero__img-placeholder--variant-c { background: linear-gradient(135deg, #b39ddb 0%, #4527a0 100%); }
.hh-hero__img-placeholder--variant-d { background: linear-gradient(135deg, #9575cd 0%, #311b92 100%); }
.hh-hero__img-placeholder--variant-e { background: linear-gradient(135deg, #ede7f6 0%, #9e79c9 100%); }
.hh-hero__img-placeholder--variant-f { background: linear-gradient(135deg, #7c5cbf 0%, #3d1d8f 100%); }

/* -----------------------------------------------
   AUTHOR INTRO
----------------------------------------------- */
.hh-author-intro {
  background: var(--hh-accent);
  border-left: 5px solid var(--hh-primary);
  padding: 28px 32px;
}
.hh-author-intro__inner {
  display: flex;
  align-items: center;
  gap: 24px;
}
.hh-author-intro__avatar-link { flex-shrink: 0; display: block; }
.hh-author-intro__avatar {
  width: 72px; height: 72px;
  border-radius: 50%;
  display: block;
}
.hh-author-intro__name {
  font-family: var(--hh-font-head);
  font-weight: 900;
  font-size: 18px;
  color: var(--hh-text);
  margin-bottom: 4px;
}
.hh-author-intro__name a { color: inherit; text-decoration: none; }
.hh-author-intro__name a:hover { color: var(--hh-primary); }
.hh-author-intro__bio { font-size: 14.5px; color: var(--hh-text-muted); line-height: 1.5; margin-bottom: 10px; }
.hh-author-intro__more {
  display: inline-block;
  font-family: var(--hh-font-head);
  font-size: 13px;
  font-weight: 700;
  color: var(--hh-primary);
  text-decoration: none;
  letter-spacing: 0.02em;
}
.hh-author-intro__more:hover { text-decoration: underline; }

/* -----------------------------------------------
   RUBRIEKEN LEISTE
----------------------------------------------- */
.hh-rubrieken { background: var(--hh-primary); }
.hh-rubrieken__inner {
  max-width: var(--hh-max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: stretch;
  overflow-x: auto;
}
.hh-rubriek-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: 1 1 0;
  padding: 20px 12px;
  text-decoration: none;
  color: rgba(255,255,255,0.75);
  border-right: 1px solid rgba(255,255,255,0.12);
  transition: background 0.15s ease, color 0.15s ease;
}
.hh-rubriek-item:first-child { border-left: 1px solid rgba(255,255,255,0.12); }
.hh-rubriek-item:hover,
.hh-rubriek-item--active { background: rgba(255,255,255,0.1); color: #fff; }
.hh-rubriek-item__icon { display: flex; align-items: center; justify-content: center; width: 24px; height: 24px; margin: 0 auto 8px; }
.hh-rubriek-item__icon svg { display: block; flex-shrink: 0; }
.hh-rubriek-item__label {
  font-family: var(--hh-font-head);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}

/* -----------------------------------------------
   SECTION HEADERS
----------------------------------------------- */
.hh-section { padding: 56px 24px; }
.hh-section--tight { padding: 40px 24px; }
.hh-section-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 28px;
}
.hh-section-header__title {
  font-family: var(--hh-font-head);
  font-weight: 900;
  font-size: 24px;
  letter-spacing: -0.02em;
  color: var(--hh-text);
}
.hh-section-header__link {
  font-family: var(--hh-font-head);
  font-weight: 700;
  font-size: 13px;
  color: var(--hh-primary);
  text-decoration: none;
}
.hh-section-header__link:hover { text-decoration: underline; }

/* -----------------------------------------------
   ARTIKEL-KAARTEN
----------------------------------------------- */
.hh-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.hh-card-grid--2 { grid-template-columns: repeat(2, 1fr); }
.hh-card {
  background: var(--hh-white);
  border-radius: 5px;
  overflow: hidden;
  border: 1px solid var(--hh-border);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.hh-card:hover { transform: translateY(-3px); box-shadow: 0 8px 28px rgba(107,91,149,0.15); }
.hh-card__img-link { display: block; text-decoration: none; }
.hh-card__img {
  height: 168px;
  background: linear-gradient(135deg, #c4bbd8 0%, #8a7daa 100%);
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 12px;
}
.hh-card__img--variant-b { background: linear-gradient(135deg, #d1c4e9 0%, #6B5B95 100%); }
.hh-card__img--variant-c { background: linear-gradient(135deg, #b39ddb 0%, #4527a0 100%); }
.hh-card__img--variant-d { background: linear-gradient(135deg, #9575cd 0%, #311b92 100%); }
.hh-card__img--variant-e { background: linear-gradient(135deg, #ede7f6 0%, #9e79c9 100%); }
.hh-card__img--variant-f { background: linear-gradient(135deg, #7c5cbf 0%, #3d1d8f 100%); }
.hh-card__img-label { font-size: 10px; color: rgba(255,255,255,0.5); font-family: var(--hh-font-head); letter-spacing: 0.05em; text-transform: uppercase; }
.hh-card__body { padding: 20px; }
.hh-card__tag { margin-bottom: 10px; }
.hh-card__title {
  font-family: var(--hh-font-head);
  font-weight: 800;
  font-size: 17px;
  line-height: 1.25;
  color: var(--hh-text);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.hh-card__title a { text-decoration: none; color: var(--hh-text); }
.hh-card__title a:hover { color: var(--hh-primary); }
.hh-card__excerpt {
  font-size: 13.5px;
  color: var(--hh-text-muted);
  line-height: 1.55;
  margin-bottom: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.hh-card__meta { font-size: 12px; color: var(--hh-text-muted); font-family: var(--hh-font-head); display: flex; gap: 14px; }

/* -----------------------------------------------
   ARTIKEL-PAGINA
----------------------------------------------- */
.hh-article-wrap {
  padding: 48px 24px 64px;
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 48px;
  align-items: start;
}
.hh-article__header { margin-bottom: 28px; }
.hh-article__category { margin-bottom: 14px; }
.hh-article__title {
  font-family: var(--hh-font-head);
  font-weight: 900;
  font-size: 36px;
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: var(--hh-text);
  margin-bottom: 16px;
}
.hh-article__meta {
  display: flex;
  gap: 6px;
  align-items: center;
  font-size: 13px;
  color: var(--hh-text-muted);
  font-family: var(--hh-font-head);
  font-weight: 500;
}
.hh-article__meta-dot { color: var(--hh-border); }
.hh-article__hero-img {
  height: 340px;
  background: linear-gradient(135deg, #4E4271 0%, #7A6BAA 50%, #2D2540 100%);
  border-radius: 5px;
  margin-bottom: 32px;
  position: relative;
  overflow: hidden;
}
.hh-article__hero-img--variant-b { background: linear-gradient(135deg, #d1c4e9 0%, #6B5B95 100%); }
.hh-article__hero-img--variant-c { background: linear-gradient(135deg, #b39ddb 0%, #4527a0 100%); }
.hh-article__hero-img--variant-d { background: linear-gradient(135deg, #9575cd 0%, #311b92 100%); }
.hh-article__hero-img--variant-e { background: linear-gradient(135deg, #ede7f6 0%, #9e79c9 100%); }
.hh-article__hero-img--variant-f { background: linear-gradient(135deg, #7c5cbf 0%, #3d1d8f 100%); }

.hh-article__body { font-size: 16.5px; line-height: 1.75; color: var(--hh-text); }
.hh-article__body p { margin-bottom: 20px; }
.hh-article__body h2 {
  font-family: var(--hh-font-head); font-weight: 900; font-size: 24px;
  letter-spacing: -0.02em; color: var(--hh-text); margin: 36px 0 14px;
}
.hh-article__body h3 {
  font-family: var(--hh-font-head); font-weight: 800; font-size: 19px;
  color: var(--hh-text); margin: 28px 0 10px;
}
.hh-article__body ul, .hh-article__body ol { padding-left: 24px; margin-bottom: 20px; }
.hh-article__body li { margin-bottom: 8px; }
.hh-article__body a { color: var(--hh-primary); text-decoration: underline; }
.hh-article__body strong { font-weight: 700; }

.hh-pull-quote {
  border-left: 4px solid var(--hh-primary);
  background: var(--hh-accent-light);
  margin: 36px 0;
  padding: 22px 28px;
  border-radius: 0 4px 4px 0;
}
.hh-pull-quote__text {
  font-family: var(--hh-font-head);
  font-weight: 800;
  font-size: 20px;
  line-height: 1.35;
  color: var(--hh-text);
  font-style: italic;
}

/* AUTHOR BOX */
.hh-author-box {
  background: var(--hh-white);
  border: 1px solid var(--hh-border);
  border-radius: 5px;
  padding: 28px;
  margin-top: 48px;
  display: flex;
  gap: 20px;
}
.hh-author-box__avatar-wrap { flex-shrink: 0; }
.hh-author-box__avatar-img,
.hh-author-box__avatar {
  width: 72px; height: 72px;
  border-radius: 50%;
  object-fit: cover;
}
.hh-author-box__name { font-family: var(--hh-font-head); font-weight: 900; font-size: 17px; color: var(--hh-text); margin-bottom: 4px; }
.hh-author-box__role { font-size: 12px; color: var(--hh-primary); font-family: var(--hh-font-head); font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 10px; }
.hh-author-box__bio { font-size: 14px; color: var(--hh-text-muted); line-height: 1.6; }

/* SIDEBAR */
.hh-sidebar { position: sticky; top: 80px; }
.hh-sidebar-widget {
  background: var(--hh-white);
  border: 1px solid var(--hh-border);
  border-radius: 5px;
  padding: 22px;
  margin-bottom: 24px;
}
.hh-sidebar-widget__title {
  font-family: var(--hh-font-head);
  font-weight: 900;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--hh-text-muted);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--hh-primary);
}
.hh-sidebar-list { list-style: none; }
.hh-sidebar-list li { padding: 9px 0; border-bottom: 1px solid var(--hh-bg-alt); }
.hh-sidebar-list li:last-child { border-bottom: none; }
.hh-sidebar-list a { font-size: 14px; color: var(--hh-text); text-decoration: none; font-weight: 500; line-height: 1.4; }
.hh-sidebar-list a:hover { color: var(--hh-primary); }

/* -----------------------------------------------
   ARCHIEF-PAGINA
----------------------------------------------- */
.hh-archive-header {
  background: var(--hh-header-bg);
  padding: 48px 24px;
}
.hh-archive-header__inner { }
.hh-archive-header__rubric { font-family: var(--hh-font-head); font-weight: 700; font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--hh-primary); margin-bottom: 10px; }
.hh-archive-header__title { font-family: var(--hh-font-head); font-weight: 900; font-size: 38px; color: var(--hh-white); letter-spacing: -0.03em; margin-bottom: 12px; }
.hh-archive-header__desc { font-size: 15.5px; color: rgba(255,255,255,0.6); max-width: 520px; line-height: 1.6; }
.hh-archive-header__count { margin-top: 16px; font-size: 13px; color: rgba(255,255,255,0.35); font-family: var(--hh-font-head); }
.hh-archive-grid-wrap { max-width: var(--hh-max-width); margin: 0 auto; padding: 48px 24px 64px; }
.hh-archive-card {
  background: var(--hh-white);
  border: 1px solid var(--hh-border);
  border-radius: 5px;
  overflow: hidden;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.hh-archive-card:hover { transform: translateY(-3px); box-shadow: 0 8px 28px rgba(107,91,149,0.15); }
.hh-archive-card__img { height: 148px; background: linear-gradient(135deg, #c4bbd8 0%, #8a7daa 100%); }
.hh-archive-card__img--b { background: linear-gradient(135deg, #d1c4e9 0%, #6B5B95 100%); }
.hh-archive-card__img--c { background: linear-gradient(135deg, #b39ddb 0%, #4527a0 100%); }
.hh-archive-card__img--d { background: linear-gradient(135deg, #9575cd 0%, #311b92 100%); }
.hh-archive-card__img--e { background: linear-gradient(135deg, #ede7f6 0%, #9e79c9 100%); }
.hh-archive-card__img--f { background: linear-gradient(135deg, #7c5cbf 0%, #3d1d8f 100%); }
.hh-archive-card__body { padding: 18px 18px 20px; }
.hh-archive-card__date { font-size: 11.5px; color: var(--hh-text-muted); font-family: var(--hh-font-head); font-weight: 600; margin-bottom: 7px; letter-spacing: 0.03em; }
.hh-archive-card__title { font-family: var(--hh-font-head); font-weight: 800; font-size: 16px; line-height: 1.25; color: var(--hh-text); margin-bottom: 9px; letter-spacing: -0.01em; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.hh-archive-card__title a { text-decoration: none; color: var(--hh-text); }
.hh-archive-card__title a:hover { color: var(--hh-primary); }
.hh-archive-card__excerpt { font-size: 13px; color: var(--hh-text-muted); line-height: 1.55; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }

/* PAGINATIE */
.hh-pagination { margin-top: 40px; text-align: center; }
.hh-pagination .page-numbers { display: inline-block; padding: 8px 14px; margin: 0 3px; border: 1px solid var(--hh-border); border-radius: 4px; font-family: var(--hh-font-head); font-size: 13px; font-weight: 600; color: var(--hh-text); text-decoration: none; transition: background 0.15s ease; }
.hh-pagination .page-numbers.current,
.hh-pagination .page-numbers:hover { background: var(--hh-primary); color: #fff; border-color: var(--hh-primary); }

/* -----------------------------------------------
   FOOTER
----------------------------------------------- */
.hh-footer { background: var(--hh-header-bg); padding: 40px 24px; margin-top: 40px; }
.hh-footer__inner { max-width: var(--hh-max-width); margin: 0 auto; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }
.hh-footer__logo { font-family: var(--hh-font-head); font-weight: 900; font-size: 18px; color: var(--hh-white); }
.hh-footer__logo span { color: var(--hh-primary); }
.hh-footer__copy { font-size: 13px; color: rgba(255,255,255,0.4); }
.hh-footer__links { display: flex; gap: 20px; list-style: none; }
.hh-footer__links a { font-size: 13px; color: rgba(255,255,255,0.5); text-decoration: none; }
.hh-footer__links a:hover { color: rgba(255,255,255,0.85); }

/* LEGAL CONTENT */
.hh-legal-content { font-size: 16px; line-height: 1.75; }
.hh-legal-content h2 { font-family: var(--hh-font-head); font-weight: 800; font-size: 22px; margin: 36px 0 12px; }
.hh-legal-content p { margin-bottom: 18px; }
.hh-legal-content a { color: var(--hh-primary); }

/* -----------------------------------------------
   UITGELICHTE GIDS
----------------------------------------------- */
.hh-featured-guide { background: var(--hh-header-bg); padding: 56px 0; }
.hh-featured-guide__inner {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 56px;
  align-items: center;
}
.hh-featured-guide__kicker {
  display: inline-block;
  font-family: var(--hh-font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--hh-primary);
  border: 1px solid var(--hh-primary);
  padding: 3px 10px;
  border-radius: 3px;
  margin-bottom: 16px;
}
.hh-featured-guide__tag { margin-bottom: 12px; }
.hh-featured-guide__title {
  font-size: 26px;
  font-weight: 900;
  color: var(--hh-white);
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}
.hh-featured-guide__title a { color: inherit; text-decoration: none; }
.hh-featured-guide__title a:hover { color: var(--hh-accent-light); }
.hh-featured-guide__excerpt {
  color: rgba(250,250,250,0.65);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 28px;
}
.hh-featured-guide__img { height: 240px; border-radius: 6px; overflow: hidden; border: 1px solid rgba(255,255,255,0.1); }
.hh-featured-guide__img img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* -----------------------------------------------
   BROWSE PER THEMA
----------------------------------------------- */
.hh-thema-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 32px;
}
.hh-thema-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 24px 20px;
  background: var(--hh-bg);
  border: 1px solid var(--hh-border);
  border-radius: 8px;
  text-decoration: none;
  color: var(--hh-text);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.hh-thema-card:hover { border-color: var(--hh-primary); box-shadow: 0 2px 12px rgba(107,91,149,0.12); }
.hh-thema-card__icon { display: block; color: var(--hh-primary); }
.hh-thema-card__label { font-family: var(--hh-font-head); font-weight: 800; font-size: 14px; }
.hh-thema-card__desc { font-size: 13px; color: var(--hh-text-muted); line-height: 1.4; flex: 1; }
.hh-thema-card__count { font-family: var(--hh-font-head); font-size: 12px; font-weight: 700; color: var(--hh-primary); margin-top: 4px; }

/* -----------------------------------------------
   NIEUWSBRIEF
----------------------------------------------- */
.hh-newsletter { background: var(--hh-primary); padding: 60px 0; }
.hh-newsletter__inner { display: flex; align-items: center; justify-content: space-between; gap: 48px; }
.hh-newsletter__title {
  font-family: var(--hh-font-head);
  font-size: 22px;
  font-weight: 900;
  color: var(--hh-white);
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.hh-newsletter__sub { font-size: 14px; color: rgba(250,250,250,0.72); line-height: 1.5; }
.hh-newsletter__form { display: flex; gap: 10px; flex-shrink: 0; }
.hh-newsletter__input {
  padding: 11px 16px;
  border: none;
  border-radius: 4px;
  font-size: 15px;
  width: 260px;
  font-family: var(--hh-font-body);
  outline: none;
  background: var(--hh-white);
  color: var(--hh-text);
}
.hh-newsletter__input::placeholder { color: var(--hh-text-muted); }
.hh-newsletter__input:focus { box-shadow: 0 0 0 3px rgba(232,224,248,0.35); }

/* -----------------------------------------------
   KOSTEN-PER-HIRE CALCULATOR
----------------------------------------------- */
.hh-calculator { background: var(--hh-off-white); padding: 64px 0; border-top: 1px solid var(--hh-border); }
.hh-calculator__kicker { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--hh-primary); margin-bottom: 8px; }
.hh-calculator__title { font-family: var(--hh-font-head); font-size: 26px; font-weight: 800; color: var(--hh-dark); margin-bottom: 10px; letter-spacing: -0.02em; }
.hh-calculator__sub { font-size: 14px; color: var(--hh-text-muted); line-height: 1.55; margin-bottom: 36px; max-width: 560px; }
.hh-calculator__body { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }

.hh-calc-field { margin-bottom: 22px; }
.hh-calc-label { display: block; font-size: 13px; font-weight: 600; color: var(--hh-dark); margin-bottom: 7px; font-family: var(--hh-font-head); }
.hh-calc-select {
  width: 100%; padding: 10px 32px 10px 12px; border: 1.5px solid var(--hh-border); border-radius: 5px;
  font-size: 14px; font-family: var(--hh-font-body); color: var(--hh-text); background: #fff; cursor: pointer;
  -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='%236B5B95' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 12px center;
}
.hh-calc-select:focus { outline: none; border-color: var(--hh-primary); box-shadow: 0 0 0 3px rgba(107,91,149,0.12); }

.hh-calc-slider-head { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 8px; }
.hh-calc-slider-val { font-family: var(--hh-font-head); font-size: 14px; font-weight: 700; color: var(--hh-primary); }
.hh-calc-slider {
  width: 100%; -webkit-appearance: none; appearance: none; height: 5px; border-radius: 3px; outline: none; cursor: pointer;
  background: linear-gradient(to right, var(--hh-primary) 0%, var(--hh-primary) var(--slider-pct, 30%), var(--hh-border) var(--slider-pct, 30%), var(--hh-border) 100%);
}
.hh-calc-slider::-webkit-slider-thumb {
  -webkit-appearance: none; width: 18px; height: 18px; border-radius: 50%;
  background: var(--hh-primary); border: 2.5px solid #fff; box-shadow: 0 1px 4px rgba(107,91,149,0.3); cursor: pointer;
}
.hh-calc-slider::-moz-range-thumb {
  width: 18px; height: 18px; border-radius: 50%; background: var(--hh-primary);
  border: 2.5px solid #fff; box-shadow: 0 1px 4px rgba(107,91,149,0.3); cursor: pointer;
}

.hh-calc-channels { display: flex; flex-wrap: wrap; gap: 8px; }
.hh-calc-channel {
  display: flex; align-items: center; gap: 7px; padding: 7px 13px; border: 1.5px solid var(--hh-border);
  border-radius: 20px; cursor: pointer; font-size: 13px; color: var(--hh-text); background: #fff;
  transition: border-color 0.12s ease, background 0.12s ease; user-select: none;
}
.hh-calc-channel:hover { border-color: var(--hh-primary); }
.hh-calc-channel input[type="checkbox"] { position: absolute; opacity: 0; width: 0; height: 0; pointer-events: none; }
.hh-calc-channel--active { border-color: var(--hh-primary); background: var(--hh-mauve-light); color: var(--hh-primary); font-weight: 600; }

.hh-calc-result { position: sticky; top: 24px; }
.hh-calc-result__box { background: #fff; border: 1.5px solid var(--hh-border); border-radius: 8px; padding: 28px; }
.hh-calc-result__title { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--hh-text-muted); margin-bottom: 22px; }
.hh-calc-result__line { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 13px; padding-bottom: 13px; border-bottom: 1px solid var(--hh-border); }
.hh-calc-result__lbl { font-size: 13px; color: var(--hh-text-muted); line-height: 1.4; max-width: 60%; }
.hh-calc-result__val { font-family: var(--hh-font-head); font-size: 15px; font-weight: 700; color: var(--hh-dark); }
.hh-calc-result__divider { border: none; border-top: 1.5px solid var(--hh-border); margin: 6px 0 18px; }
.hh-calc-result__total { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 20px; }
.hh-calc-result__total-lbl { font-family: var(--hh-font-head); font-size: 14px; font-weight: 700; color: var(--hh-dark); }
.hh-calc-result__total-val { font-family: var(--hh-font-head); font-size: 28px; font-weight: 800; color: var(--hh-dark); letter-spacing: -0.03em; }
.hh-calc-result__benchmark { background: var(--hh-mauve-light); border-radius: 5px; padding: 13px 15px; }
.hh-calc-result__bm-label { font-size: 10px; text-transform: uppercase; letter-spacing: 0.07em; color: var(--hh-text-muted); margin-bottom: 4px; font-weight: 700; }
.hh-calc-result__bm-val { font-family: var(--hh-font-head); font-size: 14px; font-weight: 700; color: var(--hh-dark); }
.hh-calc-result__bm-note { font-size: 11px; color: var(--hh-text-muted); margin-top: 4px; line-height: 1.4; }

/* -----------------------------------------------
   RESPONSIVE (<768px)
----------------------------------------------- */
@media (max-width: 768px) {
  .hh-header__inner { height: 56px; padding: 0 16px; }
  .hh-nav { display: none; }
  .hh-hero__inner { grid-template-columns: 1fr; gap: 28px; }
  .hh-hero { padding: 40px 16px 48px; }
  .hh-hero__title { font-size: 28px; }
  .hh-hero__img-placeholder { height: 200px; }
  .hh-card-grid { grid-template-columns: 1fr; }
  .hh-card-grid--2 { grid-template-columns: 1fr; }
  .hh-author-intro__inner { flex-direction: column; gap: 14px; text-align: center; }
  .hh-article-wrap { grid-template-columns: 1fr; gap: 32px; padding: 32px 16px 48px; }
  .hh-article__title { font-size: 26px; }
  .hh-sidebar { position: static; }
  .hh-archive-header { padding: 36px 16px; }
  .hh-archive-header__title { font-size: 26px; }
  .hh-archive-grid-wrap { padding: 32px 16px 48px; }
  .hh-rubrieken__inner { padding: 0 8px; }
  .hh-rubriek-item { padding: 16px; }
  .hh-section { padding: 36px 16px; }
  .hh-footer__inner { flex-direction: column; text-align: center; }
  .hh-footer__links { flex-wrap: wrap; justify-content: center; }
  .hh-featured-guide__inner { grid-template-columns: 1fr; gap: 32px; }
  .hh-featured-guide__img { display: none; }
  .hh-thema-grid { grid-template-columns: repeat(2, 1fr); }
  .hh-newsletter__inner { flex-direction: column; text-align: center; }
  .hh-newsletter__form { flex-direction: column; width: 100%; }
  .hh-newsletter__input { width: 100%; }
  .hh-calculator { padding: 40px 0; }
  .hh-calculator__body { grid-template-columns: 1fr; gap: 28px; }
  .hh-calc-result { position: static; }
}

.hh-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;}
