/* ============================================================
   ARETECH — About / Company page
   Builds on site.css. Two switchable directions for hero + timeline:
   [data-direction="a"] = "Monument" (editorial, full-bleed)
   [data-direction="b"] = "Blueprint" (engineering, structured)
   Accent driven by --accent (set by tweaks; defaults to Aretech blue).
   ============================================================ */
:root { --accent: #003B6D; }

.about-page { background: var(--paper); }

/* Direction visibility ------------------------------------------------ */
.dir { display: none; }
body[data-direction="a"] .dir--a { display: block; }
body[data-direction="b"] .dir--b { display: block; }
/* Hero-only: the shown direction becomes the full-height stage */
body[data-direction="a"] .about-hero .dir--a { display: flex; min-height: 100vh; align-items: flex-end; position: relative; }
body[data-direction="b"] .about-hero .dir--b { display: flex; min-height: 100vh; align-items: center; position: relative;
  background: linear-gradient(160deg, #0b1f38 0%, #07182b 60%, #05101f 100%); }

/* Shared eyebrow ------------------------------------------------------ */
.ab-eyebrow {
  font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase;
  font-weight: 700; color: var(--muted);
}
.ab-eyebrow.invert { color: #fff; opacity: 0.85; }

/* Placeholder media --------------------------------------------------- */
.ph {
  position: relative; overflow: hidden;
  background:
    repeating-linear-gradient(45deg, rgba(0,0,0,0.035) 0 12px, transparent 12px 24px),
    var(--bone);
  display: grid; place-items: center;
}
.ph::after {
  content: attr(data-ph);
  font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--muted); font-weight: 600; text-align: center; padding: 0 20px;
}
.ph.dark {
  background:
    repeating-linear-gradient(45deg, rgba(255,255,255,0.05) 0 12px, transparent 12px 24px),
    #14181d;
}
.ph.dark::after { color: rgba(255,255,255,0.55); }

/* ============================================================
   HERO
   ============================================================ */
.about-hero { position: relative; color: #fff; }

/* ---- Direction A: Monument ---- */
.hero-a-bg {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, #1b2228 0%, #0c1014 100%);
}
.hero-a-bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0) 30%, rgba(0,0,0,0.7) 100%);
}

/* Crossfading hero photo stack */
.hero-photos { position: absolute; inset: 0; z-index: 1; overflow: hidden; }
.hero-photos .hp {
  position: absolute; inset: 0;
  background-size: cover; background-repeat: no-repeat;
  opacity: 0; will-change: opacity, transform;
  animation: heroFade 30s infinite;
}
.hero-photos .hp1 {
  background-image: url('../img/team-kale.jpg');
  background-position: 50% 38%; transform: scale(1.12);
  transform-origin: 60% 40%; animation-delay: -26.1s;
}
.hero-photos .hp2 {
  background-image: url('../img/team-dan.jpg');
  background-position: 42% 50%; transform: scale(1.0);
  transform-origin: 30% 50%; animation-delay: -11.1s;
}
.hero-photos .hp3 {
  background-image: url('../img/team-mel.jpg');
  background-position: 64% 46%; transform: scale(1.22);
  transform-origin: 70% 45%; animation-delay: -3.6s;
}
.hero-photos .hp4 {
  background-image: url('../img/team-rich.jpg');
  background-position: 40% 42%; transform: scale(1.06);
  transform-origin: 35% 40%; animation-delay: -18.6s;
}
/* Gradient scrim over photos for headline legibility */
.hero-photos::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(8,12,16,0.62) 0%, rgba(8,12,16,0.16) 28%, rgba(8,12,16,0.56) 58%, rgba(8,12,16,0.9) 100%),
    linear-gradient(90deg, rgba(8,12,16,0.64) 0%, rgba(8,12,16,0.06) 62%);
}
@keyframes heroFade {
  0%   { opacity: 0; }
  3%   { opacity: 1; }
  22%  { opacity: 1; }
  27%  { opacity: 0; }
  100% { opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-photos .hp { animation: none; }
  .hero-photos .hp3 { opacity: 1; }
}
.hero-a-ph-label {
  position: absolute; top: 92px; right: 48px; z-index: 3;
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255,255,255,0.55); font-weight: 600;
  border: 1px solid rgba(255,255,255,0.25); border-radius: 999px; padding: 6px 14px;
  background: rgba(0,0,0,0.2);
}
.hero-a-watermark {
  position: absolute; right: -2vw; top: 50%; transform: translateY(-50%);
  font-size: 30vw; font-weight: 800; line-height: 0.8; color: #fff;
  opacity: 0.06; letter-spacing: -0.03em; z-index: 1; pointer-events: none;
}
.hero-a-inner {
  position: relative; z-index: 2; width: 100%;
  padding: 0 48px 80px 48px;
}.hero-a-inner .hero-headline {
  font-size: clamp(40px, 6.4vw, 90px); line-height: 1.02; font-weight: 700;
  letter-spacing: -0.02em; max-width: 16ch; margin: 18px 0 0;
  text-wrap: balance;
}
.hero-a-sub {
  margin-top: 26px; font-size: clamp(17px, 1.5vw, 21px); line-height: 1.55;
  color: rgba(255,255,255,0.85); max-width: 56ch;
}
.hero-a-meta {
  margin-top: 40px; display: flex; gap: 48px; align-items: flex-end;
  border-top: 1px solid rgba(255,255,255,0.18); padding-top: 26px;
}
.hero-a-meta .big { font-size: clamp(40px, 4.6vw, 68px); font-weight: 800; line-height: 0.9; letter-spacing: -0.02em; }
.hero-a-meta .lbl { font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255,255,255,0.65); font-weight: 600; margin-top: 8px; }

