/*
Theme Name: Ace 360 Services
Theme URI: https://ace360services.nl
Author: Ace 360 Services
Author URI: https://ace360services.nl
Description: Maatwerk WordPress-thema voor Ace 360 Services — webdesign en digitale groei in Nederland. Tweetalig (NL/EN) via een schakelaar in de Customizer; alle tekst staat in inc/copy.php. Bevat een offerte-schatter, dienstenoverzicht, werkwijze, portfolio, FAQ en contactformulier. Geen page builder, geen externe afhankelijkheden. / Bilingual custom theme with a quote estimator; switch language in the Customizer, all copy lives in inc/copy.php.
Version: 1.1.0
Requires at least: 6.0
Tested up to: 6.8
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: ace360
Tags: business, portfolio, one-column, custom-colors, custom-menu, editor-style, featured-images, threaded-comments, translation-ready
*/

/* ============================================================
   1. TOKENS
   ============================================================ */
:root {
  --ink:        #132A4A;
  --ink-deep:   #0C1D34;
  --blue:       #2B5FA8;
  --blue-tint:  #E8EEF6;
  --paper:      #F6F7F9;
  --white:      #FFFFFF;
  --grey:       #5C6674;
  --grey-soft:  #8892A0;
  --line:       #D8DFE8;
  --marker:     #FFCE3A;
  --marker-deep:#F0B400;

  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --mono: ui-monospace, SFMono-Regular, "SF Mono", "Cascadia Mono", Menlo, Consolas, "Liberation Mono", monospace;

  --wrap: 1140px;
  --gut: 24px;
  --radius: 10px;
  --radius-lg: 14px;

  --shadow-sm: 0 1px 2px rgba(19,42,74,.06);
  --shadow-md: 0 8px 28px rgba(19,42,74,.10);
  --shadow-lg: 0 24px 60px rgba(19,42,74,.16);
}

/* ============================================================
   2. RESET / BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: var(--blue); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--ink); }

:focus-visible {
  outline: 3px solid var(--marker);
  outline-offset: 2px;
  border-radius: 3px;
}

h1, h2, h3, h4 {
  font-weight: 800;
  letter-spacing: -.032em;
  line-height: 1.08;
  margin: 0 0 .5em;
  text-wrap: balance;
}
h1 { font-size: clamp(2.35rem, 5.4vw, 3.9rem); }
h2 { font-size: clamp(1.85rem, 3.6vw, 2.6rem); }
h3 { font-size: 1.22rem; letter-spacing: -.018em; line-height: 1.3; }
h4 { font-size: 1.02rem; letter-spacing: -.012em; }
p  { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }

.a3-lede { font-size: clamp(1.06rem, 1.6vw, 1.2rem); color: var(--grey); max-width: 54ch; }

/* Utility: monospace label — the "spec sheet" voice used for all labels + data */
.a3-tag {
  font-family: var(--mono);
  font-size: .715rem;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--grey-soft);
  font-weight: 500;
  display: block;
}

.a3-skip {
  position: absolute; left: -9999px;
  background: var(--ink); color: #fff; padding: 12px 18px; z-index: 999; border-radius: 0 0 8px 0;
}
.a3-skip:focus { left: 0; top: 0; color: #fff; }

.a3-wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 var(--gut); }

/* Two-column document grid: mono label rail + content */
.a3-grid { display: grid; grid-template-columns: 168px 1fr; gap: 40px; align-items: start; }
@media (max-width: 860px) { .a3-grid { grid-template-columns: 1fr; gap: 14px; } }

.a3-sec { padding: 88px 0; border-top: 1px solid var(--line); }
.a3-sec:first-of-type { border-top: 0; }
@media (max-width: 700px) { .a3-sec { padding: 60px 0; } }

/* ============================================================
   3. BUTTONS
   ============================================================ */
.a3-btn {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--sans); font-size: .95rem; font-weight: 650; letter-spacing: -.008em;
  padding: 13px 22px; border-radius: 8px; border: 1px solid transparent;
  cursor: pointer; text-decoration: none; transition: transform .14s ease, background .14s ease, box-shadow .14s ease, border-color .14s ease;
  line-height: 1.2;
}
.a3-btn:active { transform: translateY(1px); }

