/* Pages — home hero, services grid, cta bands, page-specific */

/* -------- HOME -------- */
.home-hero {
  position: relative;
  background: var(--ink);
  color: #fff;
  padding-block: 2.5rem 2.5rem;
  min-height: calc(100vh - var(--nav-h));
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}
/* Full-bleed looping video background */
.home-hero .hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -3;
  pointer-events: none;
}
/* Dark overlay — left-weighted for text legibility, with a subtle brand glow */
.home-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(95deg, rgba(11,27,59,.94) 0%, rgba(11,27,59,.82) 32%, rgba(11,27,59,.5) 62%, rgba(11,27,59,.24) 100%),
    radial-gradient(60% 70% at 5% 100%, rgba(240,196,32,.18) 0%, transparent 55%);
  pointer-events: none;
  z-index: -2;
}
/* Top and bottom vignette */
.home-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(11,27,59,.55) 0%, transparent 18%, transparent 72%, var(--ink) 100%);
  pointer-events: none;
  z-index: -1;
}
/* Thin gold accent rule on left edge for editorial feel */
.home-hero .hero-accent-rule {
  position: absolute;
  left: 0; top: 35%;
  width: 3px;
  height: 30%;
  background: linear-gradient(to bottom, transparent 0%, var(--gold-hi) 35%, var(--gold-hi) 65%, transparent 100%);
  box-shadow: 0 0 40px rgba(255,216,54,.7);
  pointer-events: none;
  z-index: 2;
}

/* Trust row above hero headline */
.home-hero .trust-row {
  display: inline-flex;
  gap: 1.5rem;
  align-items: center;
  margin-bottom: 2.25rem;
  padding: .65rem 1.15rem .65rem .9rem;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-pill);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  flex-wrap: wrap;
}
.home-hero .trust-row span {
  color: var(--on-dark);
  font-size: .72rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 600;
  font-family: var(--font-display);
  display: inline-flex;
  align-items: center;
  gap: .45rem;
}
.home-hero .trust-row span::before {
  content: "";
  display: inline-block;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--gold-hi);
  box-shadow: 0 0 0 3px rgba(240,196,32,.25), 0 0 10px rgba(255,216,54,.6);
}
.home-hero-inner {
  display: flex;
  align-items: center;
  width: 100%;
  position: relative;
}
.home-hero-inner > .hero-content { max-width: 680px; }
.home-hero .trust-row { margin-bottom: 1.5rem; }
.home-hero .hero-kicker { margin-bottom: 1rem; }
.home-hero .hero-sub { margin-top: 1.1rem; }
.home-hero .hero-ctas { margin-top: 1.6rem; }
.home-hero .hero-kicker {
  color: var(--gold-hi);
  font-size: .82rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  font-weight: 600;
  font-family: var(--font-display);
  margin-bottom: 1.5rem;
  display: inline-block;
  text-shadow: 0 0 24px rgba(240,196,32,.4);
}
.home-hero h1 {
  color: #fff;
  font-size: var(--fs-display);
  max-width: 18ch;
  line-height: 1.05;
  text-shadow: 0 2px 24px rgba(0,0,0,.4);
}
.home-hero .hero-sub {
  margin-top: 1.5rem;
  font-size: clamp(1.05rem, .5vw + 1rem, 1.2rem);
  color: var(--on-dark);
  max-width: 54ch;
  line-height: 1.6;
  text-shadow: 0 2px 16px rgba(0,0,0,.5);
}
.home-hero .hero-ctas {
  margin-top: 2.25rem;
  display: flex;
  gap: .85rem;
  flex-wrap: wrap;
}

/* Legacy hero-media card — retained for non-home pages if ever reused, hidden on home */
.home-hero .hero-media { display: none; }

