/* ============================================================
   Homepage variants — switched via the `homepage` tweak.
     editorial : large photo hero + 2×2 photo card grid for services
     ledger    : typographic hero with mono data-spine + index-style services
     schematic : engineering blueprint hero + spec cards with line diagrams
   ============================================================ */

/* Shared section heading layout */
.home-head {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 24px;
  /* gap to the content below is native (container group blockGap), not a CSS margin */
}
.home-head h2 {
  margin: 6px 0 0;
  font-size: 38px;
  letter-spacing: -0.018em;
  line-height: 1.1;
  font-weight: 600;
  text-wrap: balance;
}
.home-head .home-head-meta {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-4);
  letter-spacing: 0;
}

/* ============================================================
   Variant A — Editorial: photo hero + photo cards for services
   ============================================================ */

/* Hero ----------------------------------------------------- */
.hero-editorial {
  position: relative;
  border-bottom: 1px solid var(--line);
  background: var(--ink);
  overflow: hidden;
  min-height: 680px;
  display: flex;
  align-items: flex-end;
}
.hero-editorial-photo {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-editorial-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 30% center;
  display: block;
}
.hero-editorial-grade {
  position: absolute;
  inset: 0;
  /* Strong bottom-left ink wash for headline legibility,
     a softer right gradient so the meta rail reads too. */
  background:
    linear-gradient(180deg,
      rgba(4,24,40,0.30) 0%,
      rgba(4,24,40,0.05) 32%,
      rgba(4,24,40,0.20) 62%,
      rgba(4,24,40,0.88) 100%),
    linear-gradient(90deg,
      rgba(4,24,40,0.45) 0%,
      rgba(4,24,40,0.0) 55%,
      rgba(4,24,40,0.35) 100%);
  pointer-events: none;
}
.hero-editorial-frame {
  position: relative;
  z-index: 1;
  width: 100%;
  /* Inherit .container's side padding (var(--gutter)); only set vertical here. */
  padding-top: 96px;
  padding-bottom: 56px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 56px;
  align-items: end;
}
.hero-editorial-copy {
  color: #fff;
  max-width: 640px;
}
.hero-editorial-copy .eyebrow {
  display: block;
  color: rgba(255,255,255,0.75);
  margin-bottom: 18px;
}
.hero-editorial-copy h1 {
  font-size: 64px;
  line-height: 1.0;
  letter-spacing: -0.028em;
  font-weight: 600;
  color: #fff;
  margin: 0 0 22px;
  text-wrap: balance;
  text-shadow: 0 2px 24px rgba(4,24,40,0.35);
}
.hero-editorial-copy h1 .accent {
  /* Use a lighter brand tone so the red doesn't muddy on the photo */
  color: #F09499;
}
.hero-editorial-copy .lede {
  font-size: 17px;
  color: rgba(255,255,255,0.86);
  line-height: 1.55;
  margin: 0 0 28px;
  max-width: 48ch;
  text-shadow: 0 1px 16px rgba(4,24,40,0.45);
}
.hero-editorial-copy .ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Secondary CTA tuned for dark photo background */
.hero-editorial-copy .btn.btn-ghost-light {
  background: rgba(255,255,255,0.08);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.hero-editorial-copy .btn.btn-ghost-light:hover {
  background: rgba(255,255,255,0.16);
  border-color: rgba(255,255,255,0.7);
}

/* Right rail: stamp + 3 stats, hairline-separated */
.hero-editorial-rail {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-end;
  color: #fff;
  min-width: 280px;
}
.hero-editorial-stamp {
  display: grid;
  grid-template-columns: auto auto;
  gap: 4px 18px;
  align-items: baseline;
  padding: 12px 14px;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--r-2);
}
.hero-editorial-stamp .k {
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.55);
}
.hero-editorial-stamp .v {
  font-family: var(--font-mono);
  font-size: 12px;
  color: #fff;
}
.hero-editorial-meta {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 0;
  padding: 14px 4px 0;
  width: 100%;
}
.hero-editorial-meta .stat {
  padding: 0 18px;
  border-left: 1px solid rgba(255,255,255,0.2);
}
.hero-editorial-meta .stat:first-child {
  border-left: none;
  padding-left: 0;
}
.hero-editorial-meta .stat:last-child { padding-right: 0; }
.hero-editorial-meta .stat .num {
  display: block;
  font-family: var(--font-mono);
  font-size: 22px;
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.01em;
  line-height: 1.1;
  margin-bottom: 4px;
}
.hero-editorial-meta .stat .lbl {
  font-family: var(--font-sans);
  font-size: 11px;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.04em;
  line-height: 1.4;
}