.a3-btn--primary { background: var(--ink); color: #fff; box-shadow: var(--shadow-sm); }
.a3-btn--primary:hover { background: var(--ink-deep); color: #fff; box-shadow: var(--shadow-md); }

.a3-btn--marker { background: var(--marker); color: var(--ink); font-weight: 700; }
.a3-btn--marker:hover { background: var(--marker-deep); color: var(--ink); }

.a3-btn--ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.a3-btn--ghost:hover { background: var(--white); border-color: var(--ink); color: var(--ink); }

.a3-btn--wide { width: 100%; justify-content: center; }

/* ============================================================
   4. HEADER
   ============================================================ */
.a3-head {
  position: sticky; top: 0; z-index: 60;
  background: rgba(246,247,249,.86);
  backdrop-filter: saturate(160%) blur(12px);
  -webkit-backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease, background .2s ease;
}
.a3-head.is-stuck { border-bottom-color: var(--line); background: rgba(246,247,249,.96); }
.a3-head__in { display: flex; align-items: center; justify-content: space-between; gap: 20px; height: 68px; }

.a3-logo { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; color: var(--ink); }
.a3-logo__mark { width: 26px; height: 26px; flex: 0 0 26px; }
.a3-logo__txt { font-weight: 800; letter-spacing: -.03em; font-size: 1.06rem; }
.a3-logo__txt span { color: var(--grey-soft); font-weight: 600; }

.a3-nav { display: flex; align-items: center; gap: 26px; }
.a3-nav ul { list-style: none; display: flex; gap: 26px; margin: 0; padding: 0; }
.a3-nav a {
  color: var(--ink); text-decoration: none; font-size: .93rem; font-weight: 550;
  padding: 6px 0; position: relative;
}
.a3-nav a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 2px;
  background: var(--marker); transform: scaleX(0); transform-origin: left; transition: transform .18s ease;
}
.a3-nav a:hover::after, .a3-nav .current-menu-item > a::after { transform: scaleX(1); }

.a3-burger {
  display: none; background: none; border: 1px solid var(--line); border-radius: 8px;
  width: 42px; height: 40px; cursor: pointer; padding: 0; align-items: center; justify-content: center;
}
.a3-burger span { display: block; width: 18px; height: 2px; background: var(--ink); position: relative; }
.a3-burger span::before, .a3-burger span::after {
  content: ""; position: absolute; left: 0; width: 18px; height: 2px; background: var(--ink);
}
.a3-burger span::before { top: -6px; } .a3-burger span::after { top: 6px; }

@media (max-width: 900px) {
  .a3-burger { display: inline-flex; }
  .a3-nav {
    position: fixed; inset: 68px 0 auto 0; background: var(--paper); border-bottom: 1px solid var(--line);
    flex-direction: column; align-items: stretch; gap: 0; padding: 8px var(--gut) 20px;
    display: none;
  }
  .a3-nav.is-open { display: flex; }
  .a3-nav ul { flex-direction: column; gap: 0; }
  .a3-nav li { border-bottom: 1px solid var(--line); }
  .a3-nav a { display: block; padding: 14px 0; font-size: 1.02rem; }
  .a3-nav a::after { display: none; }
  .a3-nav .a3-btn { margin-top: 16px; justify-content: center; }
}

/* ============================================================
   5. HERO + ESTIMATOR (signature element)
   ============================================================ */
.a3-hero { padding: 68px 0 76px; }
@media (max-width: 700px) { .a3-hero { padding: 40px 0 52px; } }

.a3-hero__grid { display: grid; grid-template-columns: 1fr 452px; gap: 56px; align-items: start; }
@media (max-width: 1000px) { .a3-hero__grid { grid-template-columns: 1fr; gap: 40px; } }

.a3-hero h1 { margin-bottom: 20px; }

/* The highlighter: yellow only ever marks a number or a promise. Never decoration. */
.a3-mark {
  background: linear-gradient(transparent 62%, var(--marker) 62%, var(--marker) 96%, transparent 96%);
  padding: 0 2px;
}

.a3-hero__cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }

.a3-trust { display: flex; flex-wrap: wrap; gap: 10px 26px; margin-top: 34px; padding-top: 26px; border-top: 1px solid var(--line); }
.a3-trust li { list-style: none; font-family: var(--mono); font-size: .765rem; color: var(--grey); letter-spacing: .01em; display: flex; align-items: center; gap: 8px; }
.a3-trust ul { display: contents; margin: 0; padding: 0; }
.a3-trust svg { flex: 0 0 14px; color: var(--blue); }

/* --- Estimator --- */
.a3-est {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md); overflow: hidden; position: sticky; top: 92px;
}
@media (max-width: 1000px) { .a3-est { position: static; } }

.a3-est__top { padding: 20px 22px 0; }
.a3-est__body { padding: 18px 22px 22px; }

.a3-est__row + .a3-est__row { margin-top: 20px; }
.a3-est__lab { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 9px; gap: 12px; }

