/* =====================
   RESET & BASE
   ===================== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #0a0a0f;
  font-family: 'Space Grotesk', sans-serif;
  color: #ffffff;
}

/* =====================
   STAGE
   ===================== */
#stage {
  position: fixed;
  inset: 0;
  overflow: hidden;
}

/* =====================
   BLOCKS — BASE
   ===================== */
.block {
  position: absolute;
  border-radius: 10px;
  overflow: hidden;
  transition:
    top    1.4s cubic-bezier(0.4, 0, 0.2, 1),
    left   1.4s cubic-bezier(0.4, 0, 0.2, 1),
    width  1.4s cubic-bezier(0.4, 0, 0.2, 1),
    height 1.4s cubic-bezier(0.4, 0, 0.2, 1),
    border-color 0.3s ease;
}

.block-inner {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  container-type: size;
}

/* Block colours */
#bName   { background: #0f0f14; border: 0.5px solid #1c1c22; }
#bStage  { background: #1a1a2e; border: 0.5px solid #252548; }
#bP1     { background: #0f0f14; border: 0.5px solid #1c1c22; }
#bP2     { background: #16162a; border: 0.5px solid #202038; }
#bP3     { background: #0f0f14; border: 0.5px solid #1c1c22; }
#bQuote  { background: #16162a; border: 0.5px solid #202038; }
#bSkills { background: #1a1a2e; border: 0.5px solid #252548; }
#bStrip  { background: #0f0f14; border: 0.5px solid #1c1c22; }

.block:hover { border-color: #6655cc !important; }

/* =====================
   LABELS
   ===================== */
.block-label {
  display: block;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #555570;
  margin-bottom: 10px;
  flex-shrink: 0;
}

/* =====================
   bNAME
   ===================== */
#bName .block-inner {
  flex-direction: row;
  align-items: stretch;
  padding: 24px;
  gap: 0;
}

.name-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 0 0 52%;
  min-width: 0;
  z-index: 1;
  position: relative;
}

.name-text .block-label {
  margin-bottom: 12px;
}

.name-title {
  font-size: clamp(32px, 7cqi, 72px);
  font-weight: 500;
  line-height: 0.88;
  letter-spacing: -0.02em;
  color: #ffffff;
  animation: namePulse 7s ease-in-out infinite;
}

@keyframes namePulse {
  0%, 100% { letter-spacing: -0.02em; }
  50%       { letter-spacing:  0.01em; }
}

.name-tagline {
  margin-top: 14px;
  font-size: clamp(9px, 1.2cqi, 13px);
  color: #6666aa;
  font-weight: 400;
  letter-spacing: 0.02em;
}

.name-photo {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 65%;
  overflow: hidden;
  z-index: 0;
}

/* Fade left edge of photo into block background — wider to cover text overlap zone */
.name-photo::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 35%;
  background: linear-gradient(to right, #0f0f14 0%, #0f0f1490 60%, transparent);
  z-index: 2;
  pointer-events: none;
}

.photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 55% 15%;
  display: block;
  background: #0f0f14;
  filter: blur(0px) brightness(1);
  transition: transform 1.4s cubic-bezier(0.4, 0, 0.2, 1),
              transform-origin 1.4s cubic-bezier(0.4, 0, 0.2, 1),
              filter   1.4s cubic-bezier(0.4, 0, 0.2, 1),
              object-position 0s;
}

/* Staat 1: iets uitgezoomd, meer naar rechts zodat hoofd volledig zichtbaar */
#bName.photo-state1 .photo-img {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: auto;
  object-fit: fill;
  transform: scale(1.4) translateX(-15%);
  transform-origin: right top;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 30%, black 82%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 30%, black 82%, transparent 100%);
}

/* Staten 2 & 3: zelfde positie als staat 1, alleen filter verandert */
#bName.photo-strip .photo-img {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: auto;
  object-fit: fill;
  transform: scale(1.4);
  transform-origin: right top;
  filter: blur(5px) brightness(0.55);
}

.name-strip-labels {
  position: absolute;
  left: 34%;
  right: 0;
  top: 0;
  bottom: 0;
  display: flex;
  justify-content: space-around;
  align-items: center;
  z-index: 3;
  opacity: 0;
  pointer-events: none;
  transition: opacity 1.4s cubic-bezier(0.4, 0, 0.2, 1);
}

#bName.photo-strip .name-strip-labels {
  opacity: 1;
  pointer-events: auto;
}

.name-strip-labels span {
  color: #6666aa;
  font-size: clamp(11px, 1.5cqi, 20px);
  font-weight: 400;
  letter-spacing: 0.02em;
}

