/* ============================================
   BLOG ARTICLE TEMPLATE STYLES
   Voeg dit toe aan je child theme style.css
   ============================================ */

/* Variables */
:root {
  --paper: #fcfcfc;
  --ink: #1a1a1a;
  --ink-mid: #444;
  --ink-light: #888;
  --purple: #4b3cf3;
  --btn: #4b3cf3;        /* ← toevoegen */
  --btnHover: #3a2fe6;   /* ← toevoegen */
  --teal: #3dbdbd;
  --gold: #e8c547;
}

/* Only apply to blog article template */
.single-post.blog-article-template {
  background: var(--paper);
}

/* Reading progress */
.readingProgress {
  position: fixed;
  top: 73px;
  left: 0;
  right: 0;
  height: 13px;
  z-index: 101;
  pointer-events: none;
  background: white;
}
@media (max-width: 600px) {
  .readingProgress {
    top: 66px;
  }
}
.progressBar {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--teal) 0%, var(--purple) 50%, var(--gold) 100%);
  transition: width 0.2s ease-out;
  box-shadow: 0 0 10px rgba(75, 60, 243, 0.5);
  clip-path: url(#progressWaveClip);
}

/* Back link */
.backLink {
  max-width: 680px;
  margin: 90px auto 0;
  padding: 0 40px;
  font-family: "Outfit", sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-light);
  text-decoration: none;
  transition: color 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.backLink:hover {
  color: var(--ink);
}
@media (max-width: 768px) {
  .backLink {
    margin-top: 80px;
    padding: 0 24px;
  }
}

/* Header */
.header {
  max-width: 680px;
  margin: 50px auto;
  padding: 32px 40px 0;
}
@media (max-width: 768px) {
  .header {
    padding: 24px 24px 0;
  }
}

.meta {
  font-family: "Outfit", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-light);
  margin-bottom: 20px;
  display: flex;
  gap: 12px;
  align-items: center;
	
}
.category {
  color: var(--purple);
}

.title {
  font-size: clamp(38px, 7vw, 60px);
  line-height: 1.08;
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
  color: var(--ink);
}

.lede {
  font-size: 23px;
  line-height: 1.45;
  color: var(--ink-mid);
  font-weight: 400;
  margin-bottom: 0;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(26, 26, 26, 0.08);
}
@media (max-width: 768px) {
  .lede {
    font-size: 20px;
  }
}

/* Hero image */
.hero {
  margin: 50px auto 80px;
  max-width: 1200px;
  padding: 0 40px;
}
.hero img {
  width: 100%;
  height: auto;
  max-height: 700px;
  object-fit: cover;
  display: block;
  border-radius: 8px;
}
@media (max-width: 768px) {
  .hero {
    padding: 0;
    margin-bottom: 70px;
  }
  .hero img {
    border-radius: 0;
    max-height: 400px;
  }
}
/* Article */
.article {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 40px 120px;
  font-size: 21px;
  line-height: 1.7;
}
@media (max-width: 768px) {
  .article {
    padding: 0 24px 100px;
  }
}

/* Drop cap */
.article > p:first-of-type::first-letter {
  font-size: 4.8em;
  line-height: 0.9;
  float: left;
  margin: 0.05em 0.15em 0 0;
  font-weight: 700;
  color: var(--purple);
}

.article p {
  margin-bottom: 1.4em;
}
.article p:last-child {
  margin-bottom: 0;
}

.article h2 {
  font-size: 36px;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 1.0em 0 0.1em;
  color: var(--ink);
}
.article h2:first-child {
  margin-top: 0;
}
@media (max-width: 768px) {
  .article h2 {
    font-size: 30px;
  }
}

.article h3 {
  font-size: 26px;
  line-height: 1.3;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin: 1.8em 0 0.6em;
  color: var(--ink);
}

.article a {
  color: var(--purple);
  text-decoration: underline;
  text-decoration-color: rgba(75, 60, 243, 0.3);
  text-underline-offset: 3px;
  text-decoration-thickness: 1.5px;
  transition: all 0.2s;
}
.article a:hover {
  text-decoration-color: var(--purple);
}

