/* Oxin Studio — design tokens and base styles
   Light palette on :root. Dark redefines tokens only. */

:root {
  color-scheme: light;

  --paper:      #fbfaf8;
  --paper-2:    #f2efe9;
  --card:       #ffffff;
  --ink:        #191816;
  --ink-2:      #5d5a54;
  --ink-3:      #8a867e;
  --rule:       rgba(25, 24, 22, 0.12);
  --rule-soft:  rgba(25, 24, 22, 0.07);
  --accent:     #b0362a;
  --accent-ink: #ffffff;
  --shadow:     0 1px 2px rgba(0,0,0,.04), 0 12px 32px rgba(0,0,0,.06);

  --font: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", Roboto,
          "Helvetica Neue", Arial, sans-serif;
  --font-serif: "New York", "Iowan Old Style", Palatino, "Palatino Linotype",
          Georgia, serif;

  --gutter: clamp(1rem, 5vw, 3rem);
  --max: 1080px;
  --measure: 40rem;
}

/* Dark is opt-in. The site opens light even on a machine set to dark,
   and remembers the visitor's choice from then on. */
:root[data-theme="dark"] {
  color-scheme: dark;
  --paper:      #0d0c0b;
  --paper-2:    #161513;
  --card:       #1a1917;
  --ink:        #f3f1ec;
  --ink-2:      #a8a49c;
  --ink-3:      #7d7970;
  --rule:       rgba(243, 241, 236, 0.16);
  --rule-soft:  rgba(243, 241, 236, 0.09);
  --accent:     #ff6f60;
  --accent-ink: #1a0f0d;
  --shadow:     0 1px 2px rgba(0,0,0,.5), 0 12px 32px rgba(0,0,0,.45);
}

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; height: auto; display: block; }

a { color: inherit; }

h1, h2, h3 {
  line-height: 1.08;
  letter-spacing: -0.022em;
  margin: 0;
  font-weight: 600;
}

p { margin: 0 0 1.1em; }

.wrap {
  max-width: var(--max);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.measure { max-width: var(--measure); }

/* ---------- nav ---------- */

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in srgb, var(--paper) 82%, transparent);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid var(--rule-soft);
}