.a3-seg { display: grid; grid-template-columns: 1fr 1fr; gap: 7px; }
.a3-seg input { position: absolute; opacity: 0; width: 0; height: 0; }
.a3-seg label {
  border: 1px solid var(--line); border-radius: 8px; padding: 10px 11px; cursor: pointer;
  font-size: .875rem; font-weight: 600; line-height: 1.25; text-align: left;
  transition: border-color .14s ease, background .14s ease, box-shadow .14s ease;
  background: var(--white);
}
.a3-seg label small { display: block; font-family: var(--mono); font-size: .68rem; color: var(--grey-soft); font-weight: 500; margin-top: 3px; letter-spacing: .02em; }
.a3-seg label:hover { border-color: var(--blue); }
.a3-seg input:checked + label { border-color: var(--ink); background: var(--blue-tint); box-shadow: inset 0 0 0 1px var(--ink); }
.a3-seg input:focus-visible + label { outline: 3px solid var(--marker); outline-offset: 2px; }

.a3-range { width: 100%; margin: 4px 0 0; accent-color: var(--ink); height: 24px; }
.a3-count { font-family: var(--mono); font-size: .85rem; font-weight: 600; color: var(--ink); }

.a3-checks { display: grid; gap: 6px; }
.a3-check { display: flex; align-items: flex-start; gap: 10px; cursor: pointer; font-size: .88rem; padding: 7px 9px; border-radius: 7px; transition: background .14s ease; }
.a3-check:hover { background: var(--blue-tint); }
.a3-check input { margin: 3px 0 0; accent-color: var(--ink); width: 16px; height: 16px; flex: 0 0 16px; }
.a3-check span { flex: 1; }
.a3-check em { font-family: var(--mono); font-style: normal; font-size: .76rem; color: var(--grey-soft); }