/* Watermark — full logo overlaid on the hero video at low opacity */
.home-hero .hero-logo {
  position: absolute;
  right: -3%;
  top: 50%;
  transform: translateY(-50%);
  width: clamp(420px, 50vw, 760px);
  height: auto;
  z-index: 1;
  pointer-events: none;
  filter: blur(0.5px);
  opacity: 0;
  animation: hero-logo-in 1800ms cubic-bezier(.22,.61,.36,1) 800ms forwards;
}
@keyframes hero-logo-in {
  from { opacity: 0; transform: translate(40px, -50%); }
  to   { opacity: .15; transform: translate(0, -50%); }
}
@keyframes hero-logo-float {
  0%, 100% { transform: translate(0, -50%); }
  50%      { transform: translate(0, calc(-50% - 6px)); }
}
/* Override .float-y so the float keeps the -50% Y centering */
.home-hero .hero-logo.float-y {
  animation: hero-logo-in 1800ms cubic-bezier(.22,.61,.36,1) 800ms forwards,
             hero-logo-float 9s ease-in-out 2.5s infinite;
}
@media (prefers-reduced-motion: reduce) {
  .home-hero .hero-logo { animation: none; opacity: .15; }
}
/* Floating project badge, positioned over the video */
.home-hero .hero-project-badge {
  position: absolute;
  right: 2rem;
  bottom: 2.5rem;
  max-width: 320px;
  padding: 1rem 1.15rem;
  background: rgba(11,27,59,.7);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius);
  font-size: .86rem;
  color: var(--on-dark-2);
  line-height: 1.45;
  z-index: 1;
}
.home-hero .hero-project-badge .label {
  color: var(--gold-hi);
  font-size: .7rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  font-weight: 600;
  font-family: var(--font-display);
  display: block;
  margin-bottom: .3rem;
}
.home-hero .hero-project-badge strong {
  color: #fff;
  font-weight: 500;
  display: block;
  margin-bottom: .2rem;
  font-family: var(--font-display);
  letter-spacing: -.01em;
  font-size: 1.05rem;
}

/* Stat strip under hero */
.home-stats-wrap {
  background: var(--bg);
  padding-block: var(--space-4);
  border-bottom: 1px solid var(--line);
}
.home-stats-wrap .container { display: flex; flex-direction: column; gap: 1.25rem; }
.home-stats-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
  flex-wrap: wrap;
}
.home-stats-head p { max-width: 42ch; color: var(--muted); font-size: .95rem; }

/* Home About (split) */
.home-about {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 3rem;
  align-items: center;
}
.home-about .copy { max-width: 48ch; }
.home-about .copy h2 { margin-top: .75rem; margin-bottom: 1rem; }
.home-about .copy p { font-size: var(--fs-md); line-height: 1.65; }
.home-about .copy p + p { margin-top: 1rem; }
.home-about .media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  aspect-ratio: 4/3;
  background: var(--bg-2);
  position: relative;
}
.home-about .media img {
  width: 100%; height: 100%;
  object-fit: cover;
  will-change: transform;
  transition: transform 240ms ease-out;
}

/* Services (home) — uniform grid */
.home-services .services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.home-services .services-also {
  margin-top: 1.75rem;
  padding: 1.1rem 1.4rem;
  background: var(--bg);
  border: 1px solid var(--line);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius);
  font-size: .94rem;
  line-height: 1.6;
  color: var(--muted);
}
.home-services .services-also strong {
  color: var(--ink);
  font-weight: 600;
  margin-right: .35rem;
}
/* Legacy classes kept for service detail / other contexts */
.home-services .grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
.home-services .secondary-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; margin-top: 1.25rem; }

/* Why strip — horizontal cards in a 2-column grid; the 5th card spans the full last row */
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.why-grid > a:nth-child(5),
.why-grid > article:nth-child(5) {
  grid-column: 1 / -1;
}