/* Staat 4: ingezoomd op gezicht */
#bName.photo-zoom .photo-img {
  transform: scale(1.65);
  transform-origin: 55% 12%;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 30%, black 82%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 30%, black 82%, transparent 100%);
}

/* =====================
   bSTAGE
   ===================== */
.stage-title {
  font-size: clamp(13px, 3.5cqi, 38px);
  font-weight: 500;
  color: #ffffff;
  line-height: 1;
  margin-bottom: 8px;
}

.stage-sub {
  font-size: clamp(9px, 1.2cqi, 13px);
  color: #6666aa;
  margin-bottom: 10px;
}

.stage-reason {
  display: none;
  font-size: clamp(11px, 1.8cqi, 17px);
  color: #8888cc;
  line-height: 1.55;
  margin-bottom: 12px;
  flex-shrink: 0;
}
#stage[data-state="mijn-doel"] #bStage .stage-reason {
  display: block;
  position: relative;
  z-index: 1;
}

/* ── staat 3: bStage video als geblurde achtergrond ── */
#stage[data-state="mijn-doel"] #bStage .video-placeholder {
  position: absolute;
  inset: 0;
  flex: none;
  border-radius: 0;
  z-index: 0;
}
#stage[data-state="mijn-doel"] #bStage .project-video {
  filter: blur(10px) brightness(0.22);
  transition: filter 1.4s cubic-bezier(0.4, 0, 0.2, 1);
}
#stage[data-state="mijn-doel"] #bStage .block-label,
#stage[data-state="mijn-doel"] #bStage .stage-title,
#stage[data-state="mijn-doel"] #bStage .stage-sub,
#stage[data-state="mijn-doel"] #bStage .stage-detail {
  position: relative;
  z-index: 1;
}
#stage[data-state="mijn-doel"] #bStage .tag-list { display: none; }

/* ── .stage-detail ── */
.stage-detail {
  display: none;
  flex: 1;
  position: relative;
}

#stage[data-state="mijn-doel"] #bStage .stage-detail {
  display: block;
}

.stage-detail-view {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  padding-top: 4px;
  opacity: 0;
  transition: opacity 0.6s ease;
  pointer-events: none;
}

.stage-detail-view.is-active {
  opacity: 1;
  pointer-events: auto;
}

.stage-detail-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
}

.stage-detail-divider {
  height: 0.5px;
  background: #252548;
  flex-shrink: 0;
}

.stage-detail-label {
  font-size: 8px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #6655cc;
}

.stage-detail-text {
  font-size: clamp(11px, 1.7cqi, 16px);
  color: #9999bb;
  line-height: 1.7;
}

/* ── FIT-tabel (in .stage-detail, staat 3) ── */
.fit-header {
  display: flex;
  gap: 12px;
  padding-bottom: 8px;
  border-bottom: 0.5px solid #252548;
  margin-bottom: 4px;
  flex-shrink: 0;
}

.fit-col-label {
  flex: 1;
  font-size: 8px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #6655cc;
}

.fit-col-label:last-child {
  color: #555570;
}

.fit-row {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 0.5px solid #1a1a28;
}

.fit-row:last-child {
  border-bottom: none;
}

.fit-left {
  flex: 1;
  font-size: clamp(9px, 1.3cqi, 13px);
  color: #6666aa;
  line-height: 1.45;
}

.fit-right {
  flex: 1;
  font-size: clamp(9px, 1.3cqi, 13px);
  color: #aabbcc;
  line-height: 1.45;
}

/* =====================
   PROJECT BLOCKS
   ===================== */
.project-title {
  font-size: clamp(11px, 2.8cqi, 22px);
  font-weight: 500;
  color: #ffffff;
  line-height: 1.15;
  margin-bottom: 6px;
  flex-shrink: 0;
}

.project-sub {
  font-size: clamp(8px, 1.1cqi, 11px);
  color: #6666aa;
  margin-bottom: 8px;
  flex-shrink: 0;
}

/* Video placeholder */
.video-placeholder {
  flex: 1;
  background: #08080e;
  border-radius: 6px;
  position: relative;
  overflow: hidden;
  min-height: 30px;
}

.play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 16px;
  color: #2a2a44;
  z-index: 1;
}

.project-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.shimmer {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 30%,
    rgba(102, 85, 204, 0.07) 50%,
    transparent 70%
  );
  background-size: 250% 100%;
  animation: shimmer 3.5s ease-in-out infinite;
}