/* Output panel — ink block, yellow marks the number */
.a3-out { background: var(--ink); color: #fff; padding: 20px 22px 22px; }
.a3-out .a3-tag { color: rgba(255,255,255,.55); }
.a3-out__price {
  font-family: var(--mono); font-size: clamp(1.5rem, 3.6vw, 1.95rem); font-weight: 700; letter-spacing: -.03em;
  margin: 6px 0 0; display: inline-block; line-height: 1.15;
  box-shadow: inset 0 -.42em 0 rgba(255,206,58,.9);
  padding: 0 4px 1px;
  transition: opacity .16s ease;
}
.a3-out__price.is-swap { opacity: .35; }
.a3-out__meta { display: flex; flex-wrap: wrap; gap: 6px 22px; margin-top: 14px; padding-top: 14px; border-top: 1px solid rgba(255,255,255,.14); }
.a3-out__meta div { font-family: var(--mono); font-size: .78rem; color: rgba(255,255,255,.72); }
.a3-out__meta strong { color: #fff; font-weight: 600; display: block; font-size: .86rem; margin-top: 2px; }
.a3-out .a3-btn { margin-top: 18px; }
.a3-out__fine { font-family: var(--mono); font-size: .7rem; color: rgba(255,255,255,.45); margin: 11px 0 0; line-height: 1.5; }

/* ============================================================
   6. CARDS / SERVICES
   ============================================================ */
.a3-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
@media (max-width: 760px) { .a3-cards { grid-template-columns: 1fr; } }

.a3-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 24px; transition: border-color .16s ease, transform .16s ease, box-shadow .16s ease;
}
.a3-card:hover { border-color: var(--ink); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.a3-card h3 { margin: 12px 0 8px; }
.a3-card p { color: var(--grey); font-size: .95rem; margin: 0; }
.a3-card__icon { width: 34px; height: 34px; color: var(--blue); }
.a3-card__price { font-family: var(--mono); font-size: .8rem; color: var(--ink); margin-top: 14px; padding-top: 12px; border-top: 1px dashed var(--line); }

/* ============================================================
   7. WERKWIJZE — a real sequence, so it earns real numbers
   ============================================================ */
.a3-steps { display: grid; gap: 0; counter-reset: step; }
.a3-step {
  display: grid; grid-template-columns: 68px 1fr auto; gap: 22px; align-items: baseline;
  padding: 22px 0; border-top: 1px solid var(--line);
}
.a3-step:last-child { border-bottom: 1px solid var(--line); }
.a3-step__n { font-family: var(--mono); font-size: .8rem; color: var(--blue); font-weight: 600; letter-spacing: .04em; }
.a3-step h3 { margin: 0 0 5px; }
.a3-step p { color: var(--grey); font-size: .94rem; margin: 0; max-width: 62ch; }
.a3-step__t { font-family: var(--mono); font-size: .76rem; color: var(--grey-soft); white-space: nowrap; }
@media (max-width: 700px) {
  .a3-step { grid-template-columns: 52px 1fr; gap: 14px; }
  .a3-step__t { grid-column: 2; }
}

/* ============================================================
   8. WERK
   ============================================================ */
.a3-work { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
@media (max-width: 860px) { .a3-work { grid-template-columns: 1fr; } }
.a3-proj {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
  display: flex; flex-direction: column; transition: border-color .16s ease, transform .16s ease, box-shadow .16s ease;
}
.a3-proj:hover { border-color: var(--ink); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.a3-proj__img { aspect-ratio: 16 / 10; background: var(--blue-tint); position: relative; overflow: hidden; }
.a3-proj__img img { width: 100%; height: 100%; object-fit: cover; }
/* Placeholder reads as "screenshot goes here", not as a broken image. */
.a3-proj__ph {
  position: absolute; inset: 0; display: grid; place-items: center;
  font-family: var(--mono); font-size: .72rem; color: var(--grey-soft); letter-spacing: .08em;
  padding-top: 26px;
}
.a3-proj__ph::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 26px;
  background: rgba(255,255,255,.72); border-bottom: 1px solid var(--line);
}
.a3-proj__ph::after {
  content: ""; position: absolute; top: 11px; left: 14px; width: 4px; height: 4px; border-radius: 50%;
  background: var(--grey-soft);
  box-shadow: 9px 0 0 var(--grey-soft), 18px 0 0 var(--grey-soft);
  opacity: .5;
}
.a3-proj__b { padding: 18px 20px 20px; flex: 1; }
.a3-proj h3 { margin: 7px 0 6px; font-size: 1.08rem; }
.a3-proj p { color: var(--grey); font-size: .9rem; margin: 0; }

/* ============================================================
   9. FAQ
   ============================================================ */
.a3-faq { border-top: 1px solid var(--line); }
.a3-faq details { border-bottom: 1px solid var(--line); }
.a3-faq summary {
  cursor: pointer; padding: 19px 40px 19px 0; position: relative; list-style: none;
  font-weight: 650; font-size: 1.03rem; letter-spacing: -.012em;
}
.a3-faq summary::-webkit-details-marker { display: none; }
.a3-faq summary::after {
  content: "+"; position: absolute; right: 4px; top: 50%; transform: translateY(-50%);
  font-family: var(--mono); font-size: 1.3rem; color: var(--blue); font-weight: 400; line-height: 1;
}
.a3-faq details[open] summary::after { content: "\2013"; }
.a3-faq summary:hover { color: var(--blue); }
.a3-faq__a { padding: 0 48px 22px 0; color: var(--grey); font-size: .96rem; max-width: 70ch; }

/* ============================================================
   10. CONTACT
   ============================================================ */
.a3-contact { display: grid; grid-template-columns: 1fr 340px; gap: 48px; align-items: start; }
@media (max-width: 900px) { .a3-contact { grid-template-columns: 1fr; gap: 34px; } }

.a3-form { display: grid; gap: 15px; }
.a3-form__two { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
@media (max-width: 560px) { .a3-form__two { grid-template-columns: 1fr; } }
.a3-field label { display: block; margin-bottom: 6px; }
.a3-field input, .a3-field textarea, .a3-field select {
  width: 100%; font-family: var(--sans); font-size: .97rem; color: var(--ink);
  background: var(--white); border: 1px solid var(--line); border-radius: 8px; padding: 12px 13px;
  transition: border-color .14s ease, box-shadow .14s ease;
}
.a3-field textarea { min-height: 132px; resize: vertical; line-height: 1.55; }
.a3-field input:focus, .a3-field textarea:focus, .a3-field select:focus {
  outline: none; border-color: var(--ink); box-shadow: 0 0 0 3px rgba(43,95,168,.14);
}
.a3-hp { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }
.a3-consent { display: flex; gap: 10px; align-items: flex-start; font-size: .85rem; color: var(--grey); }
.a3-consent input { margin-top: 3px; accent-color: var(--ink); width: 16px; height: 16px; flex: 0 0 16px; }

.a3-note { border-radius: 8px; padding: 13px 15px; font-size: .92rem; border: 1px solid; }
.a3-note--ok { background: #EDF7EE; border-color: #B7DCBB; color: #1E4A24; }
.a3-note--err { background: #FDEDED; border-color: #F0C0C0; color: #6A2020; }

.a3-side { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; }
.a3-side__item { padding: 14px 0; border-bottom: 1px solid var(--line); }
.a3-side__item:last-of-type { border-bottom: 0; padding-bottom: 0; }
.a3-side__item a { font-family: var(--mono); font-size: .95rem; font-weight: 600; text-decoration: none; color: var(--ink); word-break: break-word; }
.a3-side__item a:hover { color: var(--blue); text-decoration: underline; }

/* ============================================================
   11. FOOTER
   ============================================================ */
.a3-foot { background: var(--ink-deep); color: rgba(255,255,255,.7); padding: 56px 0 26px; margin-top: 0; }
.a3-foot a { color: rgba(255,255,255,.7); text-decoration: none; }
.a3-foot a:hover { color: var(--marker); }
.a3-foot__grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; }
@media (max-width: 760px) { .a3-foot__grid { grid-template-columns: 1fr; gap: 28px; } }
.a3-foot .a3-logo { color: #fff; }
.a3-foot .a3-logo__txt span { color: rgba(255,255,255,.5); }
.a3-foot h4 { color: #fff; font-size: .8rem; font-family: var(--mono); letter-spacing: .12em; text-transform: uppercase; font-weight: 500; margin-bottom: 14px; }
.a3-foot ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 9px; font-size: .92rem; }
.a3-foot__p { font-size: .93rem; max-width: 40ch; margin-top: 16px; }
.a3-foot__legal {
  margin-top: 44px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.13);
  display: flex; flex-wrap: wrap; gap: 8px 26px; justify-content: space-between;
  font-family: var(--mono); font-size: .74rem; color: rgba(255,255,255,.45);
}
.a3-foot__legal ul { display: flex; flex-wrap: wrap; gap: 20px; }

/* ============================================================
   12. INNER PAGES / BLOG
   ============================================================ */
.a3-page { padding: 60px 0 88px; }
.a3-page__head { margin-bottom: 36px; padding-bottom: 26px; border-bottom: 1px solid var(--line); }
.a3-prose { max-width: 72ch; }
.a3-prose h2 { margin-top: 1.7em; font-size: 1.6rem; }
.a3-prose h3 { margin-top: 1.5em; }
.a3-prose ul, .a3-prose ol { padding-left: 1.3em; }
.a3-prose li { margin-bottom: .45em; }
.a3-prose blockquote {
  margin: 1.6em 0; padding: 4px 0 4px 20px; border-left: 3px solid var(--marker);
  color: var(--grey); font-size: 1.06rem;
}
.a3-prose img { border-radius: var(--radius); margin: 1.6em 0; }
.a3-prose code { font-family: var(--mono); font-size: .88em; background: var(--blue-tint); padding: 2px 5px; border-radius: 4px; }
.a3-prose table { width: 100%; border-collapse: collapse; margin: 1.6em 0; font-size: .94rem; }
.a3-prose th, .a3-prose td { border: 1px solid var(--line); padding: 9px 12px; text-align: left; }
.a3-prose th { background: var(--blue-tint); font-weight: 650; }

.a3-postlist { display: grid; gap: 16px; }
.a3-postcard { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; }
.a3-postcard:hover { border-color: var(--ink); }
.a3-postcard h2 { font-size: 1.35rem; margin: 8px 0 8px; }
.a3-postcard h2 a { color: var(--ink); text-decoration: none; }
.a3-postcard h2 a:hover { color: var(--blue); }
.a3-postcard p { color: var(--grey); font-size: .95rem; margin: 0; }

.a3-pag { display: flex; gap: 8px; margin-top: 36px; flex-wrap: wrap; }
.a3-pag .page-numbers {
  display: inline-flex; align-items: center; justify-content: center; min-width: 40px; height: 40px; padding: 0 12px;
  border: 1px solid var(--line); border-radius: 8px; background: var(--white); text-decoration: none;
  font-family: var(--mono); font-size: .85rem; color: var(--ink);
}
.a3-pag .page-numbers.current { background: var(--ink); color: #fff; border-color: var(--ink); }

/* WP core alignment classes */
.alignleft { float: left; margin: .4em 1.6em 1em 0; }
.alignright { float: right; margin: .4em 0 1em 1.6em; }
.aligncenter { margin-left: auto; margin-right: auto; }
.screen-reader-text {
  position: absolute !important; width: 1px; height: 1px; overflow: hidden;
  clip: rect(1px,1px,1px,1px); white-space: nowrap;
}
.wp-caption-text { font-family: var(--mono); font-size: .76rem; color: var(--grey-soft); text-align: center; }