.nav-inner {
  max-width: var(--max);
  margin-inline: auto;
  padding: 0 var(--gutter);
  height: 52px;
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.wordmark {
  font-weight: 600;
  font-size: 1.02rem;
  letter-spacing: -0.02em;
  text-decoration: none;
  margin-right: auto;
}

.nav a.navlink {
  font-size: 0.86rem;
  color: var(--ink-2);
  text-decoration: none;
  transition: color .15s;
}
.nav a.navlink:hover { color: var(--ink); }

/* ---------- sections ---------- */

section { padding-block: clamp(4rem, 11vw, 8rem); }

.eyebrow {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 1rem;
}

.display {
  font-size: clamp(2.6rem, 8.5vw, 5rem);
  letter-spacing: -0.035em;
  font-weight: 650;
}

.h2 { font-size: clamp(1.9rem, 4.6vw, 3rem); letter-spacing: -0.03em; }
.h3 { font-size: clamp(1.15rem, 2.2vw, 1.4rem); letter-spacing: -0.02em; }

.lede {
  font-size: clamp(1.12rem, 2.1vw, 1.4rem);
  line-height: 1.45;
  color: var(--ink-2);
  letter-spacing: -0.012em;
}

.muted { color: var(--ink-2); }
.small { font-size: 0.9rem; }

/* ---------- buttons ---------- */

.row { display: flex; flex-wrap: wrap; gap: .7rem; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  padding: .72rem 1.35rem;
  border-radius: 980px;
  font-size: .95rem;
  font-weight: 500;
  text-decoration: none;
  border: 1px solid transparent;
  transition: opacity .15s, background .15s;
  white-space: nowrap;
}

.btn-primary { background: var(--ink); color: var(--paper); }
.btn-primary:hover { opacity: .85; }

.btn-ghost { border-color: var(--rule); color: var(--ink); }
.btn-ghost:hover { background: var(--rule-soft); }

/* ---------- promise tiles ---------- */

.grid {
  display: grid;
  gap: 1px;
  background: var(--rule-soft);
  border: 1px solid var(--rule-soft);
  border-radius: 18px;
  overflow: hidden;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}

.tile { background: var(--paper); padding: 2rem 1.6rem; }
.tile h3 { font-size: 1.05rem; margin-bottom: .5rem; }
.tile p { color: var(--ink-2); font-size: .95rem; margin: 0; line-height: 1.55; }

/* ---------- app cards ---------- */

.apps {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
}

.appcard {
  display: block;
  text-decoration: none;
  background: var(--card);
  border: 1px solid var(--rule-soft);
  border-radius: 20px;
  padding: 1.6rem;
  transition: transform .18s ease, box-shadow .18s ease;
}
.appcard:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.appcard .icon { width: 56px; height: 56px; border-radius: 13px; margin-bottom: 1rem; }
.appcard h3 { font-size: 1.15rem; margin-bottom: .3rem; }
.appcard p { color: var(--ink-2); font-size: .92rem; margin: 0 0 .9rem; line-height: 1.5; }

.meta {
  font-size: .8rem;
  color: var(--ink-3);
  display: flex;
  gap: .5rem;
  align-items: center;
  flex-wrap: wrap;
}
.dot { width: 3px; height: 3px; border-radius: 50%; background: currentColor; opacity: .55; }

.pill {
  display: inline-block;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .01em;
  padding: .22rem .6rem;
  border-radius: 980px;
  border: 1px solid var(--rule);
  color: var(--ink-2);
}

/* ---------- arithmetic band ---------- */

.band { background: var(--paper-2); }

.figures {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  align-items: start;
}
.figure .num {
  font-size: clamp(2.6rem, 6vw, 3.6rem);
  font-weight: 650;
  letter-spacing: -0.04em;
  line-height: 1;
  display: block;
  margin-bottom: .6rem;
}
.figure p { color: var(--ink-2); margin: 0; font-size: .97rem; }

/* ---------- feature rows ---------- */

.feature {
  display: grid;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  grid-template-columns: 1fr;
}
@media (min-width: 820px) {
  .feature { grid-template-columns: 1fr 1fr; }
  .feature.flip .feature-text { order: 2; }
}

.shot {
  border-radius: 20px;
  border: 1px solid var(--rule-soft);
  background: var(--paper-2);
  aspect-ratio: 4 / 3;
  display: grid;
  place-items: center;
  color: var(--ink-2);
  font-size: .82rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  text-align: center;
  padding: 1rem;
  overflow: hidden;
  background-image: repeating-linear-gradient(
    -45deg, transparent 0 12px, var(--rule-soft) 12px 13px);
}
.shot img { border-radius: 20px; }

/* ---------- plain document pages ---------- */

.doc { max-width: 42rem; margin-inline: auto; }
.doc h2 { font-size: 1.22rem; margin: 2.4rem 0 .7rem; letter-spacing: -0.018em; }
.doc h3 { font-size: 1.02rem; margin: 1.8rem 0 .5rem; }
.doc ul { padding-left: 1.15rem; color: var(--ink-2); }
.doc li { margin: .35rem 0; }
.doc p { color: var(--ink-2); }
.doc a { color: var(--accent); text-decoration-thickness: 1px; text-underline-offset: 2px; }

/* ---------- spec table ---------- */

.specs { border-top: 1px solid var(--rule-soft); }
.spec {
  display: flex;
  gap: 1.5rem;
  padding: .85rem 0;
  border-bottom: 1px solid var(--rule-soft);
  font-size: .94rem;
}
.spec dt { color: var(--ink-3); flex: 0 0 11rem; margin: 0; }
.spec dd { margin: 0; color: var(--ink); }
@media (max-width: 560px) {
  .spec { flex-direction: column; gap: .15rem; }
  .spec dt { flex: none; }
}

/* ---------- footer ---------- */

.foot {
  border-top: 1px solid var(--rule-soft);
  padding-block: 3rem 4rem;
  font-size: .86rem;
  color: var(--ink-3);
}
.foot-cols {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  margin-bottom: 2.5rem;
}
.foot h4 { font-size: .8rem; font-weight: 600; color: var(--ink); margin: 0 0 .7rem; letter-spacing: 0; }
.foot ul { list-style: none; margin: 0; padding: 0; }
.foot li { margin: .35rem 0; }
.foot a { text-decoration: none; color: var(--ink-3); }
.foot a:hover { color: var(--ink); }

/* ============================================================
   MOTION
   ============================================================ */

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity .9s cubic-bezier(.16, 1, .3, 1),
    transform .9s cubic-bezier(.16, 1, .3, 1);
  transition-delay: var(--d, 0ms);
  will-change: opacity, transform;
}
.reveal.in { opacity: 1; transform: none; }

.reveal-scale {
  opacity: 0;
  transform: scale(.955) translateY(30px);
  transition:
    opacity 1.1s cubic-bezier(.16, 1, .3, 1),
    transform 1.1s cubic-bezier(.16, 1, .3, 1);
  transition-delay: var(--d, 0ms);
}
.reveal-scale.in { opacity: 1; transform: none; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-14px); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal, .reveal-scale { opacity: 1 !important; transform: none !important; transition: none !important; }
  .floating { animation: none !important; }
}

