/* ================= LAYOUT ================= */

.prelude {
  margin-top: 0.25rem;
}

main {
  flex: 1;
  padding: 3.5rem 1.5rem 4rem;
}

.container {
  max-width: 900px;
  margin: 0 auto;
}

/* ================= ARTICLE HERO ================= */

.media-disclaimer {
  opacity: 0.55;
  font-size: 0.85rem;
  line-height: 1.6;
  margin: 1.6rem 0 1.6rem;
  border-left: 2px solid rgba(255, 255, 255, 0.25);
  padding-left: 0.9rem;
}

.kicker {
  font-size: 0.85rem;
  opacity: 0.7;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

h1 {
  font-family: "Orbitron", sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 1rem;
}

.lead {
  font-size: 1.1rem;
  line-height: 1.7;
  opacity: 0.85;
  margin-bottom: 2rem;
}

.meta {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline; /* belangrijk: baseline i.p.v. center */
  gap: 0.6rem;
  margin-bottom: 2rem;
  opacity: 0.75;
  font-size: 0.95rem;
  line-height: 1.4;
}

.meta-item {
  display: inline; /* weg met inline-flex */
}

.meta a {
  display: inline-block; /* stabiele baseline */
  vertical-align: baseline;
  color: rgba(255, 255, 255, 0.92);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  padding-bottom: 1px; /* 2px -> 1px voorkomt “optillen” */
  line-height: 1; /* voorkomt rare hoogte */
  transition:
    border-color 0.2s ease,
    opacity 0.2s ease;
}

.meta a:hover {
  opacity: 1;
  border-color: rgba(255, 255, 255, 0.65);
}

.meta-separator {
  opacity: 0.5;
  line-height: 1;
}

.hero-image {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  overflow: hidden;
  margin: 2rem 0 2.25rem;
  background: rgba(255, 255, 255, 0.02);
}

.hero-image img {
  width: 100%;
  display: block;
  height: auto;
}

.caption {
  padding: 0.9rem 1rem;
  font-size: 0.95rem;
  opacity: 0.8;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* ================= ARTICLE TYPO ================= */

article {
  line-height: 1.85;
}

article p {
  font-size: 1.05rem;
  opacity: 0.9;
  margin: 1rem 0;
}

article h2 {
  font-family: "Orbitron", sans-serif;
  font-weight: 900;
  font-size: clamp(
    1.4rem,
    3vw,
    2.2rem
  ); /* Dynamische lettergrootte op basis van schermgrootte */
  margin: 2.3rem 0 1rem;
  line-height: 1.25;
}

article h3 {
  font-family: "Orbitron", sans-serif;
  font-weight: 900;
  font-size: 1.1rem;
  margin: 1.6rem 0 0.6rem;
  line-height: 1.25;
  opacity: 0.95;
}

.article-link {
  color: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  text-decoration: none;
  padding-bottom: 2px;
}

.article-link:hover {
  border-color: rgba(255, 255, 255, 0.65);
}

.divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin: 2.5rem 0;
}

blockquote {
  margin: 1.6rem 0;
  padding: 1rem 1.1rem;
  border-left: 2px solid rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.04);
  font-size: 1.05rem;
  opacity: 0.95;
}

.callout {
  margin: 1.6rem 0;
  padding: 1.1rem 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
}

.callout p {
  margin: 0.3rem 0;
}

/* ================= IMAGE BLOCKS ================= */

figure {
  margin: 1.8rem 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.02);
}

figure img {
  width: 100%;
  display: block;
  height: auto;
}

figure figcaption {
  padding: 0.85rem 1rem;
  font-size: 0.95rem;
  opacity: 0.82;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* ================= LISTS ================= */

ul,
ol {
  padding-left: 1.2rem;
  margin: 1rem 0;
}

li {
  margin: 0.5rem 0;
  opacity: 0.9;
}

/* ================= CTA ================= */

.cta-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.25rem;
}