/* ---- Direction B: Blueprint ---- */
body[data-direction="b"] .about-hero { }
.hero-b-grid {
  position: absolute; inset: 0; z-index: 0; opacity: 0.5;
  background-image:
    linear-gradient(rgba(37,170,225,0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37,170,225,0.12) 1px, transparent 1px);
  background-size: 46px 46px;
  -webkit-mask-image: radial-gradient(120% 90% at 70% 50%, #000 40%, transparent 100%);
  mask-image: radial-gradient(120% 90% at 70% 50%, #000 40%, transparent 100%);
}
.hero-b-inner {
  position: relative; z-index: 2; width: 100%;
  display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 64px; align-items: center;
  padding: 120px 48px 80px;
}
.hero-b-inner .hero-headline {
  font-size: clamp(38px, 4.6vw, 76px); line-height: 1.04; font-weight: 700;
  letter-spacing: -0.02em; margin: 18px 0 0; text-wrap: balance; max-width: 15ch;
}
.hero-b-sub {
  margin-top: 24px; font-size: clamp(16px, 1.4vw, 20px); line-height: 1.6;
  color: rgba(255,255,255,0.82); max-width: 50ch;
}
.hero-b-card {
  border: 1px solid rgba(37,170,225,0.4);
  background: rgba(8, 22, 40, 0.5);
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  border-radius: 4px; padding: 0;
  position: relative;
}
.hero-b-card::before, .hero-b-card::after {
  content: ""; position: absolute; width: 10px; height: 10px;
  border: 2px solid var(--accent-cyan, #25AAE1);
}
.hero-b-card::before { top: -1px; left: -1px; border-right: 0; border-bottom: 0; }
.hero-b-card::after { bottom: -1px; right: -1px; border-left: 0; border-top: 0; }
.hero-b-card .row {
  padding: 22px 26px; border-bottom: 1px solid rgba(37,170,225,0.22);
}
.hero-b-card .row:last-child { border-bottom: 0; }
.hero-b-card .num {
  font-size: 56px; font-weight: 800; line-height: 0.92; letter-spacing: -0.02em; color: #fff;
}
.hero-b-card .num span { color: #25AAE1; }
.hero-b-card .cap {
  font-family: 'Courier New', monospace; font-size: 12px; letter-spacing: 0.08em;
  text-transform: uppercase; color: rgba(255,255,255,0.65); margin-top: 8px;
}

/* ============================================================
   STORY / EXPERTS
   ============================================================ */
.ab-section { padding: 120px 48px; }
.ab-section.bone { background: var(--bone); }
.story-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 72px; align-items: center; }
.story-copy h2 {
  font-size: clamp(30px, 3.4vw, 50px); font-weight: 700; letter-spacing: -0.015em;
  line-height: 1.08; margin: 16px 0 0; text-wrap: balance;
}
.story-copy p { margin-top: 22px; font-size: 18px; line-height: 1.7; color: #2a2a2a; max-width: none; }
.story-copy p .lead { font-weight: 600; color: var(--ink); }
.story-media { border-radius: 10px; }
.story-media img { display: block; width: 70%; height: auto; border-radius: 16px; margin-inline: auto; box-shadow: 0 24px 50px rgba(16,24,32,0.18); }

/* ============================================================
   FOUNDER
   ============================================================ */
.founder {
  position: relative; overflow: hidden;
  padding: 120px 48px;
  background: var(--bone);
  color: var(--ink);
}
.founder-hatch {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background: repeating-linear-gradient(45deg, rgba(255,255,255,0.04) 0 14px, transparent 14px 28px);
}
.founder-inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 72px; align-items: start;
}

/* Portrait column */
.founder-portrait { position: sticky; top: 100px; }
.fp-frame {
  position: relative; border-radius: 14px; overflow: hidden;
  border: 1px solid var(--rule);
  box-shadow: 0 24px 50px rgba(16,24,32,0.18);
}
.fp-frame::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 60%, rgba(0,0,0,0.22) 100%);
}
.fp-frame { width: 70%; margin-inline: auto; }
.fp-frame img {
  display: block; width: 100%; aspect-ratio: 2304 / 3072; object-fit: cover; object-position: 50% 30%;
}
.fp-name { width: 70%; margin-inline: auto; }
.fp-name {
  margin-top: 22px; padding-left: 18px; position: relative;
}
.fp-name::before {
  content: ""; position: absolute; left: 0; top: 4px; bottom: 4px; width: 3px;
  background: var(--accent);
}
.fp-n { font-size: 24px; font-weight: 700; letter-spacing: -0.01em; }
.fp-t {
  margin-top: 4px; font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--muted); font-weight: 600;
}