/* ============================================================
   HERO
   ============================================================ */

.hero {
  position: relative;
  overflow: clip;
  padding-block: clamp(3.5rem, 9vw, 7rem) clamp(3rem, 7vw, 5rem);
}

.hero::before {
  content: "";
  position: absolute;
  inset: -30% -10% auto -10%;
  height: 130%;
  background:
    radial-gradient(60% 55% at 78% 22%, color-mix(in srgb, var(--accent) 20%, transparent), transparent 68%),
    radial-gradient(48% 48% at 12% 8%, color-mix(in srgb, var(--ink) 11%, transparent), transparent 70%);
  filter: blur(18px);
  pointer-events: none;
  z-index: 0;
}

.hero > * { position: relative; z-index: 1; }

.hero-grid {
  display: grid;
  gap: clamp(2.5rem, 6vw, 4rem);
  align-items: center;
  grid-template-columns: 1fr;
}
@media (min-width: 900px) {
  .hero-grid { grid-template-columns: 1.05fr .95fr; }
}

.floating { animation: float 7s ease-in-out infinite; }

/* ============================================================
   DEVICE FRAMES
   ============================================================ */

.phone {
  width: min(300px, 78vw);
  aspect-ratio: 390 / 844;
  margin-inline: auto;
  border-radius: 44px;
  padding: 9px;
  background: linear-gradient(150deg, #6d6a66, #171614 34%, #3b3936 62%, #100f0e);
  box-shadow:
    0 2px 4px rgba(0,0,0,.28),
    0 30px 70px -18px rgba(0,0,0,.55),
    inset 0 0 0 1px rgba(255,255,255,.09);
  position: relative;
}

.phone-screen {
  height: 100%;
  border-radius: 36px;
  overflow: hidden;
  background: var(--paper);
  position: relative;
  isolation: isolate;
}

.notch {
  position: absolute;
  top: 9px; left: 50%;
  transform: translateX(-50%);
  width: 33%; height: 22px;
  border-radius: 999px;
  background: #0a0a09;
  z-index: 5;
}

.macwin {
  border-radius: 13px;
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--rule);
  box-shadow: 0 2px 4px rgba(0,0,0,.14), 0 34px 70px -22px rgba(0,0,0,.4);
}