/* Capabilities band (dark) */
.capabilities-band {
  background: var(--ink);
  color: #fff;
  padding-block: var(--space-6);
  position: relative;
  overflow: hidden;
}
.capabilities-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60% 80% at 100% 0%, rgba(37,99,235,.25) 0%, transparent 55%),
    radial-gradient(70% 60% at 0% 100%, rgba(76,106,181,.2) 0%, transparent 55%);
  pointer-events: none;
}
.capabilities-band .container { position: relative; }
.capabilities-band .inner {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3rem;
  align-items: center;
}
.capabilities-band h2 { color: #fff; max-width: 14ch; }
.capabilities-band p { color: var(--on-dark); max-width: 56ch; }
.capabilities-band p + .link-cta { margin-top: 1.5rem; }

/* Cert row wrap */
.cert-wrap {
  background: var(--bg-2);
  padding-block: var(--space-6);
}
.cert-wrap .lead {
  text-align: center;
  max-width: 560px;
  margin: 0 auto var(--space-4);
}

/* Closing CTA band */
.cta-band {
  position: relative;
  background: var(--ink);
  color: #fff;
  padding-block: var(--space-6);
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--cta-bg, none);
  background-size: cover;
  background-position: center;
  opacity: .12;
  filter: saturate(80%);
}
.cta-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(80% 90% at 50% 100%, rgba(37,99,235,.35) 0%, transparent 55%),
    linear-gradient(180deg, var(--ink) 0%, rgba(11,27,59,.8) 100%);
}
.cta-band .container { position: relative; z-index: 1; text-align: center; }
.cta-band h2 { color: #fff; font-size: clamp(2rem, 2vw + 1.4rem, 3rem); max-width: 20ch; margin-inline: auto; }
.cta-band p { color: var(--on-dark); max-width: 56ch; margin: 1rem auto 2rem; font-size: var(--fs-md); }
.cta-band .hero-ctas { justify-content: center; }
.cta-direct {
  margin-top: 2rem;
  display: flex;
  gap: 2rem;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  font-family: var(--font-mono);
  font-size: .82rem;
  letter-spacing: .08em;
  color: var(--on-dark-2);
}
.cta-direct a, .cta-direct span {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  color: var(--on-dark);
  transition: color var(--t-fast);
}
.cta-direct a:hover { color: var(--gold-hi); }
.cta-direct svg { width: 16px; height: 16px; color: var(--gold-hi); }

/* Services index hero variant */
.services-index .intro-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 3rem;
  margin-bottom: var(--space-5);
  align-items: end;
}
.services-index .intro-grid h2 { max-width: 16ch; }
.services-index .intro-grid p { font-size: var(--fs-md); color: var(--muted); line-height: 1.65; max-width: 48ch; }

/* Service detail body */
.svc-body {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  align-items: start;
}
.svc-body .copy { font-size: var(--fs-md); line-height: 1.68; }
.svc-body .copy h2 { margin-bottom: 1rem; }
.svc-body .copy h3 { margin-top: 2rem; margin-bottom: .75rem; font-size: 1.35rem; }
.svc-body .copy p { color: var(--text-2); }
.svc-body .copy p + p { margin-top: 1rem; }
.svc-body .aside {
  position: sticky;
  top: calc(var(--nav-h) + 1rem);
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.svc-body .aside h4 { font-size: 1.05rem; }
.svc-body .aside ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: .6rem; }
.svc-body .aside li {
  display: flex;
  gap: .7rem;
  color: var(--text);
  font-size: .94rem;
  align-items: flex-start;
}
.svc-body .aside li::before {
  content: "";
  width: 14px; height: 14px;
  flex-shrink: 0;
  margin-top: 4px;
  border: 1.5px solid var(--brand);
  border-radius: 50%;
  background: radial-gradient(circle at center, var(--brand) 0 4px, transparent 5px);
}

/* Gallery strip (service detail) */
.gallery-strip {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 1rem;
  margin-block: var(--space-4);
}
.gallery-strip > a, .gallery-strip > div {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--bg-2);
  aspect-ratio: 4/3;
}
.gallery-strip > *:first-child { grid-row: span 2; aspect-ratio: auto; }
.gallery-strip img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--t-slow); }
.gallery-strip > *:hover img { transform: scale(1.03); }

/* Contact page layout */
.contact-layout {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 3rem;
  align-items: start;
}

/* About page */
.about-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.about-block .copy { font-size: var(--fs-md); line-height: 1.7; }
.about-block .copy h2 { margin-bottom: 1.25rem; }
.about-block .copy p + p { margin-top: 1.1rem; }
.about-heritage {
  margin-top: var(--space-5);
}