@media (max-width: 980px) {
  .hero-editorial { min-height: 560px; }
  .hero-editorial-frame {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 56px 0 32px;
  }
  .hero-editorial-copy h1 { font-size: 44px; }
  .hero-editorial-rail {
    align-items: flex-start;
    min-width: 0;
  }
  .hero-editorial-stamp { width: 100%; }
}

/* Services (photo cards) — one row of four ---------------- */
.svc-editorial { padding: var(--wp--preset--spacing--80) 0; }
.svc-editorial .grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (max-width: 1100px) {
  .svc-editorial .grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .svc-editorial .grid { grid-template-columns: 1fr; }
}
.svc-editorial .card {
  display: grid;
  grid-template-rows: 200px 1fr;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-3);
  overflow: hidden;
  cursor: pointer;
  transition:
    transform 200ms var(--ease-out),
    border-color 200ms var(--ease-out),
    box-shadow 200ms var(--ease-out);
}
.svc-editorial .card:hover {
  border-color: var(--line-3);
  box-shadow: var(--sh-2);
  transform: translateY(-2px);
}
.svc-editorial .card .photo {
  position: relative;
  overflow: hidden;
  background: var(--paper-2);
}
.svc-editorial .card .photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 600ms var(--ease-out);
}
.svc-editorial .card:hover .photo img { transform: scale(1.04); }
.svc-editorial .card .photo .tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink);
  padding: 4px 9px;
  border-radius: var(--r-pill);
  font-weight: 500;
}
.svc-editorial .card .body {
  padding: 18px 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.svc-editorial .card .name {
  margin: 0;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.014em;
  line-height: 1.15;
  color: var(--ink);
}
.svc-editorial .card:hover .name { color: var(--brand-500); }
.svc-editorial .card .lede {
  margin: 0;
  font-size: 13px;
  color: var(--ink-3);
  line-height: 1.5;
  /* Keep cards equal height visually — trim to 2 lines */
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.svc-editorial .card .foot {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding-top: 12px;
  margin-top: auto;
  border-top: 1px solid var(--line);
}
.svc-editorial .card .foot .cell {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.svc-editorial .card .foot .cell .k {
  font-family: var(--font-mono);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink-4);
}
.svc-editorial .card .foot .cell .v {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--ink);
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ============================================================
   Variant B — Ledger hero (typographic + mono data spine)
   ============================================================ */
.hero-ledger {
  padding: 88px 0 72px;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}
.hero-ledger .grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 56px;
  align-items: stretch;
}
.hero-ledger .titles {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 32px;
}
.hero-ledger .titles .eyebrow { margin-bottom: 16px; }
.hero-ledger .titles h1 {
  font-size: 100px;
  line-height: 0.94;
  letter-spacing: -0.038em;
  margin: 0;
  font-weight: 600;
  color: var(--ink);
}
.hero-ledger .titles h1 .accent { color: var(--brand-500); }
.hero-ledger .titles h1 .serif {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--ink-3);
  display: block;
  font-size: 26px;
  line-height: 1.35;
  margin-top: 24px;
  max-width: 26ch;
}
.hero-ledger .ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.hero-ledger .spine {
  background: var(--ink);
  color: #fff;
  border-radius: var(--r-3);
  padding: 28px 30px 22px;
  display: flex;
  flex-direction: column;
}
.hero-ledger .spine .head {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.55);
  margin: 0 0 14px;
}
.hero-ledger .spine .row {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 20px;
  padding: 14px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  align-items: baseline;
}
.hero-ledger .spine .row .v {
  font-family: var(--font-mono);
  font-size: 26px;
  font-weight: 500;
  color: #fff;
  letter-spacing: -0.01em;
  line-height: 1;
}
.hero-ledger .spine .row .l {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  line-height: 1.4;
  text-wrap: balance;
}
@media (max-width: 980px) {
  .hero-ledger .grid { grid-template-columns: 1fr; }
  .hero-ledger .titles h1 { font-size: 64px; }
}

