*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  :root {
    --blue:   #1a6fad; --blue-d: #145a8e; --blue-l: #e8f3fb;
    --green:  #6ab04c; --green-d:#559040;
    --gold:   #f0a500; --gold-d: #c98a00;
    --white:  #ffffff; --off: #f7f9fc;
    --ink:    #1c2b3a; --mid: #5a6e7f; --rule: #dce6ef;
  }
  html { scroll-behavior: smooth; }
  body { font-family: 'Open Sans', sans-serif; background: var(--white); color: var(--ink); overflow-x: hidden; }

  /* LANGUAGE TOGGLE */
  .lang-toggle {
    display: flex; align-items: center; gap: 0;
    background: var(--off); border: 1.5px solid var(--rule);
    border-radius: 20px; overflow: hidden;
    flex-shrink: 0;
  }
  .lang-btn {
    padding: 0.3rem 0.75rem; font-size: 0.75rem; font-weight: 700;
    letter-spacing: 0.05em; cursor: pointer; border: none;
    background: transparent; color: var(--mid);
    transition: all 0.2s; font-family: 'Open Sans', sans-serif;
    display: flex; align-items: center; gap: 0.3rem;
  }
  .lang-btn.active { background: var(--blue); color: white; border-radius: 18px; }
  .lang-btn:hover:not(.active) { color: var(--blue); }

  /* i18n: show/hide based on lang */
  [data-lang] { display: none; }
  .lang-nl [data-lang="nl"] { display: revert; }
  .lang-en [data-lang="en"] { display: revert; }
  /* inline spans */
  span[data-lang] { display: none; }
  .lang-nl span[data-lang="nl"] { display: inline; }
  .lang-en span[data-lang="en"] { display: inline; }

  /* NAV */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 200;
    background: rgba(255,255,255,0.97); backdrop-filter: blur(8px);
    border-bottom: 3px solid var(--blue);
    display: flex; align-items: center; justify-content: space-between;
    padding: 0.85rem 5vw;
    box-shadow: 0 2px 16px rgba(26,111,173,0.08);
  }
  .nav-logo { display: flex; align-items: center; gap: 0.9rem; text-decoration: none; }
  .nav-wordmark { display: flex; flex-direction: column; line-height: 1.15; }
  .nav-wordmark strong { font-family: 'Merriweather', serif; font-weight: 900; font-size: 1.05rem; color: var(--blue); }
  .nav-wordmark strong sup { font-size: 0.52rem; vertical-align: super; }
  .nav-wordmark span { font-size: 0.63rem; color: var(--green); font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; }
  .nav-right { display: flex; align-items: center; gap: 1.5rem; }
  nav ul { list-style: none; display: flex; gap: 1.8rem; }
  nav ul a { font-size: 0.82rem; font-weight: 600; text-decoration: none; color: var(--ink); padding-bottom: 3px; border-bottom: 2px solid transparent; transition: all 0.2s; }
  nav ul a:hover { color: var(--blue); border-color: var(--blue); }
  .nav-cta { background: var(--blue); color: white !important; padding: 0.5rem 1.2rem; border-radius: 3px; border-bottom: none !important; white-space: nowrap; }
  .nav-cta:hover { background: var(--blue-d) !important; }

  /* HERO */
  #hero {
    min-height: 100vh;
    background: linear-gradient(145deg, #eef5fb 0%, #edf7e8 55%, #fffbef 100%);
    display: flex; align-items: center;
    padding: 100px 5vw 60px; position: relative; overflow: hidden;
  }
  #hero::before {
    content: ''; position: absolute; inset: 0; pointer-events: none;
    background:
      radial-gradient(circle at 70% 25%, rgba(26,111,173,0.07) 0%, transparent 55%),
      radial-gradient(circle at 15% 80%, rgba(106,176,76,0.07) 0%, transparent 50%),
      radial-gradient(circle at 88% 78%, rgba(240,165,0,0.06) 0%, transparent 45%);
  }
  .hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 5vw; align-items: center; width: 100%; max-width: 1200px; margin: 0 auto; position: relative; z-index: 1; }
  .hero-eyebrow { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.76rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--green); margin-bottom: 1.2rem; }
  .hero-eyebrow::before { content: ''; display: block; width: 1.6rem; height: 2px; background: var(--green); }
  h1 { font-family: 'Merriweather', serif; font-weight: 900; font-size: clamp(1.9rem, 3.2vw, 3rem); line-height: 1.2; letter-spacing: -0.02em; color: var(--blue); margin-bottom: 0.7rem; }
  .hero-tagline { font-size: 0.97rem; font-weight: 600; color: var(--gold-d); margin-bottom: 1.4rem; font-style: italic; }
  .hero-sub { font-size: 0.97rem; font-weight: 300; color: var(--mid); line-height: 1.8; margin-bottom: 2.5rem; max-width: 460px; }
  .hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; }
  .btn { display: inline-flex; align-items: center; gap: 0.4rem; padding: 0.82rem 1.7rem; border-radius: 4px; font-size: 0.88rem; font-weight: 600; text-decoration: none; transition: all 0.22s; cursor: pointer; border: 2px solid transparent; font-family: 'Open Sans', sans-serif; }
  .btn-blue { background: var(--blue); color: white; border-color: var(--blue); }
  .btn-blue:hover { background: var(--blue-d); border-color: var(--blue-d); }
  .btn-outline { background: transparent; color: var(--blue); border-color: var(--blue); }
  .btn-outline:hover { background: var(--blue); color: white; }
  .hero-avail { display: flex; align-items: center; gap: 0.55rem; margin-top: 1.2rem; font-size: 0.82rem; font-weight: 600; color: var(--green-d); }
  .avail-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--green); flex-shrink: 0; box-shadow: 0 0 0 3px rgba(106,176,76,0.25); animation: pulse 2s ease-in-out infinite; }
  @keyframes pulse { 0%,100% { box-shadow: 0 0 0 3px rgba(106,176,76,0.25); } 50% { box-shadow: 0 0 0 6px rgba(106,176,76,0.1); } }

  .hero-visual { display: flex; align-items: center; justify-content: center; }
  .tri-stage { position: relative; width: min(400px, 90%); aspect-ratio: 1; display: flex; align-items: center; justify-content: center; }
  .tri-bg { position: absolute; inset: 0; opacity: 0.07; animation: triSpin 40s linear infinite; }
  @keyframes triSpin { to { transform: rotate(360deg); } }
  .pillar-ring { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; width: 100%; position: relative; z-index: 2; }
  .pillar { background: white; border-radius: 10px; padding: 1.3rem 1.1rem; box-shadow: 0 4px 22px rgba(0,0,0,0.09); border-top: 4px solid; animation: floatCard 5s ease-in-out infinite; }
  .pillar:nth-child(1) { border-color: var(--blue); animation-delay: 0s; }
  .pillar:nth-child(2) { border-color: var(--green); animation-delay: 1.7s; }
  .pillar:nth-child(3) { border-color: var(--gold); animation-delay: 3.3s; grid-column: 1/-1; max-width: 190px; margin: 0 auto; }
  @keyframes floatCard { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-7px); } }
  .pillar-icon { font-size: 1.6rem; margin-bottom: 0.4rem; }
  .pillar h4 { font-family: 'Merriweather', serif; font-weight: 700; font-size: 0.9rem; margin-bottom: 0.25rem; }
  .pillar:nth-child(1) h4 { color: var(--blue); }
  .pillar:nth-child(2) h4 { color: var(--green); }
  .pillar:nth-child(3) h4 { color: var(--gold-d); }
  .pillar p { font-size: 0.75rem; color: var(--mid); line-height: 1.5; font-weight: 300; }

  /* TICKER */
  .ticker { background: var(--blue); padding: 0.75rem 0; overflow: hidden; white-space: nowrap; }
  .ticker-inner { display: inline-flex; animation: ticker 26s linear infinite; }
  .ticker-item { font-size: 0.8rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: white; padding: 0 2.5rem; }
  .tdot { color: var(--gold); }
  @keyframes ticker { to { transform: translateX(-50%); } }

  /* CLIENT LOGOS */
  #clients { background: white; padding: 2.8rem 0; border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); overflow: hidden; }
  .clients-label { text-align: center; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--mid); opacity: 0.65; margin-bottom: 1.8rem; padding: 0 5vw; }
  .logo-marquee { display: flex; width: max-content; animation: marquee 35s linear infinite; }
  .logo-marquee:hover { animation-play-state: paused; }
  .logo-track { display: flex; align-items: center; gap: 4rem; padding: 0 2rem; }
  @keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
  .client-logo { opacity: 0.42; transition: opacity 0.25s, transform 0.25s; filter: grayscale(100%); display: flex; align-items: center; flex-shrink: 0; }
  .client-logo:hover { opacity: 1; filter: grayscale(0%); transform: scale(1.06); }
  .client-logo svg { display: block; }

  /* SECTIONS */
  section { padding: 7vh 5vw; }
  .max { max-width: 1200px; margin: 0 auto; }
  .section-label { font-size: 0.73rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--green); margin-bottom: 0.5rem; display: flex; align-items: center; gap: 0.55rem; }
  .section-label::before { content: ''; display: block; width: 1.3rem; height: 2px; background: var(--green); }
  h2 { font-family: 'Merriweather', serif; font-weight: 900; font-size: clamp(1.7rem, 2.8vw, 2.6rem); color: var(--blue); letter-spacing: -0.02em; line-height: 1.15; margin-bottom: 0.8rem; }
  .section-intro { font-size: 0.97rem; color: var(--mid); font-weight: 300; line-height: 1.78; max-width: 680px; margin-bottom: 3rem; }

  /* ABOUT */
  #about { background: var(--off); }
  .about-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 5vw; align-items: start; }
  .about-text p { font-size: 0.96rem; color: var(--mid); line-height: 1.8; margin-bottom: 1.1rem; font-weight: 300; }
  .about-text p strong { color: var(--ink); font-weight: 600; }
  .pdi-grid { display: flex; flex-direction: column; }
  .pdi-row { display: flex; align-items: stretch; gap: 1.2rem; padding: 1.3rem 0; border-bottom: 1px solid var(--rule); }
  .pdi-row:first-child { border-top: 1px solid var(--rule); }
  .pdi-bar { width: 5px; border-radius: 3px; flex-shrink: 0; }
  .pdi-row:nth-child(1) .pdi-bar { background: var(--blue); }
  .pdi-row:nth-child(2) .pdi-bar { background: var(--green); }
  .pdi-row:nth-child(3) .pdi-bar { background: var(--gold); }
  .pdi-word { font-family: 'Merriweather', serif; font-weight: 700; font-size: 1.05rem; margin-bottom: 0.2rem; }
  .pdi-row:nth-child(1) .pdi-word { color: var(--blue); }
  .pdi-row:nth-child(2) .pdi-word { color: var(--green); }
  .pdi-row:nth-child(3) .pdi-word { color: var(--gold-d); }
  .pdi-desc { font-size: 0.87rem; color: var(--mid); font-weight: 300; line-height: 1.6; }

  /* EXPERTISE */
  #expertise { background: white; }
  .expertise-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4vw; }
  .exp-col h3 { font-family: 'Merriweather', serif; font-weight: 700; font-size: 1rem; color: var(--blue); margin-bottom: 1rem; }
  .skill-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 2rem; }
  .skill-tag { font-size: 0.78rem; font-weight: 500; padding: 0.35rem 0.8rem; border-radius: 20px; border: 1.5px solid; }
  .skill-tag.t-blue { border-color: var(--blue); color: var(--blue); background: var(--blue-l); }
  .skill-tag.t-green { border-color: var(--green); color: var(--green-d); background: #edf7e8; }
  .skill-tag.t-gold { border-color: var(--gold); color: var(--gold-d); background: #fff8e6; }
  .industry-row { display: flex; align-items: center; gap: 0.8rem; padding: 0.6rem 0; border-bottom: 1px solid var(--rule); }
  .industry-row:first-of-type { border-top: 1px solid var(--rule); }
  .ind-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
  .ind-dot.d-blue { background: var(--blue); }
  .ind-dot.d-green { background: var(--green); }
  .ind-dot.d-gold { background: var(--gold); }
  .industry-row span { font-size: 0.88rem; color: var(--mid); font-weight: 400; }

  /* SERVICES */
  #services { background: var(--off); }
  .services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.6rem; }
  .svc { border: 1px solid var(--rule); border-radius: 8px; padding: 2rem 1.7rem; transition: transform 0.25s, box-shadow 0.25s; position: relative; overflow: hidden; background: white; }
  .svc::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 4px; transform: scaleX(0); transform-origin: left; transition: transform 0.3s; }
  .svc.s-blue::after { background: var(--blue); }
  .svc.s-green::after { background: var(--green); }
  .svc.s-gold::after { background: var(--gold); }
  .svc:hover { transform: translateY(-5px); box-shadow: 0 14px 34px rgba(26,111,173,0.11); }
  .svc:hover::after { transform: scaleX(1); }
  .svc-icon { width: 2.8rem; height: 2.8rem; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; margin-bottom: 1.2rem; }
  .s-blue .svc-icon { background: var(--blue-l); }
  .s-green .svc-icon { background: #edf7e8; }
  .s-gold .svc-icon { background: #fff8e6; }
  .svc h3 { font-family: 'Merriweather', serif; font-weight: 700; font-size: 1rem; margin-bottom: 0.6rem; color: var(--ink); }
  .svc p { font-size: 0.86rem; color: var(--mid); line-height: 1.72; font-weight: 300; }
  .svc-tags { display: flex; flex-wrap: wrap; gap: 0.35rem; margin-top: 1.1rem; }
  .tag { font-size: 0.68rem; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; padding: 0.2rem 0.55rem; border-radius: 2px; color: white; }
  .s-blue .tag { background: var(--blue); }
  .s-green .tag { background: var(--green); }
  .s-gold .tag { background: var(--gold-d); }

  /* PORTFOLIO */
  #portfolio { background: white; }
  .portfolio-filter { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
  .filter-btn { font-size: 0.78rem; font-weight: 600; padding: 0.4rem 1rem; border-radius: 20px; border: 1.5px solid var(--rule); background: white; color: var(--mid); cursor: pointer; transition: all 0.2s; font-family: 'Open Sans', sans-serif; }
  .filter-btn:hover, .filter-btn.active { background: var(--blue); color: white; border-color: var(--blue); }
  .projects-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .project-card { border: 1px solid var(--rule); border-radius: 8px; padding: 1.8rem; background: white; transition: transform 0.25s, box-shadow 0.25s; }
  .project-card:hover { transform: translateY(-4px); box-shadow: 0 12px 30px rgba(26,111,173,0.1); }
  .project-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 0.8rem; gap: 1rem; }
  .project-org { font-family: 'Merriweather', serif; font-weight: 700; font-size: 1rem; color: var(--blue); line-height: 1.2; }
  .project-period { font-size: 0.72rem; font-weight: 600; color: var(--mid); white-space: nowrap; background: var(--off); padding: 0.25rem 0.6rem; border-radius: 20px; flex-shrink: 0; }
  .project-role { font-size: 0.78rem; font-weight: 600; color: var(--green-d); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 0.6rem; }
  .project-assignment { font-size: 0.88rem; color: var(--ink); font-weight: 500; margin-bottom: 0.6rem; }
  .project-result { font-size: 0.84rem; color: var(--mid); line-height: 1.65; font-weight: 300; }
  .project-tags { display: flex; flex-wrap: wrap; gap: 0.35rem; margin-top: 1rem; }
  .project-tag { font-size: 0.67rem; font-weight: 600; letter-spacing: 0.04em; padding: 0.18rem 0.5rem; border-radius: 2px; background: var(--blue-l); color: var(--blue); text-transform: uppercase; }

  /* APPROACH */
  #approach { background: linear-gradient(135deg, var(--blue) 0%, var(--blue-d) 100%); color: white; }
  #approach .section-label { color: var(--gold); }
  #approach .section-label::before { background: var(--gold); }
  #approach h2 { color: white; }
  #approach .section-intro { color: rgba(255,255,255,0.65); }
  .steps-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.4rem; }
  .step-card { background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12); border-radius: 8px; padding: 1.8rem 1.4rem; transition: background 0.25s; }
  .step-card:hover { background: rgba(255,255,255,0.14); }
  .step-num { font-family: 'Merriweather', serif; font-weight: 900; font-size: 2.2rem; line-height: 1; margin-bottom: 0.8rem; opacity: 0.18; }
  .step-dot { width: 2.2rem; height: 3px; border-radius: 2px; margin-bottom: 0.8rem; }
  .step-card:nth-child(odd) .step-dot { background: var(--gold); }
  .step-card:nth-child(even) .step-dot { background: var(--green); }
  .step-card h3 { font-family: 'Merriweather', serif; font-weight: 700; font-size: 0.95rem; color: white; margin-bottom: 0.55rem; }
  .step-card p { font-size: 0.83rem; color: rgba(255,255,255,0.58); line-height: 1.65; font-weight: 300; }

  /* WHY */
  #why { background: var(--off); }
  .why-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.4rem; }
  .why-card { background: white; border-radius: 8px; padding: 1.8rem 1.5rem; border-left: 4px solid; box-shadow: 0 2px 12px rgba(0,0,0,0.05); }
  .why-card:nth-child(1) { border-color: var(--blue); }
  .why-card:nth-child(2) { border-color: var(--green); }
  .why-card:nth-child(3) { border-color: var(--gold); }
  .why-card h3 { font-family: 'Merriweather', serif; font-weight: 700; font-size: 0.98rem; margin-bottom: 0.55rem; }
  .why-card:nth-child(1) h3 { color: var(--blue); }
  .why-card:nth-child(2) h3 { color: var(--green); }
  .why-card:nth-child(3) h3 { color: var(--gold-d); }
  .why-card p { font-size: 0.86rem; color: var(--mid); line-height: 1.72; font-weight: 300; }

  /* CONTACT */
  #contact { background: white; }
  .contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6vw; align-items: start; }
  .contact-lead { font-family: 'Merriweather', serif; font-weight: 900; font-size: clamp(1.5rem, 2.3vw, 2.1rem); color: var(--blue); line-height: 1.2; margin-bottom: 0.8rem; }
  .contact-tagline { color: var(--gold-d); font-style: italic; font-size: 0.95rem; margin-bottom: 1.3rem; font-weight: 600; }
  .contact-sub { font-size: 0.93rem; color: var(--mid); line-height: 1.75; font-weight: 300; margin-bottom: 1.8rem; }
  .contact-links { display: flex; flex-direction: column; gap: 0.7rem; }
  .contact-link { display: flex; align-items: center; gap: 1rem; padding: 0.85rem 1.1rem; border: 1px solid var(--rule); border-radius: 6px; text-decoration: none; color: var(--ink); transition: all 0.2s; background: var(--off); }
  .contact-link:hover { background: var(--blue); color: white; border-color: var(--blue); }
  .cl-icon { font-size: 1.2rem; width: 1.8rem; text-align: center; }
  .cl-label { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.07em; text-transform: uppercase; color: var(--mid); display: block; }
  .contact-link:hover .cl-label { color: rgba(255,255,255,0.7); }
  .cl-val { font-size: 0.88rem; font-weight: 500; }
  .contact-form { display: flex; flex-direction: column; gap: 0.9rem; }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.9rem; }
  .fg { display: flex; flex-direction: column; gap: 0.32rem; }
  .fg label { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--mid); }
  .fg input, .fg textarea { padding: 0.75rem 0.95rem; border: 1.5px solid var(--rule); background: var(--off); color: var(--ink); font-family: 'Open Sans', sans-serif; font-size: 0.9rem; border-radius: 4px; transition: border-color 0.2s; resize: none; }
  .fg input:focus, .fg textarea:focus { outline: none; border-color: var(--blue); background: white; }
  .form-submit { display: flex; gap: 1rem; align-items: center; }
  .form-note { font-size: 0.76rem; color: var(--mid); }

  /* FOOTER */
  footer { background: var(--ink); color: rgba(255,255,255,0.65); padding: 3.5rem 5vw 2rem; }
  .footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 4vw; padding-bottom: 2.5rem; border-bottom: 1px solid rgba(255,255,255,0.1); margin-bottom: 2rem; }
  .footer-brand strong { font-family: 'Merriweather', serif; font-weight: 900; font-size: 1.2rem; color: var(--blue); display: block; margin-bottom: 0.4rem; }
  .footer-brand strong sup { color: var(--gold); font-size: 0.55rem; }
  .footer-tagline { font-size: 0.83rem; line-height: 1.65; color: rgba(255,255,255,0.5); }
  .footer-col h4 { font-family: 'Merriweather', serif; font-weight: 700; font-size: 0.88rem; color: white; margin-bottom: 0.9rem; }
  .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
  .footer-col ul a { font-size: 0.83rem; color: rgba(255,255,255,0.5); text-decoration: none; transition: color 0.2s; }
  .footer-col ul a:hover { color: var(--gold); }
  .footer-bottom { display: flex; justify-content: space-between; align-items: center; font-size: 0.78rem; }
  .footer-mark { font-family: 'Merriweather', serif; font-weight: 900; color: var(--blue); font-size: 1rem; }
  .footer-mark sup { color: var(--gold); font-size: 0.55rem; }

  /* RESPONSIVE */
  @media (max-width: 960px) {
    .hero-inner, .about-grid, .contact-grid, .expertise-grid { grid-template-columns: 1fr; }
    .hero-visual { display: none; }
    .services-grid, .steps-grid, .why-grid { grid-template-columns: 1fr 1fr; }
    .projects-grid { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr; gap: 2rem; }
    nav ul { display: none; }
  }
  @media (max-width: 560px) {
    .services-grid, .steps-grid, .why-grid, .form-row { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
  }

/* ============================================================
   GUTENBERG / BLOCK EDITOR OVERRIDES
   ============================================================ */

/* Remove WP default margins on blocks */
.wp-site-blocks > * { margin-block-start: 0; margin-block-end: 0; }
.entry-content > * + * { margin-top: 0; }

/* Block alignments */
.alignfull  { width: 100vw; max-width: 100vw; margin-inline: calc(50% - 50vw); }
.alignwide  { max-width: var(--wp--style--global--wide-size, 1400px); }

/* Gutenberg block spacing resets for our custom sections */
.db3-block { margin: 0 !important; padding-top: 7vh; padding-bottom: 7vh; padding-left: 5vw; padding-right: 5vw; }

/* Editor canvas background */
.editor-styles-wrapper { background: #fff; }