.article strong {
  font-weight: 600;
  color: var(--ink);
}

/* Blockquote */
.article blockquote {
  margin: 2.8em 0;
  padding: 0;
  border: 0;
  position: relative;
}
.article blockquote p {
  font-size: 32px;
  line-height: 1.4;
  font-weight: 500;
  color: var(--ink);
  font-style: normal;
  position: relative;
  padding-left: 60px;
}
.article blockquote p::before {
  content: '"';
  position: absolute;
  left: 0;
  top: -10px;
  font-size: 120px;
  line-height: 1;
  font-weight: 700;
  color: var(--purple);
  opacity: 0.15;
}
@media (max-width: 768px) {
  .article blockquote p {
    font-size: 26px;
    padding-left: 40px;
  }
  .article blockquote p::before {
    font-size: 80px;
    top: -5px;
  }
}

/* Pull quote */
.pullQuote {
  margin: 3em 0;
  padding: 0;
  background: transparent;
  border: 0;
  text-align: center;
  position: relative;
}
.pullQuote::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(75, 60, 243, 0.08), transparent 70%);
  border-radius: 50%;
  z-index: -1;
}
.pullQuote p {
  font-size: 28px;
  line-height: 1.4;
  font-weight: 600;
  color: var(--ink);
  margin: 0;
  max-width: 560px;
  margin: 0 auto;
  letter-spacing: -0.01em;
}
@media (max-width: 768px) {
  .pullQuote {
    margin: 2.5em 0;
  }
  .pullQuote p {
    font-size: 24px;
  }
}

/* Images */
.figure {
  margin: 3em 0;
}
.figure img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}
.figcaption {
  font-family: "Outfit", sans-serif;
  font-size: 14px;
  color: var(--ink-light);
  margin-top: 12px;
  line-height: 1.5;
}

.figure.wide {
  margin-left: -120px;
  margin-right: -120px;
}
@media (max-width: 1000px) {
  .figure.wide {
    margin-left: -40px;
    margin-right: -40px;
  }
}
@media (max-width: 768px) {
  .figure.wide {
    margin-left: -24px;
    margin-right: -24px;
    border-radius: 0;
  }
  .figure.wide img {
    border-radius: 0;
  }
}

/* Highlight box */
.highlight {
  margin: 2.5em 0;
  padding: 32px 40px;
  background: white;
  border-left: 4px solid var(--gold);
  border-radius: 0 8px 8px 0;
}
.highlight p {
  font-size: 19px;
  line-height: 1.6;
  color: var(--ink-mid);
}
@media (max-width: 768px) {
  .highlight {
    padding: 24px 28px;
  }
}

/* Divider */
.divider {
  margin: 3em auto!important;
  height: 40px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 680px;
}
.divider svg {
  width: 100%;
  height: 100%;
}
.waveLine {
  fill: none;
  stroke: var(--purple);
  stroke-width: 2;
  opacity: 0.3;
  stroke-linecap: round;
}