/* Story column */
.founder-copy h2 {
  font-size: clamp(30px, 3.4vw, 50px); font-weight: 700; letter-spacing: -0.015em;
  line-height: 1.08; margin: 16px 0 0; text-wrap: balance; max-width: 18ch;
}
.founder-copy p {
  margin-top: 22px; font-size: 18px; line-height: 1.7;
  color: #3a3a3a; max-width: none;
}
.founder-copy p .lead { font-weight: 700; color: var(--ink); }
.founder-epiphany {
  margin: 34px 0 8px; padding: 26px 30px; border-radius: 12px;
  background: rgba(0,59,109,0.05);
  border: 1px solid rgba(0,59,109,0.2);
  position: relative;
  display: grid; grid-template-columns: 1fr 220px; gap: 28px; align-items: center;
}
.founder-epiphany .fe-mark {
  color: var(--accent); font-size: 22px; line-height: 1;
}
.founder-epiphany p {
  margin-top: 12px; font-size: 21px; line-height: 1.5; font-weight: 600;
  color: var(--ink); max-width: none;
}
.fe-napkin { margin: 0; }
.fe-napkin img {
  display: block; width: 100%; height: auto;
  filter: drop-shadow(0 12px 24px rgba(16,24,32,0.22));
}

/* ============================================================
   TIMELINE
   ============================================================ */
.tl-section { padding: 120px 48px; }
.tl-head { text-align: center; max-width: 76ch; margin: 0 auto 64px; }
.tl-head h2 { font-size: clamp(30px, 3.4vw, 50px); font-weight: 700; letter-spacing: -0.015em; margin-top: 14px; }
.tl-head p { margin-top: 16px; font-size: 18px; line-height: 1.6; color: var(--muted); }