@keyframes shimmer {
  0%   { background-position: -100% 0; }
  100% { background-position: 350%  0; }
}

/* =====================
   TAGS
   ===================== */
.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-top: auto;
  padding-top: 6px;
  flex-shrink: 0;
}

.tag {
  font-size: 8px;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #555570;
  background: #16161e;
  border: 0.5px solid #28283a;
  border-radius: 4px;
  padding: 3px 7px;
  white-space: nowrap;
}

.tag-accent {
  color: #9988dd;
  border-color: #3a3060;
  background: #1c1838;
}

/* =====================
   bQUOTE
   ===================== */
.quote-deco {
  font-size: clamp(24px, 5cqi, 72px);
  line-height: 0.9;
  color: #6655cc;
  font-family: Georgia, serif;
  display: block;
  flex-shrink: 0;
  user-select: none;
  transition: color 0.6s ease;
}

.quote-deco-close {
  align-self: flex-end;
  margin-top: auto;
}

.quote-wrap {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 4px;
  border-left: 1.5px solid transparent;
  padding-left: 0px;
  margin-left: 2px;
  transition: border-color 0.6s ease, padding-left 0.6s ease;
}

.quote-text {
  font-size: clamp(11px, 2cqi, 18px);
  font-weight: 400;
  color: #ccccdd;
  line-height: 1.6;
  font-style: italic;
  transition: opacity 0.5s ease;
}

.quote-source {
  display: block;
  margin-top: 12px;
  font-size: 8px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #555570;
  transition: opacity 0.5s ease, color 0.6s ease;
}

/* ── Externe quote (van anderen, over Noam) ── */
#bQuote.quote--external .quote-deco       { color: #4d8faa; }
#bQuote.quote--external .quote-wrap       { border-color: rgba(77,143,170,0.30); padding-left: 14px; }
#bQuote.quote--external .quote-text       { color: #aac4d4; }
#bQuote.quote--external .quote-source     { color: #4d8faa; }
#bQuote.quote--external .quote-source::before { content: '— '; }

.quote-text.fade,
.quote-source.fade {
  opacity: 0;
}

/* =====================
   bSKILLS
   ===================== */
.skills-list {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
}

.skill-item {
  transition: opacity 0.5s ease;
}

.skill-item.fade { opacity: 0; }

.skill-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 5px;
}

.skill-name {
  font-size: clamp(9px, 1.4cqi, 12px);
  color: #8888cc;
  font-weight: 400;
}

.skill-pct {
  font-size: 8px;
  color: #555570;
  letter-spacing: 0.07em;
}

.skill-bar {
  height: 2px;
  background: #1a1a28;
  border-radius: 2px;
  overflow: hidden;
}

.skill-fill {
  height: 100%;
  background: #6655cc;
  border-radius: 2px;
  width: 0%;
  transition: width 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

/* =====================
   bSTRIP
   ===================== */
#bStrip .block-inner {
  flex-direction: row;
  align-items: center;
  padding: 0 16px;
  gap: 16px;
}

#bStrip .block-label {
  margin-bottom: 0;
  flex-shrink: 0;
}

.strip-carousel {
  flex: 1;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
}

.strip-track {
  display: flex;
  align-items: center;
  gap: 0;
  width: max-content;
  animation: ticker 22s linear infinite;
}

@keyframes ticker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.strip-track:hover { animation-play-state: paused; }

.strip-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 28px;
  white-space: nowrap;
  cursor: default;
}

.logo-img {
  height: 20px;
  width: auto;
  max-width: 48px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.55;
  transition: opacity 0.2s;
  flex-shrink: 0;
}

.logo-img--svg {
  max-width: 64px;
}

.logo-name {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: #9999bb;
  text-transform: uppercase;
  transition: color 0.2s;
}

.strip-logo:hover .logo-name { color: #ffffff; }
.strip-logo:hover .logo-img  { opacity: 1; }

.logo-star {
  font-size: 9px;
  color: #a855f7;
  margin-left: -2px;
}

.strip-divider {
  width: 1px;
  height: 16px;
  background: #2a2a40;
  flex-shrink: 0;
  margin: 0 8px;
}

/* =====================
   bSTRIP EXPANDED (staat 5)
   ===================== */
.strip-expanded {
  display: none;
  flex: 1;
  align-items: stretch;
  gap: 0;
}

#stage[data-state="droomstages"] #bStrip .strip-carousel {
  display: none;
}

#stage[data-state="droomstages"] #bStrip .strip-expanded {
  display: flex;
}