/* Book promo CTA */
.bookPromo {
  max-width: 900px;
  margin: 30px auto 0;
  padding: 0 40px;
}
@media (max-width: 768px) {
  .bookPromo {
    margin-top: 80px;
    padding: 0 24px;
  }
}
.bookPromoInner {
  background: radial-gradient(circle at 15% 20%, var(--teal), transparent 50%),
    radial-gradient(circle at 85% 80%, var(--gold), transparent 50%),
    linear-gradient(135deg, #f8f8f8, #ffffff);
  border-radius: 20px;
  padding: 60px;
  display: grid;
  gap: 40px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(26, 26, 26, 0.06);
  position: relative;
  overflow: hidden;
}
@media (min-width: 900px) {
  .bookPromoInner {
    grid-template-columns: 200px 1fr;
    gap: 50px;
  }
}
@media (max-width: 768px) {
  .bookPromoInner {
    padding: 40px 32px;
  }
}
.bookPromoInner::before {
  content: "";
  position: absolute;
  inset: -20%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='240' height='240' filter='url(%23n)' opacity='.35'/%3E%3C/svg%3E");
  opacity: 0.08;
  mix-blend-mode: multiply;
  pointer-events: none;
  z-index: 0;
}
.bookPromoCover {
  position: relative;
  z-index: 1;
  margin: 0 auto;
}
.bookPromoCover img {
  width: 100%;
  max-width: 200px;
  height: auto;
  display: block;
  border-radius: 8px;
}
.bookPromoContent {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}
.bookPromoKicker {
  font-family: "Outfit", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--purple);
}
.bookPromoTitle {
  font-size: 36px;
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
}
@media (max-width: 768px) {
  .bookPromoTitle {
    font-size: 30px;
  }
}
.bookPromoText {
  font-size: 18px;
  line-height: 1.6;
  color: var(--ink-mid);
}
.bookPromoCTAs {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 8px;
}
.bookPromoBtn {
  font-family: "Outfit", sans-serif;
  font-size: 15px;
  font-weight: 600;
  padding: 14px 28px;
  background: var(--purple);
  color: white;
  border: 0;
  border-radius: 8px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s;
  display: inline-block;
}
.bookPromoBtn:hover {
  background: #3a2fe6;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(75, 60, 243, 0.3);
}
.bookPromoBtn.secondary {
  background: transparent;
  border: 1.5px solid rgba(26, 26, 26, 0.2);
  color: var(--ink);
}
.bookPromoBtn.secondary:hover {
  background: rgba(26, 26, 26, 0.04);
  border-color: var(--ink);
  box-shadow: none;
}

/* Article navigation */
.articleNav {
  max-width: 900px;
  margin: 80px auto 0;
  padding: 0 40px;
  display: grid;
  gap: 20px;
}
@media (min-width: 768px) {
  .articleNav {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 768px) {
  .articleNav {
    padding: 0 24px;
    margin-top: 60px;
  }
}
.navCard {
  background: white;
  border: 1px solid rgba(26, 26, 26, 0.08);
  border-radius: 12px;
  padding: 28px 32px;
  text-decoration: none;
  color: var(--ink);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.navCard:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.1);
  border-color: rgba(75, 60, 243, 0.2);
}
.navLabel {
  font-family: "Outfit", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-light);
  display: flex;
  align-items: center;
  gap: 6px;
}
.navCard.prev .navLabel::before {
  content: "←";
  color: var(--purple);
}
.navCard.next .navLabel::after {
  content: "→";
  color: var(--purple);
}
.navTitle {
  font-size: 22px;
  line-height: 1.3;
  font-weight: 600;
  color: var(--ink);
}
.navExcerpt {
  font-size: 15px;
  line-height: 1.5;
  color: var(--ink-mid);
}

/* Footer */
.footer {
  max-width: 680px;
  margin: 0 auto;
  padding: 80px 40px 100px;
  border-top: 1px solid rgba(26, 26, 26, 0.08);
}
@media (max-width: 768px) {
  .footer {
    padding: 60px 24px 80px;
  }
}