/* APEGA page */
.apega-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: var(--space-4);
}
.apega-pillar {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.apega-pillar .seal {
  width: 54px; height: 54px;
  border-radius: 50%;
  background: var(--gold-soft);
  color: var(--gold-2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: .02em;
  border: 1px solid rgba(240,196,32,.3);
}
.apega-pillar h4 { font-size: 1.08rem; }
.apega-pillar p { color: var(--muted); font-size: .94rem; line-height: 1.6; }

/* ============================================================
   Before / After comparison slider (compare.html)
   ============================================================ */
.compare-page-hero {
  background: var(--ink);
  color: #fff;
  padding-block: calc(var(--space-3) + .5rem) var(--space-3);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.compare-page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(70% 80% at 50% 100%, rgba(37,99,235,.32) 0%, transparent 60%),
    radial-gradient(50% 50% at 50% 0%, rgba(76,106,181,.18) 0%, transparent 65%);
  pointer-events: none;
}
.compare-page-hero .container { position: relative; }
.compare-page-hero .eyebrow { color: var(--brand-hi); }
.compare-page-hero h1 {
  color: #fff;
  max-width: 18ch;
  margin: .65rem auto .65rem;
  font-size: clamp(1.6rem, 1vw + 1.25rem, 2.1rem);
}
.compare-page-hero p.lede {
  color: var(--on-dark-2);
  font-size: .96rem;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.5;
}

.compare-stage {
  background: var(--ink);
  padding: 0 var(--space-3) var(--space-5);
}
.compare-frame {
  position: relative;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  overflow: clip;             /* clip without creating a scroll context */
  border-radius: var(--radius-lg);
  box-shadow: 0 40px 80px rgba(0,0,0,.5), 0 0 0 1px rgba(255,255,255,.08);
  user-select: none;
  touch-action: pan-y;        /* allow vertical scrolling, capture horizontal drag */
  background: var(--ink-2);
}
/* The After (NEW) layer sets the frame's natural height */
.cmp-after {
  position: relative;
  display: block;
  width: 100%;
}
.cmp-after img {
  display: block;
  width: 100%;
  height: auto;
}
/* The Before layer overlays at full height, clipped by --cmp-r */
.cmp-before {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.cmp-before img {
  display: block;
  width: 100%;
  height: auto;               /* natural height; may overhang and be clipped */
}
/* Before is clipped from the right based on --cmp-r CSS var */
.cmp-before {
  -webkit-clip-path: inset(0 var(--cmp-r, 50%) 0 0);
  clip-path: inset(0 var(--cmp-r, 50%) 0 0);
  transition: clip-path 60ms linear, -webkit-clip-path 60ms linear;
}
/* Tags — sticky so they stay visible while scrolling through the comparison */
.cmp-tag {
  position: sticky;
  top: calc(var(--nav-h) + 1rem);
  font-family: var(--font-mono);
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 500;
  padding: .4rem .85rem;
  background: rgba(11,27,59,.78);
  color: #fff;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--radius-pill);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 4;
  display: inline-block;
  width: fit-content;
  margin-top: -2.5rem;        /* pulled up so it floats above the imagery */
  margin-bottom: 1.5rem;
}
.cmp-tag-row {
  position: sticky;
  top: calc(var(--nav-h) + 1rem);
  z-index: 4;
  display: flex;
  justify-content: space-between;
  padding: 0 1.25rem;
  pointer-events: none;
  margin-top: -3.5rem;
  margin-bottom: 1rem;
}
.cmp-tag-row .cmp-tag { position: static; margin: 0; }
.tag-before { background: rgba(220,38,38,.18); border-color: rgba(220,38,38,.5); color: #fff; }
.tag-before::before { content: "•"; color: #f87171; margin-right: .35rem; }
.tag-after  { background: rgba(37,99,235,.2); border-color: rgba(59,130,246,.55); color: #fff; }
.tag-after::before { content: "•"; color: var(--brand-hi); margin-right: .35rem; }

/* The vertical slider line spans the full frame height */
.cmp-handle {
  position: absolute;
  top: 0; bottom: 0;
  left: var(--cmp, 50%);
  width: 3px;
  margin-left: -1.5px;
  background: rgba(255,255,255,.95);
  box-shadow: 0 0 28px rgba(37,99,235,.7), 0 0 12px rgba(255,255,255,.4);
  z-index: 5;
  pointer-events: none;
  transition: left 60ms linear;
}
/* The grip is sticky-positioned inside the handle — stays at viewport center as user scrolls */
.cmp-grip {
  position: sticky;
  top: calc(50vh - 32px);
  width: 64px; height: 64px;
  margin-left: -30.5px;       /* center 64px grip on 3px line */
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
  cursor: ew-resize;
  box-shadow: 0 12px 32px rgba(0,0,0,.5), 0 0 0 4px rgba(37,99,235,.5);
  color: var(--ink);
  transition: transform 200ms cubic-bezier(.22,.61,.36,1), box-shadow 200ms;
  border: 0;
}
.cmp-grip:hover { transform: scale(1.08); box-shadow: 0 16px 40px rgba(0,0,0,.55), 0 0 0 6px rgba(37,99,235,.7); }
.cmp-grip:active { transform: scale(.98); }
.cmp-grip svg { width: 22px; height: 22px; stroke: currentColor; }

/* Range input — invisible, grabs all input across the full frame */
.cmp-input {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  background: transparent;
  -webkit-appearance: none;
  appearance: none;
  cursor: ew-resize;
  z-index: 6;
  opacity: 0;
}
.cmp-input::-webkit-slider-thumb { -webkit-appearance: none; width: 64px; height: 64px; }
.cmp-input::-moz-range-thumb { width: 64px; height: 64px; opacity: 0; border: 0; }

/* The Before layer's clip-path is set inline by JS — animated via CSS variable */
.cmp-before {
  -webkit-clip-path: inset(0 var(--cmp-r, 50%) 0 0);
  clip-path: inset(0 var(--cmp-r, 50%) 0 0);
  transition: clip-path 60ms linear, -webkit-clip-path 60ms linear;
}
/* Initial-load reveal animation */
@keyframes cmp-intro {
  0%   { left: 100%; }
  60%  { left: 18%; }
  100% { left: 50%; }
}
.compare-frame.is-introducing .cmp-handle {
  animation: cmp-intro 1800ms cubic-bezier(.22,.61,.36,1) both;
}
@keyframes cmp-intro-clip {
  0%   { -webkit-clip-path: inset(0 0% 0 0); clip-path: inset(0 0% 0 0); }
  60%  { -webkit-clip-path: inset(0 82% 0 0); clip-path: inset(0 82% 0 0); }
  100% { -webkit-clip-path: inset(0 50% 0 0); clip-path: inset(0 50% 0 0); }
}
.compare-frame.is-introducing .cmp-before {
  animation: cmp-intro-clip 1800ms cubic-bezier(.22,.61,.36,1) both;
}

/* Compare-page footer-tip strip */
.compare-tip {
  background: var(--ink);
  color: var(--on-dark-2);
  padding: 0 var(--space-3) var(--space-6);
  text-align: center;
}
.compare-tip > div {
  max-width: 560px;
  margin: 0 auto;
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  font-family: var(--font-mono);
  font-size: .76rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: .65rem 1.15rem;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-pill);
}
.compare-tip svg { width: 16px; height: 16px; color: var(--brand-hi); }

@media (max-width: 768px) {
  .cmp-grip { width: 52px; height: 52px; margin-left: -24.5px; top: calc(50vh - 26px); }
  .cmp-tag { font-size: .62rem; padding: .3rem .65rem; }
  .cmp-tag-row { padding: 0 .85rem; margin-top: -2.5rem; }
}

/* Compact two-column with image left */
.split-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-block: var(--space-5);
}
.split-feature.reverse { direction: rtl; }
.split-feature.reverse > * { direction: ltr; }
.split-feature .copy h2 { margin-bottom: 1rem; }
.split-feature .copy p { color: var(--text-2); font-size: var(--fs-md); line-height: 1.65; }
.split-feature .media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  aspect-ratio: 5/4;
  background: var(--bg-2);
}
.split-feature .media img { width: 100%; height: 100%; object-fit: cover; }