/* ---- Alternating spine with photos ---- */
.tl-zig { position: relative; max-width: 960px; margin: 0 auto; padding: 8px 0; }
.tl-zig::before {
  content: ""; position: absolute; left: 50%; top: 0; bottom: 0; width: 2px;
  background: var(--rule); transform: translateX(-50%);
}
.zig-row {
  position: relative; display: grid; grid-template-columns: 1fr 1fr;
  margin-bottom: 40px;
}
.zig-row:last-child { margin-bottom: 0; }
.zig-dot {
  position: absolute; left: 50%; top: 30px; width: 18px; height: 18px; border-radius: 50%;
  background: var(--ink); border: 4px solid var(--bone); margin-left: -9px; z-index: 2;
}
.zig-card {
  background: var(--paper); border: 1px solid var(--rule); border-radius: 14px;
  overflow: hidden; box-shadow: 0 10px 28px rgba(16,24,32,0.08);
  display: grid; grid-template-columns: 132px 1fr;
}
.zig-photo { min-height: 100%; }
.zig-photo.has-img { position: relative; overflow: hidden; }
.zig-photo.has-img img { position: absolute; inset: 0; display: block; width: 100%; height: 100%; object-fit: cover; }
.zig-photo.has-img.is-logo { background: #fff; }
.zig-photo.has-img.on-white { background: #fff; }
.zig-photo.has-img.is-logo img { object-fit: contain; object-position: 62% 50%; padding: 14px; transform: scale(1.97); }
.zig-text { padding: 20px 22px; }
.zig-yr { font-size: 24px; font-weight: 800; color: var(--ink); letter-spacing: -0.01em; }
.zig-ev { font-size: 17px; font-weight: 700; margin-top: 2px; letter-spacing: -0.01em; }
.zig-sub { font-size: 14px; color: var(--muted); margin-top: 7px; line-height: 1.5; }
.zig-row.left .zig-card { grid-column: 1; margin-right: 52px; }
.zig-row.right .zig-card { grid-column: 2; margin-left: 52px; }
.zig-row.now .zig-dot { background: var(--ink); }

/* ---- Direction A: horizontal stepped band ---- */
.tl-a { position: relative; display: grid; grid-auto-flow: column; grid-auto-columns: 1fr;
  gap: 0; overflow-x: auto; padding-bottom: 8px; }
.tl-a::-webkit-scrollbar { height: 6px; }
.tl-a::-webkit-scrollbar-thumb { background: rgba(0,0,0,0.18); border-radius: 3px; }
.tl-a .node { position: relative; padding: 0 22px; min-width: 180px; }
.tl-a .node::before {
  content: ""; position: absolute; top: 7px; left: 0; right: 0; height: 2px;
  background: var(--rule);
}
.tl-a .node:first-child::before { left: 50%; }
.tl-a .node:last-child::before { right: 50%; }
.tl-a .node .dot {
  position: relative; z-index: 1; width: 16px; height: 16px; border-radius: 50%;
  background: var(--accent); box-shadow: 0 0 0 4px rgba(255,255,255,1);
}
.tl-a .node .yr { font-size: 30px; font-weight: 800; letter-spacing: -0.01em; margin-top: 22px; color: var(--accent); }
.tl-a .node .ev { font-size: 15px; line-height: 1.5; color: #2a2a2a; margin-top: 8px; font-weight: 500; max-width: 22ch; }
.tl-a .node.now .dot { background: var(--ink); }
.tl-a .node.now .yr { color: var(--ink); }

/* ---- Direction B: vertical engineering spine ---- */
.tl-b { position: relative; max-width: 760px; margin: 0 auto; padding-left: 0; }
.tl-b::before {
  content: ""; position: absolute; left: 96px; top: 6px; bottom: 6px; width: 2px;
  background: var(--rule);
}
.tl-b .row { position: relative; display: grid; grid-template-columns: 80px 1fr; gap: 40px; padding: 0 0 40px; }
.tl-b .row:last-child { padding-bottom: 0; }
.tl-b .row .yr {
  text-align: right; font-family: 'Courier New', monospace; font-weight: 700;
  font-size: 18px; color: var(--accent); padding-top: 1px;
}
.tl-b .row .card { position: relative; }
.tl-b .row .card::before {
  content: ""; position: absolute; left: -33px; top: 4px; width: 13px; height: 13px;
  border-radius: 50%; background: #fff; border: 3px solid var(--accent);
}
.tl-b .row .ev { font-size: 18px; font-weight: 600; letter-spacing: -0.01em; }
.tl-b .row .ev-sub { font-size: 14.5px; color: var(--muted); margin-top: 4px; line-height: 1.5; }
.tl-b .row.now .card::before { background: var(--ink); border-color: var(--ink); }

/* ============================================================
   PILLARS (Why Aretech)
   ============================================================ */
.pillars { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.pillar {
  position: relative; background: var(--paper); padding: 40px 36px 38px;
  border: 1px solid var(--rule); border-radius: 14px;
  box-shadow: 0 1px 2px rgba(16,24,32,0.04), 0 10px 28px rgba(16,24,32,0.07);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.pillar::before {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 4px;
  background: var(--accent); transform: scaleY(0); transform-origin: top;
  transition: transform 0.25s ease;
}
.pillar:hover {
  transform: translateY(-4px);
  box-shadow: 0 2px 4px rgba(16,24,32,0.05), 0 18px 44px rgba(16,24,32,0.12);
}
.pillar:hover::before { transform: scaleY(1); }
.pillar h3 {
  font-size: 23px; font-weight: 700; letter-spacing: -0.01em; margin: 0;
  padding-bottom: 16px; position: relative;
}
.pillar h3::after {
  content: ""; position: absolute; left: 0; bottom: 0; width: 36px; height: 3px;
  background: var(--accent); border-radius: 2px;
}
.pillar p { margin-top: 18px; font-size: 16px; line-height: 1.65; color: #3a3a3a; }

/* ============================================================
   CRAFT (The littlest things)
   ============================================================ */
.craft-inner {
  display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 72px; align-items: start;
}
.craft-lede { position: sticky; top: 100px; }
.craft-lede h2 {
  font-size: clamp(30px, 3.4vw, 50px); font-weight: 700; letter-spacing: -0.018em;
  line-height: 1.06; margin: 14px 0 0; text-wrap: balance; max-width: 22ch;
}
.craft-lede > p {
  margin-top: 20px; font-size: 18px; line-height: 1.6; color: var(--muted); max-width: 42ch;
}
.craft-photo {
  margin-top: 32px; max-width: 80%; border-radius: 14px; border: 1px solid var(--rule);
  overflow: hidden; background: #fff; aspect-ratio: 1 / 1;
}
.craft-photo img { display: block; width: 100%; height: 100%; object-fit: cover; object-position: 50% 100%; }
.craft-list { list-style: none; margin: 33px 0 0; padding: 0; }
.craft-item {
  display: block;
  padding: 28px 0; border-top: 1px solid var(--rule);
}
.craft-item:first-child { border-top: none; padding-top: 0; }
.craft-item:last-child { padding-bottom: 0; }
.craft-body { position: relative; padding-left: 24px; }
.craft-body::before {
  content: ""; position: absolute; left: 0; top: 9px;
  width: 12px; height: 2px; background: var(--accent);
}
.craft-body h3 { font-size: 21px; font-weight: 700; letter-spacing: -0.01em; margin: 0; }
.craft-body p { margin-top: 8px; font-size: 15.5px; line-height: 1.6; color: #3a3a3a; max-width: 48ch; }
.craft-close {
  margin: 64px auto 0; max-width: 64ch; text-align: center;
  font-size: clamp(20px, 2vw, 26px); line-height: 1.5; font-weight: 500; color: var(--ink);
  text-wrap: balance;
}
.craft-close strong { color: var(--accent); font-weight: 700; }

/* ============================================================
   PROOF STATS
   ============================================================ */
.proof { background: var(--ink); color: #fff; }
.proof-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.proof .stat { padding: 8px 0; border-top: 2px solid var(--accent); }
.proof .stat .n { font-size: clamp(40px, 4.4vw, 64px); font-weight: 800; line-height: 0.95; letter-spacing: -0.02em; }
.proof .stat .l { margin-top: 14px; font-size: 14.5px; line-height: 1.5; color: rgba(255,255,255,0.7); max-width: 24ch; }

/* ============================================================
   CTA BAND
   ============================================================ */
.ab-cta { padding: 120px 48px; text-align: center; }
.ab-cta h2 { font-size: clamp(30px, 3.6vw, 54px); font-weight: 700; letter-spacing: -0.02em; max-width: 18ch; margin: 0 auto; text-wrap: balance; }
.ab-cta p { margin: 22px auto 0; font-size: 18px; color: var(--muted); max-width: 52ch; line-height: 1.6; }
.ab-cta .btn-row { margin-top: 36px; display: inline-flex; gap: 14px; flex-wrap: wrap; justify-content: center; }
.ab-btn {
  display: inline-flex; align-items: center; gap: 10px; padding: 16px 28px; border-radius: 10px;
  font-weight: 700; font-size: 15px; transition: transform 0.2s var(--easing), background 0.2s var(--easing);
}
.ab-btn.primary { background: var(--ink); color: #fff; }
.ab-btn.primary:hover { transform: translateY(-2px); filter: brightness(1.08); }
.ab-btn.ghost { border: 1px solid var(--rule); color: var(--ink); }
.ab-btn.ghost:hover { background: var(--bone); transform: translateY(-2px); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .hero-b-inner { grid-template-columns: 1fr; gap: 40px; }
  .story-grid { grid-template-columns: 1fr; gap: 40px; }
  .story-media { aspect-ratio: auto; }
  .founder-inner { grid-template-columns: 1fr; gap: 40px; }
  .founder-portrait { position: static; top: auto; max-width: 420px; }
  .founder-epiphany { grid-template-columns: 1fr; gap: 18px; }
  .fe-napkin { max-width: 300px; margin: 0 auto; }
  .pillars { grid-template-columns: 1fr; }
  .craft-inner { grid-template-columns: 1fr; gap: 36px; }
  .craft-lede { position: static; top: auto; }
  .craft-lede h2 { max-width: none; }
  .craft-photo { max-width: 460px; }
  .proof-grid { grid-template-columns: repeat(2, 1fr); gap: 36px 24px; }
  .ab-section, .tl-section, .ab-cta, .founder { padding: 80px 24px; }
  .hero-a-inner { padding: 0 24px 64px; }
  .hero-b-inner { padding: 120px 24px 64px; }
}
@media (max-width: 860px) {
  .tl-zig { max-width: 520px; }
  .tl-zig::before { left: 26px; }
  .zig-row { grid-template-columns: 1fr; margin-bottom: 28px; }
  .zig-dot { left: 26px; top: 28px; }
  .zig-row.left .zig-card,
  .zig-row.right .zig-card { grid-column: 1; margin: 0 0 0 56px; }
}
@media (max-width: 560px) {
  .hero-a-meta { gap: 28px; flex-wrap: wrap; }
  .proof-grid { grid-template-columns: 1fr 1fr; }
  .tl-b::before { left: 70px; }
  .tl-b .row { grid-template-columns: 56px 1fr; gap: 28px; }
  /* Stack the photo full-width above the text so it isn't crushed into a narrow
     side strip. Reset the desktop zoom/pan transforms (tuned for the 132px
     column) so nothing gets cropped off. */
  .zig-card { grid-template-columns: 1fr; }
  .zig-photo.has-img { height: 188px; }
  .zig-photo.has-img img { transform: none !important; object-position: center !important; }
  .zig-photo.has-img.is-logo img { transform: scale(1.08) !important; }
}