/* Newsletter */
.newsletter {
  text-align: center;
  padding: 30px 0;
}
.newsletter h3 {
  font-size: 32px;
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.newsletter p {
  font-size: 19px;
  color: var(--ink-mid);
  margin-bottom: 32px;
  line-height: 1.5;
}
.newsletterForm {
  display: flex;
  gap: 12px;
  max-width: 480px;
  margin: 0 auto;
}
@media (max-width: 600px) {
  .newsletterForm {
    flex-direction: column;
  }
}
.newsletterForm input {
  flex: 1;
  font-family: "Outfit", sans-serif;
  font-size: 16px;
  padding: 16px 24px;
  border: 1.5px solid rgba(26, 26, 26, 0.12);
  border-radius: 8px;
  background: white;
}
.newsletterForm input:focus {
  outline: none;
  border-color: var(--purple);
}
.newsletterForm button {
  font-family: "Outfit", sans-serif;
  font-size: 16px;
  font-weight: 600;
  padding: 16px 32px;
  background: var(--purple);
  color: white;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}
.newsletterForm button:hover {
  background: #3a2fe6;
  transform: translateY(-1px);
}

/* Tags */
.tags {
  margin-top: 10px;
  padding-top: 40px;
  border-top: 1px solid rgba(26, 26, 26, 0.06);
}
.tagsLabel {
  font-family: "Outfit", sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-light);
  margin-bottom: 16px;
}
.tagsList {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.tag {
  font-family: "Outfit", sans-serif;
  font-size: 14px;
  font-weight: 500;
  padding: 8px 18px;
  background: rgba(75, 60, 243, 0.08);
  color: var(--purple);
  border-radius: 999px;
  text-decoration: none;
  transition: all 0.2s;
}
.tag:hover {
  background: var(--purple);
  color: white;
}

/* Back to top */
.backTop {
  position: fixed;
  bottom: 40px;
  right: 40px;
  width: 52px;
  height: 52px;
  background: var(--purple);
  color: white;
  border: 0;
  border-radius: 50%;
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(75, 60, 243, 0.3);
  transition: all 0.3s;
  opacity: 0;
  pointer-events: none;
  font-size: 20px;
  z-index: 100;
}
.backTop.show {
  opacity: 1;
  pointer-events: auto;
}
.backTop:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(75, 60, 243, 0.4);
}
@media (max-width: 768px) {
  .backTop {
    bottom: 24px;
    right: 24px;
  }
}

/* ============================================
   TWENTYTWENTYONE FOOTER OVERRIDE - FORCE
   ============================================ */

/* Forceer witte achtergrond voor footer sectie */
.blog-article-template .site-footer,
.blog-article-template footer.site-footer,
body.blog-article-template .site-footer {
  background: var(--paper) !important;
  background-color: var(--paper) !important;
  color: var(--ink) !important;
  padding: 0 !important;
  margin: 0 !important;
}

/* Verberg TT1 footer content */
.blog-article-template .site-footer .site-info,
.blog-article-template .site-footer > * {
  display: none !important;
}

/* Toon alleen onze footer */
.blog-article-template .site-footer .footer,
.blog-article-template .site-footer .newsletter,
.blog-article-template .site-footer .tags {
  display: block !important;
}

/* Force witte achtergrond en juiste kleuren */
.blog-article-template .newsletter,
.blog-article-template .footer {
  background: var(--paper) !important;
  background-color: var(--paper) !important;
}

.blog-article-template .newsletter h3,
.blog-article-template .newsletter p,
.blog-article-template .tagsLabel {
  color: var(--ink) !important;
}

.blog-article-template .newsletterForm input {
  background: white !important;
  background-color: white !important;
  color: var(--ink) !important;
  border: 1.5px solid rgba(26, 26, 26, 0.12) !important;
}

.blog-article-template .newsletterForm button {
  background: var(--purple) !important;
  background-color: var(--purple) !important;
  color: white !important;
}

.blog-article-template .tag {
  background: rgba(75, 60, 243, 0.08) !important;
  color: var(--purple) !important;
}

.blog-article-template .tag:hover {
  background: var(--purple) !important;
  background-color: var(--purple) !important;
  color: white !important;
}

/* ============================================
   BACK TO TOP - FORCE VISIBILITY
   ============================================ */

.backTop,
button.backTop,
.blog-article-template .backTop {
  position: fixed !important;
  bottom: 40px !important;
  right: 40px !important;
  width: 52px !important;
  height: 52px !important;
  background: var(--purple) !important;
  background-color: #4b3cf3 !important;
  color: white !important;
  border: 0 !important;
  border-radius: 50% !important;
  display: grid !important;
  place-items: center !important;
  cursor: pointer !important;
  box-shadow: 0 8px 24px rgba(75, 60, 243, 0.4) !important;
  transition: all 0.3s ease !important;
  opacity: 0 !important;
  pointer-events: none !important;
  font-size: 20px !important;
  z-index: 9999 !important;
  line-height: 1 !important;
}

.backTop.show,
button.backTop.show,
.blog-article-template .backTop.show {
  opacity: 1 !important;
  pointer-events: auto !important;
}

.backTop:hover,
button.backTop:hover {
  transform: translateY(-4px) !important;
  box-shadow: 0 12px 32px rgba(75, 60, 243, 0.5) !important;
}