#stage[data-state="droomstages"] #bStrip .block-inner {
  flex-direction: column;
  padding: 18px 20px;
  gap: 14px;
}

.stage-card {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 9px;
  padding: 0 22px;
  border-right: 0.5px solid #1c1c28;
}

.stage-card:last-child {
  border-right: none;
}

.stage-card-logo {
  height: 20px;
  display: flex;
  align-items: center;
}

.logo-img--card {
  height: 18px !important;
  max-width: 54px;
  opacity: 0.6;
}

.stage-card-name {
  font-size: 12px;
  font-weight: 500;
  color: #ccccdd;
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  gap: 5px;
}

.stage-card-reason {
  font-size: 10px;
  color: #555570;
  line-height: 1.6;
  letter-spacing: 0.01em;
}

/* staat 5: bovenste blokken compacter */
#stage[data-state="droomstages"] #bName .block-label,
#stage[data-state="droomstages"] #bName .name-tagline { display: none; }

#stage[data-state="droomstages"] #bP1 .block-label,
#stage[data-state="droomstages"] #bP2 .block-label,
#stage[data-state="droomstages"] #bP3 .block-label,
#stage[data-state="droomstages"] #bP1 .project-sub,
#stage[data-state="droomstages"] #bP2 .project-sub,
#stage[data-state="droomstages"] #bP3 .project-sub,
#stage[data-state="droomstages"] #bP1 .tag-list,
#stage[data-state="droomstages"] #bP2 .tag-list,
#stage[data-state="droomstages"] #bP3 .tag-list { display: none; }

/* =====================
   FOCUS: dominant blok ademt heel zacht
   ===================== */
.is-focus {
  animation: focusBreathe 5.5s ease-in-out infinite !important;
}

@keyframes focusBreathe {
  0%, 100% { transform: scale(1.000); }
  50%       { transform: scale(1.003); }
}

/* Niet-dominante blokken bewegen via JS layout-variatie, geen CSS scale */

/* =====================
   STATE-BASED CONTENT VISIBILITY
   Elke staat heeft expliciete regels per blok.
   #stage krijgt data-state="wie-ben-ik|mijn-werk|mijn-doel|wat-mij-drijft" via JS.
   ===================== */

/* ── WIE BEN IK (staat 1) ───────────────────────────────── */
/* bName: dominant — alles zichtbaar */
/* bStage: medium — alles zichtbaar */
/* bP1/2/3: smal — label + titel + video + sub + tags zichtbaar */
/* bQuote: smal — alles zichtbaar incl. source */
/* bSkills: smal — alles zichtbaar */

/* ── MIJN WERK (staat 2) ────────────────────────────────── */
/* bName: strip — geen label, geen tagline */
#stage[data-state="mijn-werk"] #bName .block-label,
#stage[data-state="mijn-werk"] #bName .name-tagline { display: none; }

/* bStage: video als geblurde achtergrond */
#stage[data-state="mijn-werk"] #bStage .video-placeholder {
  position: absolute;
  inset: 0;
  flex: none;
  border-radius: 0;
  z-index: 0;
}
#stage[data-state="mijn-werk"] #bStage .project-video {
  filter: blur(10px) brightness(0.22);
  transition: filter 1.4s cubic-bezier(0.4, 0, 0.2, 1);
}
#stage[data-state="mijn-werk"] #bStage .block-label,
#stage[data-state="mijn-werk"] #bStage .stage-title,
#stage[data-state="mijn-werk"] #bStage .stage-sub {
  position: relative;
  z-index: 1;
}
#stage[data-state="mijn-werk"] #bStage .tag-list { display: none; }

.stage-strip-facts {
  position: absolute;
  left: 30%;
  right: 0;
  top: 0;
  bottom: 0;
  display: flex;
  justify-content: space-around;
  align-items: center;
  z-index: 2;
  opacity: 0;
  pointer-events: none;
  transition: opacity 1.4s cubic-bezier(0.4, 0, 0.2, 1);
}
#stage[data-state="mijn-werk"] .stage-strip-facts {
  opacity: 1;
}
.stage-strip-facts span {
  color: #6666aa;
  font-size: clamp(11px, 1.5cqi, 18px);
  font-weight: 400;
  letter-spacing: 0.02em;
}

/* bP1/2/3: dominant — alles zichtbaar */
/* bQuote: strip — alles zichtbaar incl. deco */
/* bSkills: strip — alles zichtbaar incl. label */

/* ── MIJN DOEL (staat 3) ────────────────────────────────── */
/* bName: strip links — geen label, geen tagline */
#stage[data-state="mijn-doel"] #bName .block-label,
#stage[data-state="mijn-doel"] #bName .name-tagline { display: none; }