/* ============================================================
   Variant B — Ledger services (encyclopedia rows)
   ============================================================ */
.svc-ledger {
  padding: 88px 0;
  background: var(--white);
}
.svc-ledger .rows .row {
  display: grid;
  grid-template-columns: 72px 1.2fr 1fr 170px 140px 32px;
  align-items: baseline;
  gap: 28px;
  padding: 40px 0;
  border-top: 1px solid var(--ink);
  cursor: pointer;
  transition: background 180ms var(--ease-out), padding 180ms var(--ease-out);
}
.svc-ledger .rows .row:last-child { border-bottom: 1px solid var(--ink); }
.svc-ledger .rows .row:hover {
  background: var(--paper-2);
  padding-left: 16px;
}
.svc-ledger .rows .row .num {
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--ink-4);
  align-self: start;
  padding-top: 14px;
}
.svc-ledger .rows .row h3 {
  margin: 0;
  font-size: 56px;
  font-weight: 600;
  letter-spacing: -0.028em;
  line-height: 0.95;
  color: var(--ink);
  text-wrap: balance;
}
.svc-ledger .rows .row:hover h3 { color: var(--brand-500); }
.svc-ledger .rows .row .lede {
  margin: 0;
  font-size: 15px;
  color: var(--ink-3);
  line-height: 1.5;
  max-width: 38ch;
  align-self: start;
  padding-top: 10px;
}
.svc-ledger .rows .row .cell-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink-4);
  margin-bottom: 6px;
}
.svc-ledger .rows .row .cell-value {
  font-family: var(--font-mono);
  font-size: 18px;
  font-weight: 500;
  color: var(--ink);
}
.svc-ledger .rows .row .arrow {
  color: var(--ink-4);
  align-self: center;
  transition: color 180ms var(--ease-out), transform 180ms var(--ease-out);
}
.svc-ledger .rows .row:hover .arrow {
  color: var(--brand-500);
  transform: translateX(4px);
}
@media (max-width: 980px) {
  .svc-ledger .rows .row {
    grid-template-columns: 48px 1fr;
    grid-template-rows: auto auto auto auto;
    gap: 8px 16px;
  }
  .svc-ledger .rows .row h3 { font-size: 40px; grid-column: 2; }
  .svc-ledger .rows .row .lede { grid-column: 2; }
  .svc-ledger .rows .row > div:nth-child(4),
  .svc-ledger .rows .row > div:nth-child(5) { grid-column: 2; display: inline-block; margin-right: 24px; }
  .svc-ledger .rows .row .arrow { display: none; }
}

/* ============================================================
   Variant C — Schematic hero (engineering blueprint)
   ============================================================ */
.hero-schem {
  padding: 64px 0 48px;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}
.hero-schem .grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 48px;
  align-items: center;
}
.hero-schem .copy .eyebrow { margin-bottom: 14px; }
.hero-schem .copy h1 {
  font-size: 56px;
  line-height: 1.02;
  letter-spacing: -0.026em;
  margin: 0 0 18px;
  font-weight: 600;
  text-wrap: balance;
}
.hero-schem .copy h1 .alt {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.022em;
  color: var(--brand-500);
  display: block;
  margin-top: 6px;
}
.hero-schem .copy .lede {
  font-size: 17px;
  color: var(--ink-2);
  margin: 0 0 28px;
  max-width: 52ch;
  line-height: 1.55;
}
.hero-schem .copy .ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.hero-schem .copy .legend {
  margin-top: 36px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 28px;
}
.hero-schem .copy .legend .item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--ink-2);
}
.hero-schem .copy .legend .item .marker {
  width: 22px;
  height: 22px;
  border: 1.5px solid var(--ink);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 11px;
  font-weight: 600;
  color: var(--ink);
  background: var(--white);
  flex-shrink: 0;
}