@media (max-width: 768px) {
  .backTop,
  button.backTop {
    bottom: 24px !important;
    right: 24px !important;
  }
}

/* ===== Navigation op ALLE pagina's (niet alleen hero) ===== */
body:not(.home) .nav {
  position: fixed;
  inset: 0 0 auto 0;
  padding: 26px 28px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  z-index: 100;
  font-family: "Outfit", system-ui, sans-serif;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(43,43,43,.08);
}

body:not(.home) .brand {
  font-size: 20px;
  font-weight: 400;
  color: var(--ink);
  text-decoration: none;
}

body:not(.home) .navRight {
  display: flex;
  align-items: center;
  gap: 18px;
}

body:not(.home) .navLink {
  font-size: 18px;
  font-weight: 400;
  color: var(--ink);
  text-decoration: none;
  display: none;
}

@media(min-width:768px) {
  body:not(.home) .navLink {
    display: block;
  }
}

body:not(.home) .burger {
  width: 44px;
  height: 34px;
  border: 0;
  background: transparent!important;
  cursor: pointer;
  display: grid;
  place-items: center;
  padding: 0;
  -webkit-appearance: none;
  appearance: none;
}

body:not(.home) .burgerSvg {
  display: block;
  overflow: visible;
}

body:not(.home) .bLine {
  fill: none;
  stroke: rgba(43,43,43,.70);
  stroke-width: 2.2;
  stroke-linecap: round;
  vector-effect: non-scaling-stroke;
  transition: stroke .15s ease;
}

body:not(.home) .burger:hover .bLine {
  stroke: rgba(43,43,43,.86);
}

/* Brandwrap (als je die gebruikt) */
body:not(.home) .brandWrap {
  display: flex;
  align-items: center;
  gap: 12px;
}

@media(max-width:600px) {
  body:not(.home) .nav {
    padding: 20px 18px;
  }
}

/* ===== Mailchimp Plugin Styling ===== */

/* Verberg plugin defaults */
.mc4wp-form label,
.mc4wp-form p {
  margin: 0;
  padding: 0;
}

/* Newsletter sectie form */
.newsletterInner .mc4wp-form {
  margin-bottom: 0;
}