.cta {
  display: inline-block;
  padding: 0.9rem 1.3rem;
  border: 1px solid #fff;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: all 0.2s ease;
}

.cta:hover {
  background: #fff;
  color: #000;
  box-shadow: 0 4px 8px rgba(255, 255, 255, 0.2);
}

.cta-ghost {
  display: inline-block;
  padding: 0.9rem 1.3rem;
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: rgba(255, 255, 255, 0.92);
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: all 0.2s ease;
}

.cta-ghost:hover {
  border-color: rgba(255, 255, 255, 0.75);
  color: #fff;
}

/* ================= AUTHOR BOX ================= */

.author-box {
  margin-top: 3.5rem;
  padding: 1.6rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  display: flex;
  gap: 1.4rem;
  align-items: flex-start;
  background: rgba(255, 255, 255, 0.025);
}

.author-box img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  object-fit: cover;
}

.author-content {
  flex: 1;
}

.author-label {
  font-size: 0.75rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  opacity: 0.55;
  margin-bottom: 0.35rem;
}

.author-name {
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 0.2rem;
}

.author-name a {
  color: #fff;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  padding-bottom: 2px;
}

.author-name a:hover {
  border-color: rgba(255, 255, 255, 0.65);
}

.author-role {
  font-size: 0.9rem;
  opacity: 0.75;
  margin-bottom: 0.8rem;
}

.author-bio {
  font-size: 0.95rem;
  line-height: 1.6;
  opacity: 0.85;
}

.author-box .name {
  font-weight: 700;
  letter-spacing: 0.2px;
}

.author-box .role {
  opacity: 0.75;
  margin-top: 0.15rem;
  font-size: 0.95rem;
}

.author-box a {
  color: rgba(255, 255, 255, 0.92);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  padding-bottom: 2px;
}

.author-box a:hover {
  border-color: rgba(255, 255, 255, 0.65);
}

/* ================= RESPONSIVE ================= */

@media (max-width: 768px) {
  nav {
    padding: 1.25rem 1.25rem;
  }
  .nav-links {
    gap: 1rem;
  }
  .nav-links a {
    font-size: 0.85rem;
  }
  main {
    padding: 3rem 1.25rem 3.5rem;
  }
}

/* ================= TOC ================= */

.toc {
  margin: 2rem 0 2.5rem;
  padding: 1.25rem 1.5rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  backdrop-filter: blur(6px);
}

.toc strong {
  display: block;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.7;
  margin-bottom: 0.75rem;
}

.toc ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.toc li {
  margin: 0.35rem 0;
}

.toc a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
  transition: all 0.2s ease;
}

.toc a:hover {
  color: #ff4fd8; /* jouw cult accent */
  transform: translateX(3px);
}

/* =======================
   Opt-in legal (kleine privacy link)
   ======================= */

.optin-legal {
  margin-top: 0.75rem;
  font-size: 0.85rem;
  opacity: 0.65;
  line-height: 1.5;
}

.optin-legal a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.optin-legal a:hover,
.optin-legal a:focus-visible {
  opacity: 1;
}

.review-score-box {
  display: grid;
  grid-template-columns: 1.1fr 1.4fr;
  gap: 1rem;
  margin: 1.5rem 0 2rem;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
}

.review-score-main,
.review-score-meta {
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 1rem;
}

.review-score-label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.72;
  margin-bottom: 0.5rem;
}

.review-score-value {
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1;
  margin-bottom: 0.75rem;
}

.review-score-value span {
  font-size: 0.45em;
  opacity: 0.72;
}

.review-score-verdict {
  margin: 0;
  opacity: 0.92;
  line-height: 1.6;
}

.review-score-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem 1rem;
}

.review-score-item {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.review-score-term {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  opacity: 0.65;
}

.review-score-desc {
  font-weight: 600;
  line-height: 1.45;
}

@media (max-width: 720px) {
  .review-score-box {
    grid-template-columns: 1fr;
  }

  .review-score-meta {
    grid-template-columns: 1fr;
  }
}