.hero-schem .visual {
  position: relative;
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--r-3);
  padding: 28px 24px;
  aspect-ratio: 5 / 4;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.hero-schem .visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(4,36,59,0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(4,36,59,0.04) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
}
.hero-schem .visual .stamp {
  position: absolute;
  left: 18px;
  bottom: 14px;
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--ink-4);
  letter-spacing: 0.04em;
  display: flex;
  gap: 10px;
}
.hero-schem .visual .stamp b { color: var(--ink); font-weight: 500; }
.hero-schem .visual svg {
  width: 100%;
  height: 100%;
  position: relative;
  display: block;
}
@media (max-width: 980px) {
  .hero-schem .grid { grid-template-columns: 1fr; }
  .hero-schem .copy h1 { font-size: 40px; }
}

/* ============================================================
   Variant C — Schematic services (spec cards with line diagrams)
   ============================================================ */
.svc-schem { padding: 80px 0; }
.svc-schem .grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.svc-schem .card {
  display: grid;
  grid-template-columns: 220px 1fr;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-3);
  overflow: hidden;
  cursor: pointer;
  transition: border-color 180ms var(--ease-out), box-shadow 180ms var(--ease-out);
}
.svc-schem .card:hover {
  border-color: var(--ink);
  box-shadow: var(--sh-2);
}
.svc-schem .schem {
  background: var(--paper-2);
  border-right: 1px solid var(--line);
  padding: 18px;
  display: grid;
  place-items: center;
  position: relative;
  color: var(--ink);
}
.svc-schem .schem::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(4,36,59,0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(4,36,59,0.04) 1px, transparent 1px);
  background-size: 16px 16px;
  pointer-events: none;
}
.svc-schem .schem svg {
  width: 100%;
  height: 100%;
  max-height: 180px;
  position: relative;
}
.svc-schem .card:hover .schem { color: var(--brand-500); }
.svc-schem .body {
  padding: 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.svc-schem .head-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}
.svc-schem .name {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.012em;
  color: var(--ink);
  margin: 0;
}
.svc-schem .tag {
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink-4);
  white-space: nowrap;
}
.svc-schem .lede {
  font-size: 13px;
  color: var(--ink-3);
  line-height: 1.5;
  margin: 0;
}
.svc-schem .params {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4px 16px;
  margin-top: 4px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}
.svc-schem .params .p {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 12px;
  padding: 2px 0;
}
.svc-schem .params .p .k { color: var(--ink-4); }
.svc-schem .params .p .v { color: var(--ink); }
.svc-schem .foot {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-top: 8px;
}
.svc-schem .foot .price {
  font-family: var(--font-mono);
  font-size: 18px;
  font-weight: 600;
  color: var(--ink);
}
.svc-schem .foot .price small {
  font-family: var(--font-sans);
  font-size: 11px;
  color: var(--ink-4);
  font-weight: 400;
  margin-left: 4px;
}
.svc-schem .foot .ask {
  font-size: 13px;
  color: var(--brand-500);
  font-weight: 500;
}
.svc-schem .card:hover .ask { text-decoration: underline; text-underline-offset: 3px; }

@media (max-width: 980px) {
  .svc-schem .grid { grid-template-columns: 1fr; }
  .svc-schem .card { grid-template-columns: 1fr; }
  .svc-schem .schem {
    border-right: none;
    border-bottom: 1px solid var(--line);
    height: 180px;
  }
}

/* ============================================================
   Shared — Trust block with photo (replaces the infographic
   "17 aastat / 2 800+" / Estonia map version in editorial)
   ============================================================ */