.newsletterInner .mc4wp-form .newsletterForm {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.newsletterInner .mc4wp-form input[type="email"] {
  flex: 1;
  min-width: 280px;
  font-family: "Outfit", system-ui, sans-serif;
  font-size: 16px;
  padding: 18px 24px;
  border: 2px solid rgba(43,43,43,.12);
  border-radius: 12px;
  background: white;
  color: var(--ink);
  transition: all .2s ease;
}

.newsletterInner .mc4wp-form input[type="email"]:focus {
  outline: none;
  border-color: var(--btn);
  box-shadow: 0 0 0 4px rgba(75,60,243,.08);
}

.newsletterInner .mc4wp-form input[type="email"]::placeholder {
  color: rgba(43,43,43,.5);
}

.newsletterInner .mc4wp-form .btn,
.newsletterInner .mc4wp-form button[type="submit"] {
  display: inline-block;
  font-family: "Outfit", system-ui, sans-serif;
  font-size: 16px;
  font-weight: 500;
  padding: 18px 40px;
  background: var(--btn);
  color: white;
  text-decoration: none;
  border-radius: 8px;
  transition: all .2s ease;
  border: 0;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(75,60,243,.24);
  white-space: nowrap;
}

.newsletterInner .mc4wp-form .btn:hover,
.newsletterInner .mc4wp-form button[type="submit"]:hover {
  background: var(--btnHover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(75,60,243,.32);
}

/* Success/error messages */
.newsletterInner .mc4wp-alert {
  margin-top: 20px;
  padding: 16px 20px;
  border-radius: 12px;
  font-family: "Outfit", system-ui, sans-serif;
  font-size: 15px;
  line-height: 1.5;
}

.newsletterInner .mc4wp-success {
  background: rgba(75,60,243,.1);
  color: var(--btn);
  border: 1px solid rgba(75,60,243,.2);
}

.newsletterInner .mc4wp-error {
  background: rgba(255,59,59,.1);
  color: #ff3b3b;
  border: 1px solid rgba(255,59,59,.2);
}

/* Mobile responsive */
@media(max-width:600px){
  .newsletterInner .mc4wp-form .newsletterForm {
    flex-direction: column;
    gap: 10px;
  }
  
  .newsletterInner .mc4wp-form input[type="email"] {
    min-width: 100%;
  }
  
  .newsletterInner .mc4wp-form .btn,
  .newsletterInner .mc4wp-form button[type="submit"] {
    width: 100%;
    text-align: center;
  }
}

/* Standaard = footer styling */
.mc4wp-form .mc4wp-newsletter-wrapper {
  display: flex;
  gap: 8px;
  flex-direction: column;
}

.mc4wp-form input[type="email"] {
  font-family: "Outfit", system-ui, sans-serif;
  font-size: 15px;
  padding: 14px 18px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 8px;
  background: rgba(255,255,255,.05);
  color: white;
}

/* Als form IN newsletter sectie zit = andere styling */
.newsletterInner .mc4wp-form .mc4wp-newsletter-wrapper {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  flex-direction: row;
}

.newsletterInner .mc4wp-form input[type="email"] {
  flex: 1;
  min-width: 280px;
  padding: 18px 24px;
  border: 2px solid rgba(43,43,43,.12);
  background: white;
  color: var(--ink);
  font-size: 16px;
}

.newsletterInner .mc4wp-form button[type="submit"] {
  padding: 18px 40px;
  font-size: 16px;
  white-space: nowrap;
}

/* Footer newsletter form */
.footerCol .mc4wp-form {
  margin: 0;
}

.footerCol .mc4wp-form .footerNewsletterForm {
  display: flex;
  gap: 8px;
  flex-direction: column;
}

.footerCol .mc4wp-form input[type="email"] {
  font-family: "Outfit", system-ui, sans-serif;
  font-size: 15px;
  padding: 14px 18px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 8px;
  background: rgba(255,255,255,.05);
  color: white;
  transition: all .2s ease;
}

.footerCol .mc4wp-form input[type="email"]::placeholder {
  color: rgba(255,255,255,.4);
}

.footerCol .mc4wp-form input[type="email"]:focus {
  outline: none;
  border-color: rgba(255,255,255,.5);
  background: rgba(255,255,255,.08);
}

.footerCol .mc4wp-form button[type="submit"] {
  width: 100%;
  background: white;
  color: #2b2b2b;
  font-family: "Outfit", system-ui, sans-serif;
  font-size: 15px;
  font-weight: 500;
  padding: 14px 18px;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  transition: all .2s ease;
  justify-content: center;
}

.footerCol .mc4wp-form button[type="submit"]:hover {
  background: #f0f0f0;
  transform: translateY(-1px);
}

.footerCol .mc4wp-alert {
  margin-top: 12px;
  padding: 10px 14px;
  border-radius: 8px;
  font-family: "Outfit", system-ui, sans-serif;
  font-size: 13px;
	color: rgba(255, 255, 255, .7);
}

.footerCol .mc4wp-success {
  background: rgba(255,255,255,.15);
  color: white;
  border: 1px solid rgba(255,255,255,.3);
}

.footerCol .mc4wp-error {
  background: rgba(255,59,59,.15);
  color: #ffcccc;
  border: 1px solid rgba(255,59,59,.3);
}

.wp-block-quote:before {
    visibility: hidden !important;
}


/* ===== mc4wp in artikel-footer newsletter ===== */
.newsletter .mc4wp-form {
  max-width: 480px;
  margin: 0 auto;
}

/* De echte wrapper om input + knop */
.newsletter .mc4wp-newsletter-wrapper {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  gap: 12px;
  align-items: stretch;
}

.newsletter .mc4wp-newsletter-wrapper input[type="email"] {
  flex: 1 1 auto !important;
  min-width: 0 !important;
  font-family: "Outfit", sans-serif;
  font-size: 16px;
  padding: 16px 24px;
  border: 1.5px solid rgba(26, 26, 26, 0.12);
  border-radius: 8px;
  background: white;
  color: var(--ink);
  transition: all 0.2s;
}

.newsletter .mc4wp-newsletter-wrapper input[type="email"]:focus {
  outline: none;
  border-color: var(--purple);
  box-shadow: 0 0 0 4px rgba(75, 60, 243, 0.08);
}

.newsletter .mc4wp-newsletter-wrapper button[type="submit"] {
  flex: 0 0 auto !important;
  font-family: "Outfit", sans-serif;
  font-size: 16px;
  font-weight: 600;
  padding: 16px 32px;
  background: var(--purple);
  color: white;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
  -webkit-appearance: none;
  appearance: none;
}

.newsletter .mc4wp-newsletter-wrapper button[type="submit"]:hover {
  background: #3a2fe6;
  transform: translateY(-1px);
}

@media (max-width: 600px) {
  .newsletter .mc4wp-newsletter-wrapper {
    flex-direction: column !important;
  }
  .newsletter .mc4wp-newsletter-wrapper button[type="submit"] {
    width: 100%;
  }
}

.newsletter .mc4wp-alert {
  margin-top: 16px;
  padding: 14px 18px;
  border-radius: 8px;
  font-family: "Outfit", sans-serif;
  font-size: 15px;
  text-align: center;
}
.newsletter .mc4wp-success {
  background: rgba(75, 60, 243, 0.08);
  color: var(--purple);
  border: 1px solid rgba(75, 60, 243, 0.2);
}
.newsletter .mc4wp-error {
  background: rgba(255, 59, 59, 0.08);
  color: #e53e3e;
  border: 1px solid rgba(255, 59, 59, 0.2);
}

/* ===== Link annotations ===== */
.article a[data-note] {
  position: relative;
}

.linkNote {
  position: fixed;
  right: 40px;
  width: 280px;
  background: white;
  border: 1px solid rgba(26, 26, 26, 0.08);
  border-radius: 12px;
  padding: 20px 24px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  z-index: 50;
  font-family: "Outfit", sans-serif;
  font-size: 14px;
  line-height: 1.5;
  color: var(--ink-mid);
}

.linkNote.show {
  opacity: 1;
}

.linkNote::before {
  content: '';
  position: absolute;
  left: -8px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-right: 8px solid white;
  filter: drop-shadow(-2px 0 2px rgba(0, 0, 0, 0.04));
}

.linkNoteTitle {
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 8px;
  font-size: 15px;
}

/* Alleen zichtbaar bij brede schermen — rechts is anders geen ruimte */
@media (max-width: 1200px) {
  .linkNote {
    display: none;
  }
}

.divider {
  margin: 4em auto;
  height: 40px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 680px;
  background: transparent !important;
  border: 0 !important;
  color: transparent !important; /* WP gebruikt currentColor voor de lijn */
	    opacity: 1 !important;
}

.divider svg {
  width: 100%;
  height: 100%;
  overflow: visible;
  background: transparent;
}

.waveLine {
  fill: none;
  stroke: var(--purple);
  stroke-width: 2;
  opacity: 0.4;
  stroke-linecap: round;
}

/* WP separator volledig neutraliseren */
.article .wp-block-separator,
.article hr.wp-block-separator {
  display: none !important;
}

.article .wp-block-image img {
  border-radius: 8px;
  width: 100%;
  height: auto;
  display: block;
}

.article .wp-block-image figcaption {
  font-family: "Outfit", sans-serif;
  font-size: 14px;
  color: var(--ink-light);
  margin-top: 12px;
  line-height: 1.5;
  text-align: left;
}

.article .wp-block-image {
  margin: 3em 0;
}

.article .wp-block-image.wide {
  margin-left: -120px;
  margin-right: -120px;
  width: calc(100% + 240px);
}
.article .wp-block-image.wide img {
  width: 100%;
  border-radius: 8px;
}
@media (max-width: 1000px) {
  .article .wp-block-image.wide {
    margin-left: -40px;
    margin-right: -40px;
    width: calc(100% + 80px);
  }
}
@media (max-width: 768px) {
  .article .wp-block-image.wide {
    margin-left: -24px;
    margin-right: -24px;
    width: calc(100% + 48px);
  }
  .article .wp-block-image.wide img {
    border-radius: 0;
  }
}

.article .wp-block-image figcaption,
.article figcaption {
  font-family:  "Fraunces", Georgia, serif !important;
  font-size: 18px!important;
  color: var(--global--color-primary);
  margin-top: 12px!important;
  line-height: 1!important;
  text-align: right!important;
}

.fragmentGate {
  max-width: 520px;
  margin: 0 auto;
  text-align: center;
  padding: 60px 40px;
}

.fragmentIntro {
  font-size: 20px;
  line-height: 1.6;
  color: var(--ink-mid);
  margin-bottom: 32px;
}

.fragmentConsent {
  font-family: "Outfit", sans-serif;
  font-size: 13px;
  color: var(--ink-light);
  margin-top: 20px;
  line-height: 1.5;
}

.fragmentThanks {
  max-width: 520px;
  margin: 100px auto;
  text-align: center;
  padding: 0 40px;
}

/* ===== Globale knop stijl — alle pagina's ===== */

/* mc4wp submit knop overal */
.mc4wp-form button[type="submit"],
.mc4wp-form input[type="submit"] {
  font-family: "Outfit", sans-serif;
  font-size: 16px;
  font-weight: 600;
  padding: 16px 32px;
  background: var(--purple);
  color: white;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
  -webkit-appearance: none;
  appearance: none;
}
.mc4wp-form button[type="submit"]:hover,
.mc4wp-form input[type="submit"]:hover {
  background: var(--btnHover);
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(75, 60, 243, 0.3);
}

/* WordPress contact form / standaard WP knoppen */
.wp-block-button__link,
input[type="submit"],
button[type="submit"] {
  font-family: "Outfit", sans-serif !important;
  font-size: 16px !important;
  font-weight: 600 !important;
  padding: 16px 32px !important;
  background: var(--purple) !important;
  color: white !important;
  border: 0 !important;
  border-radius: 8px !important;
  cursor: pointer !important;
  transition: all 0.2s !important;
  text-decoration: none !important;
}
.wp-block-button__link:hover,
input[type="submit"]:hover,
button[type="submit"]:hover {
  background: var(--btnHover) !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 8px 20px rgba(75, 60, 243, 0.3) !important;
  color: white !important;
}

/* ===== Contactformulier velden ===== */
.wp-block-wpforms-form input[type="text"],
.wp-block-wpforms-form input[type="email"],
.wp-block-wpforms-form textarea,
.wpforms-form input[type="text"],
.wpforms-form input[type="email"],
.wpforms-form textarea,
.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form textarea {
  font-family: "Outfit", sans-serif;
  font-size: 16px;
  padding: 14px 18px;
  border: 1.5px solid rgba(26, 26, 26, 0.15);
  border-radius: 8px;
  background: white;
  color: var(--ink);
  width: 100%;
  transition: all 0.2s;
  box-shadow: none;
  -webkit-appearance: none;
}

.wp-block-wpforms-form input:focus,
.wp-block-wpforms-form textarea:focus,
.wpforms-form input:focus,
.wpforms-form textarea:focus,
.wpcf7-form input:focus,
.wpcf7-form textarea:focus {
  outline: none;
  border-color: var(--purple);
  box-shadow: 0 0 0 4px rgba(75, 60, 243, 0.08);
}

.fragmentGate input[type="email"] {
  color: var(--ink) !important;
  background: white !important;
  border: 1.5px solid rgba(26, 26, 26, 0.15) !important;
  border-radius: 8px !important;
  padding: 16px 24px !important;
  font-family: "Outfit", sans-serif !important;
  font-size: 16px !important;
  width: 100% !important;
}

.fragmentGate input[type="email"]::placeholder {
  color: rgba(26, 26, 26, 0.4) !important;
}

.fragmentGate input[type="email"]:focus {
  outline: none !important;
  border-color: var(--purple) !important;
  box-shadow: 0 0 0 4px rgba(75, 60, 243, 0.08) !important;
}