.macbar {
  height: 34px;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0 13px;
  background: color-mix(in srgb, var(--paper-2) 88%, var(--ink) 4%);
  border-bottom: 1px solid var(--rule-soft);
}
.macbar i {
  width: 11px; height: 11px; border-radius: 50%;
  display: block; opacity: .85;
}
.macbar i:nth-child(1) { background: #ec6a5f; }
.macbar i:nth-child(2) { background: #f4bf50; }
.macbar i:nth-child(3) { background: #61c454; }
.macbar span {
  margin-left: auto; margin-right: auto;
  font-size: .72rem; color: var(--ink-3); letter-spacing: .01em;
}

/* ============================================================
   MOCK UI — Corante
   ============================================================ */

.ui { height: 100%; display: flex; flex-direction: column; font-size: 11px; }

.ui-top {
  padding: 34px 15px 10px;
  border-bottom: 1px solid var(--rule-soft);
  background: color-mix(in srgb, var(--paper) 88%, transparent);
}
.ui-top .t { font-size: 20px; font-weight: 700; letter-spacing: -.03em; }
.ui-top .s { font-size: 10px; color: var(--ink-3); margin-top: 1px; }

.ui-body { flex: 1; overflow: hidden; padding: 11px 12px; display: grid; gap: 10px; align-content: start; }

.card-mock {
  border: 1px solid var(--rule-soft);
  border-radius: 12px;
  overflow: hidden;
  background: var(--card);
}
.art {
  height: 66px;
  background:
    radial-gradient(120% 130% at 15% 15%, color-mix(in srgb, var(--accent) 62%, transparent), transparent 60%),
    linear-gradient(120deg, #2f3a4a, #6b4a3f 55%, #23282f);
}
.art.b { background: linear-gradient(140deg, #3d5a56, #8a7b46 60%, #2a2f32); }
.art.c { background: linear-gradient(120deg, #4a3350, #a35a4a 58%, #2b2333); }
.card-mock .txt { padding: 8px 9px 10px; }
.card-mock .hl {
  font-size: 11.5px; font-weight: 600; line-height: 1.28;
  letter-spacing: -.01em; margin-bottom: 5px;
}
.card-mock .src { font-size: 9px; color: var(--ink-3); display: flex; gap: 5px; align-items: center; }
.card-mock .src b { width: 4px; height: 4px; border-radius: 50%; background: var(--accent); }

.compact-row {
  display: grid; gap: 3px;
  padding: 8px 2px;
  border-bottom: 1px solid var(--rule-soft);
}
.compact-row .hl { font-size: 11px; font-weight: 600; line-height: 1.3; letter-spacing: -.01em; }
.compact-row .src { font-size: 9px; color: var(--ink-3); }

.mosaic { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.mosaic .m {
  border-radius: 11px; overflow: hidden; position: relative;
  aspect-ratio: 3/4; display: flex; align-items: flex-end;
  padding: 8px; color: #fff;
  background: linear-gradient(140deg, #33404f, #6d4c3e 60%, #1e2228);
}
.mosaic .m:nth-child(2) { background: linear-gradient(150deg, #4a3350, #a35a4a 60%, #241d2b); aspect-ratio: 3/4; }
.mosaic .m:nth-child(3) { background: linear-gradient(160deg, #3d5a56, #8a7b46 60%, #232a2b); }
.mosaic .m:nth-child(4) { background: linear-gradient(130deg, #52413a, #b0362a 65%, #241b18); }
.mosaic .m::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.72), transparent 58%);
}
.mosaic .m span {
  position: relative; z-index: 1;
  font-size: 10px; font-weight: 650; line-height: 1.22; letter-spacing: -.01em;
  text-shadow: 0 1px 3px rgba(0,0,0,.5);
}

/* newsprint variant */
.ui.newsprint { background: #efe7d7; color: #2b2116; }
.ui.newsprint .ui-top { background: #efe7d7; border-color: rgba(43,33,22,.14); }
.ui.newsprint .ui-top .t { font-family: var(--font-serif); }
.ui.newsprint .ui-top .s,
.ui.newsprint .card-mock .src,
.ui.newsprint .compact-row .src { color: #8a7a62; }
.ui.newsprint .card-mock { background: #f6f0e3; border-color: rgba(43,33,22,.14); }
.ui.newsprint .compact-row { border-color: rgba(43,33,22,.14); }
.ui.newsprint .hl { font-family: var(--font-serif); font-weight: 600; }

/* reader mode mock */
.reader { padding: 30px 17px 14px; }
.reader .kicker { font-size: 9px; letter-spacing: .1em; text-transform: uppercase; color: var(--accent); margin-bottom: 7px; }
.reader h4 { font-family: var(--font-serif); font-size: 17px; line-height: 1.16; letter-spacing: -.02em; margin: 0 0 9px; font-weight: 600; }
.reader .by { font-size: 9px; color: var(--ink-3); margin-bottom: 12px; }
.line { height: 5px; border-radius: 3px; background: var(--rule); margin-bottom: 7px; }
.line.s { width: 62%; }
.line.m { width: 88%; }

/* ============================================================
   STICKY SHOWCASE
   ============================================================ */

.showcase { display: grid; gap: 3rem; grid-template-columns: 1fr; }
@media (min-width: 900px) {
  .showcase { grid-template-columns: 1fr 1fr; align-items: start; }
  .showcase-sticky { position: sticky; top: 108px; }
}

.panel {
  padding-block: clamp(2rem, 14vh, 7rem);
  opacity: .32;
  transition: opacity .5s ease;
}
.panel.active { opacity: 1; }
@media (max-width: 899px) { .panel { opacity: 1; padding-block: 1.5rem; } }

.stack { position: relative; }
.stack > .layer {
  transition: opacity .55s cubic-bezier(.16,1,.3,1), transform .55s cubic-bezier(.16,1,.3,1);
}
.stack > .layer:not(.on) {
  position: absolute; inset: 0;
  opacity: 0; transform: scale(.97);
  pointer-events: none;
}
@media (max-width: 899px) {
  .stack > .layer:not(.on) { position: static; opacity: 1; transform: none; margin-top: 2rem; }
}

/* ============================================================
   MISC POLISH
   ============================================================ */

.band { position: relative; overflow: clip; }
.band::after {
  content: "";
  position: absolute; inset: auto -20% -60% -20%; height: 70%;
  background: radial-gradient(50% 60% at 50% 100%, color-mix(in srgb, var(--accent) 13%, transparent), transparent 70%);
  pointer-events: none;
}

.tile { position: relative; transition: background .25s ease; }
.tile:hover { background: var(--card); }

.figure .num { background: linear-gradient(180deg, var(--ink), color-mix(in srgb, var(--ink) 62%, var(--accent)));
  -webkit-background-clip: text; background-clip: text; color: transparent; }

.appcard { position: relative; overflow: hidden; }
.appcard::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(70% 60% at 50% 0%, color-mix(in srgb, var(--accent) 14%, transparent), transparent 70%);
  opacity: 0; transition: opacity .3s ease; pointer-events: none;
}
.appcard:hover::after { opacity: 1; }


/* ============================================================
   THEME TOGGLE
   ============================================================ */

.themetoggle {
  margin-left: .35rem;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border: 1px solid var(--rule-soft);
  border-radius: 50%;
  background: transparent;
  color: var(--ink-2);
  cursor: pointer;
  padding: 0;
  flex: none;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.themetoggle:hover { background: var(--rule-soft); color: var(--ink); }
.themetoggle:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }
.themetoggle svg { width: 15px; height: 15px; display: block; }
.themetoggle .moon { display: none; }
:root[data-theme="dark"] .themetoggle .sun { display: none; }
:root[data-theme="dark"] .themetoggle .moon { display: block; }

/* ============================================================
   WORDPRESS
   The rules above are the design language, ported unchanged from
   the static build. Everything below exists only because the
   markup now comes out of WordPress: the admin bar, the editor's
   own block classes, and pages whose content the theme did not
   write and must not restyle out of recognition.
   ============================================================ */

.admin-bar .nav { top: 32px; }
@media screen and (max-width: 782px) { .admin-bar .nav { top: 46px; } }

/* Content the editor produced. It keeps the document measure and
   the document typography, because a page written in wp-admin is
   prose, not a landing section. */
.entry-content > * { max-width: 42rem; margin-inline: auto; }
.entry-content > .alignwide  { max-width: var(--max); }
.entry-content > .alignfull  { max-width: none; }
.entry-content h2 { font-size: 1.5rem; margin: 2.6rem 0 .8rem; letter-spacing: -0.02em; }
.entry-content h3 { font-size: 1.15rem; margin: 2rem 0 .5rem; }
.entry-content p,
.entry-content li { color: var(--ink-2); }
.entry-content a { color: var(--accent); text-underline-offset: 2px; }
.entry-content ul,
.entry-content ol { padding-left: 1.15rem; }
.entry-content li { margin: .35rem 0; }
.entry-content img,
.entry-content figure { border-radius: 14px; overflow: hidden; }
.entry-content figcaption { font-size: .85rem; color: var(--ink-3); text-align: center; margin-top: .6rem; }
.entry-content blockquote {
  margin: 2rem 0;
  padding-left: 1.1rem;
  border-left: 2px solid var(--accent);
  font-size: 1.08rem;
  color: var(--ink);
}
.entry-content table { width: 100%; border-collapse: collapse; font-size: .94rem; }
.entry-content th,
.entry-content td { text-align: left; padding: .7rem 0; border-bottom: 1px solid var(--rule-soft); }

.wp-block-button__link { border-radius: 980px; }
.screen-reader-text {
  position: absolute; width: 1px; height: 1px; overflow: hidden;
  clip-path: inset(50%); white-space: nowrap;
}
.skip-link:focus {
  position: fixed; top: .6rem; left: .6rem; z-index: 999;
  width: auto; height: auto; clip-path: none;
  background: var(--ink); color: var(--paper);
  padding: .6rem 1rem; border-radius: 10px;
}

/* Page headers, for everything that is not an app landing page. */
.pagehead { padding-block: clamp(3rem, 8vw, 5.5rem) clamp(1.5rem, 4vw, 2.5rem); }
.pagehead .display { font-size: clamp(2.2rem, 6vw, 3.6rem); }
.pagehead .lede { margin-top: 1rem; max-width: 40rem; }

/* The apps dropdown in the nav. Hover on a pointer, tap on a phone. */
.navmenu { display: flex; align-items: center; gap: 1.75rem; }
@media (max-width: 700px) {
  .nav-inner { gap: .9rem; }
  .navmenu { gap: .9rem; overflow-x: auto; scrollbar-width: none; }
  .navmenu::-webkit-scrollbar { display: none; }
}

/* Empty states, which a content-managed site will hit sooner or later. */
.empty {
  border: 1px dashed var(--rule);
  border-radius: 18px;
  padding: 2.5rem 1.5rem;
  text-align: center;
  color: var(--ink-2);
}

/* A real screenshot inside a device frame. Filled rather than fitted: a
   screenshot taken at the wrong aspect ratio should crop, not letterbox. */
.shot-fill { width: 100%; height: 100%; object-fit: cover; display: block; }