.trust-photo { padding: var(--wp--preset--spacing--80) 0; background: var(--paper); } /* 96px desktop (design), fluid */
.trust-photo-grid {
  /* asymmetric 1.05fr/1fr 2-col is BESPOKE — native grid only does equal cols,
     so this layout stays CSS (Block-First: CSS for what blocks can't express) */
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: var(--wp--preset--spacing--60);
  align-items: start; /* top-align columns — content reads from the top-left, text not vertically centered */
}
.trust-photo-image {
  position: relative;
  aspect-ratio: 5 / 4;
  border-radius: var(--r-3);
  overflow: hidden;
  margin: 0;
}
/* core/image wrapper must fill the 5/4 box, else img keeps its natural ratio
   and leaves a gap below (height:100% needs a definite-height parent) */
.trust-photo-image .wp-block-image { display: block; height: 100%; margin: 0; }
.trust-photo-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* overlay scoped under .trust-photo-image (0,2,0) so it beats the editor's
   position:relative-on-blocks and stays a corner stamp in the editor too */
.trust-photo-image .trust-photo-stamp {
  position: absolute;
  left: 18px;
  bottom: 18px;
  display: grid;
  grid-template-columns: auto auto;
  gap: 4px 16px;
  align-items: baseline;
  padding: 10px 14px;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: var(--r-2);
  box-shadow: var(--sh-1);
}
.trust-photo-stamp .k {
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink-4);
}
.trust-photo-stamp .v {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--ink);
}

/* vertical rhythm is BESPOKE (18/18/28 — varied, native uniform blockGap can't
   express it; and margin:0 resets would kill blockGap anyway). Margins here. */
.trust-photo-text .eyebrow { margin-bottom: 18px; }
.trust-photo-text h2 {
  margin: 0 0 18px;
  font-size: 44px;
  line-height: 1.05;
  letter-spacing: -0.024em;
  font-weight: 600;
  color: var(--ink);
  text-wrap: balance;
}
.trust-photo-text .lede {
  margin: 0 0 28px;
  font-size: 17px;
  color: var(--ink-3);
  line-height: 1.55;
  max-width: 52ch;
}
.trust-photo-text .pillars {
  /* list spacing (between li) is NATIVE blockGap; list reset + divider stay CSS.
     padding: all 4 sides — reset the <ul> default padding-left (40px) too */
  list-style: none;
  margin: 0;
  padding: 22px 0 0;
  border-top: 1px solid var(--line);
}
.trust-photo-text .pillars li {
  /* icon | text row is NATIVE flex (blockGap); only the ink color stays CSS */
  color: var(--ink-2);
}
/* pillar icons via CSS ::before (were wp:html SVGs — those render as wide empty
   blocks in the editor and break the flex row). data-URI line icons, identical
   in editor + front; the ::before is the first flex item next to the text. */
.trust-photo-text .pillars li::before {
  content: "";
  flex: 0 0 20px;
  height: 20px;
  margin-top: 1px;
  background: var(--pi) center / 20px 20px no-repeat;
}
.trust-photo-text .pillars li:nth-child(1) { --pi: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231A3349' stroke-width='1.6'><path d='M12 3l8 3v6c0 5-3.5 8-8 9-4.5-1-8-4-8-9V6l8-3z'/><path d='M9 12l2 2 4-4'/></svg>"); }
.trust-photo-text .pillars li:nth-child(2) { --pi: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231A3349' stroke-width='1.6'><path d='M5 4h4l2 5-3 2a12 12 0 006 6l2-3 5 2v4a2 2 0 01-2 2A17 17 0 013 6a2 2 0 012-2z'/></svg>"); }
.trust-photo-text .pillars li:nth-child(3) { --pi: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231A3349' stroke-width='1.6'><path d='M21 7a5 5 0 01-7 5l-7 7-3-3 7-7a5 5 0 015-7l-2 4 2 2 4-2z'/></svg>"); }
.trust-photo-text .pillars .pillar-name {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
}
.trust-photo-text .pillars .pillar-text {
  margin: 0;
  font-size: 13px;
  color: var(--ink-3);
  line-height: 1.45;
}

@media (max-width: 980px) {
  .trust-photo-grid { grid-template-columns: 1fr; gap: var(--wp--preset--spacing--40); }
  .trust-photo-text h2 { font-size: 32px; }
}