/* bP1/2/3: strip links — geen label, geen video, geen sub, geen tags */
#stage[data-state="mijn-doel"] #bP1 .block-label,
#stage[data-state="mijn-doel"] #bP2 .block-label,
#stage[data-state="mijn-doel"] #bP3 .block-label,
#stage[data-state="mijn-doel"] #bP1 .project-sub,
#stage[data-state="mijn-doel"] #bP2 .project-sub,
#stage[data-state="mijn-doel"] #bP3 .project-sub,
#stage[data-state="mijn-doel"] #bP1 .tag-list,
#stage[data-state="mijn-doel"] #bP2 .tag-list,
#stage[data-state="mijn-doel"] #bP3 .tag-list { display: none; }

/* bStage: dominant — alles zichtbaar */
/* bQuote: linkerkolom breed onderaan — deco + source zichtbaar */
/* bSkills: rechts onder bStage — label + bars zichtbaar */

/* ── WAT MIJ DRIJFT (staat 4) ───────────────────────────── */
/* bName: smal top — geen label */
#stage[data-state="wat-mij-drijft"] #bName .block-label { display: none; }

/* bStage: smal top — geen tags */
#stage[data-state="wat-mij-drijft"] #bStage .tag-list { display: none; }

/* bP1/2/3: smal top — geen label, wel video + sub + tags */
#stage[data-state="wat-mij-drijft"] #bP1 .block-label,
#stage[data-state="wat-mij-drijft"] #bP2 .block-label,
#stage[data-state="wat-mij-drijft"] #bP3 .block-label { display: none; }
/* video altijd zichtbaar — geen display:none op video-placeholder */

/* bQuote: dominant — alles zichtbaar */
/* bSkills: groot — alles zichtbaar */

/* ── FONT-SIZE OVERRIDES PER STAAT ─────────────────────── */

/* bP1/2/3 in staat 3: alleen titel zichtbaar in korte strip — iets groter dan default */
#stage[data-state="mijn-doel"] #bP1 .project-title,
#stage[data-state="mijn-doel"] #bP2 .project-title,
#stage[data-state="mijn-doel"] #bP3 .project-title {
  font-size: clamp(12px, 1.9cqi, 16px);
  line-height: 1.2;
  margin-bottom: 0;
}

/* bP1/2/3 in staat 4: alleen titel zichtbaar in smal blokje */
#stage[data-state="wat-mij-drijft"] #bP1 .project-title,
#stage[data-state="wat-mij-drijft"] #bP2 .project-title,
#stage[data-state="wat-mij-drijft"] #bP3 .project-title {
  font-size: clamp(11px, 2.2cqi, 16px);
  line-height: 1.2;
  margin-bottom: 0;
}

/* bName naam altijd groot — ook als strip */
#stage[data-state="mijn-werk"] #bName .name-title,
#stage[data-state="mijn-doel"] #bName .name-title {
  font-size: clamp(28px, 6cqi, 60px);
  line-height: 0.9;
}

/* bP1/2/3 project-sub groter in staat 2 (dominant) */
#stage[data-state="mijn-werk"] #bP1 .project-sub,
#stage[data-state="mijn-werk"] #bP2 .project-sub,
#stage[data-state="mijn-werk"] #bP3 .project-sub {
  font-size: clamp(10px, 1.4cqi, 14px);
}

/* bQuote tekst groter in staat 1 */
#stage[data-state="wie-ben-ik"] #bQuote .quote-text {
  font-size: clamp(13px, 1.8cqi, 20px);
}

/* bQuote tekst in dominant staat 4: groter */
#stage[data-state="wat-mij-drijft"] #bQuote .quote-text {
  font-size: clamp(16px, 2.8cqi, 28px);
}

/* bQuote deco in dominant staat 4: groot */
#stage[data-state="wat-mij-drijft"] #bQuote .quote-deco {
  font-size: clamp(48px, 7cqi, 96px);
}

/* bSkills in staat 4: alle skills, verdeeld over de volledige hoogte */
#bSkills .skills-list--all {
  justify-content: space-between;
  gap: 0;
}
#bSkills .skills-list--all .skill-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
#bSkills .skills-list--all .skill-name {
  font-size: clamp(9px, 1.8cqi, 18px);
}
#bSkills .skills-list--all .skill-pct {
  font-size: clamp(8px, 1.3cqi, 13px);
}
#bSkills .skills-list--all .skill-bar {
  height: 3px;
}
