/* LA'RESULT — дизайн-система прототипа.
   Палитра и шрифты взяты из брифа заказчика. */

:root {
  color-scheme: light;

  /* цвет */
  --navy: #0F2557;
  --navy-deep: #0A1A3F;
  --graphite: #1E2430;
  --gold: #F0A500;
  --gold-deep: #C98800;
  --gold-ink: #6B4A00;      /* золотой, читаемый как текст на светлом */
  --white: #FFFFFF;
  --mist: #F5F7FA;          /* фон блоков */
  --mist-deep: #E9EEF6;
  --ink: #1E2430;           /* основной текст */
  --ink-soft: #5A6478;      /* вторичный текст, серый с синим уклоном */
  --line: #DCE3EE;
  --line-dark: rgba(255, 255, 255, .16);

  /* размеры */
  --container: 1180px;
  --gap: 24px;
  --radius: 4px;

  /* типографика */
  --display: Unbounded, "Manrope", "Segoe UI", system-ui, sans-serif;
  --text: Manrope, "Segoe UI", system-ui, -apple-system, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }

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

img { max-width: 100%; display: block; }
a { color: inherit; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- типографика ---------- */

h1, h2, h3 { font-family: var(--display); font-weight: 500; margin: 0; text-wrap: balance; }
h1 { font-size: clamp(32px, 5vw, 56px); line-height: 1.08; letter-spacing: -.015em; }
h2 { font-size: clamp(26px, 3.4vw, 40px); line-height: 1.15; letter-spacing: -.01em; }
h3 { font-family: var(--text); font-weight: 700; font-size: 20px; line-height: 1.3; }
p { margin: 0; }

.eyebrow {
  font-size: 12px; font-weight: 700; letter-spacing: .18em;
  text-transform: uppercase; color: var(--gold-ink);
}
.lead { font-size: clamp(17px, 1.6vw, 20px); color: var(--ink-soft); max-width: 62ch; }
.section-head { display: flex; flex-direction: column; gap: 14px; margin-bottom: 44px; }
.section-head .lead { margin: 0; }

/* ---------- секции ---------- */

section { padding: clamp(56px, 7vw, 96px) 0; }
.s-mist { background: var(--mist); }
.s-navy { background: var(--navy); color: #E8EDF7; }
.s-navy h2, .s-navy h3 { color: var(--white); }
.s-navy .lead { color: rgba(232, 237, 247, .72); }
.s-navy .eyebrow { color: var(--gold); }
.s-graphite { background: var(--graphite); color: #D8DDE6; }
.s-graphite h2, .s-graphite h3 { color: var(--white); }
.s-graphite .eyebrow { color: var(--gold); }

/* ---------- кнопки ---------- */

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--text); font-weight: 700; font-size: 16px;
  padding: 15px 30px; border: 1px solid transparent; border-radius: var(--radius);
  cursor: pointer; text-decoration: none; transition: background .16s, color .16s, border-color .16s;
}
.btn-gold { background: var(--gold); color: #241900; }
.btn-gold:hover { background: var(--gold-deep); color: var(--white); }
.btn-ghost { background: transparent; color: var(--white); border-color: var(--line-dark); }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }
.btn-outline { background: transparent; color: var(--navy); border-color: var(--line); }
.btn-outline:hover { border-color: var(--gold); }
.btn-lg { padding: 18px 38px; font-size: 17px; }
.btn:focus-visible, a:focus-visible, button:focus-visible,
input:focus-visible, textarea:focus-visible, select:focus-visible {
  outline: 2px solid var(--gold); outline-offset: 2px;
}

/* ---------- шапка ---------- */

.topbar {
  background: var(--graphite); color: rgba(255,255,255,.72);
  font-size: 13px; padding: 8px 0; text-align: center;
}
.topbar b { color: var(--gold); }

.header {
  position: sticky; top: 0; z-index: 40;
  background: var(--navy); color: var(--white);
  border-bottom: 1px solid var(--line-dark);
}
.header__in { display: flex; align-items: center; gap: 28px; height: 76px; }
.logo {
  font-family: var(--display); font-weight: 600; font-size: 21px; letter-spacing: .04em;
  text-decoration: none; color: var(--white); white-space: nowrap;
}
.logo span { color: var(--gold); }
.nav { display: flex; align-items: center; gap: 26px; margin-left: auto; }
.nav a {
  text-decoration: none; font-size: 15px; font-weight: 500;
  color: rgba(255,255,255,.86); white-space: nowrap;
}
.nav a:hover { color: var(--gold); }
.nav__drop { position: relative; }
/* Между кнопкой «Услуги» и выпадающим списком есть зазор в 14 пикселей.
   Пока курсор его пересекает, :hover слетает и список схлопывается.
   Прозрачный мостик перекрывает разрыв и держит наведение. */
.nav__drop::after {
  content: "";
  position: absolute;
  top: 100%;
  left: -18px;
  right: -18px;
  height: 16px;
  display: none;
}
.nav__drop:hover::after, .nav__drop:focus-within::after { display: block; }
.nav__drop > button {
  font: inherit; font-size: 15px; font-weight: 500; color: rgba(255,255,255,.86);
  background: none; border: 0; cursor: pointer; padding: 0; display: flex; align-items: center; gap: 6px;
}
.nav__drop > button:hover { color: var(--gold); }
.nav__menu {
  position: absolute; top: calc(100% + 14px); left: -18px; min-width: 290px;
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: 0 16px 40px rgba(15,37,87,.16); padding: 8px; display: none;
}
.nav__drop:hover .nav__menu, .nav__drop:focus-within .nav__menu { display: block; }
/* Ссылки внутри списка растянуты на всю ширину, чтобы попасть в них
   было легко, а не только по тексту. */
.nav__menu a { white-space: nowrap; }
.nav__menu a { display: block; padding: 11px 14px; color: var(--navy); border-radius: 3px; }
.nav__menu a:hover { background: var(--mist); color: var(--navy); }
.header__phone { font-weight: 700; text-decoration: none; white-space: nowrap; }
.header__phone:hover { color: var(--gold); }
.burger { display: none; background: none; border: 0; color: var(--white); cursor: pointer; padding: 8px; }

@media (max-width: 1080px) {
  .nav { display: none; }
  .burger { display: block; margin-left: auto; }
  .nav.is-open {
    display: flex; flex-direction: column; align-items: flex-start; gap: 18px;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--navy); padding: 24px; border-bottom: 1px solid var(--line-dark);
  }
  .nav.is-open .nav__menu { position: static; display: block; background: none; border: 0; box-shadow: none; padding: 0 0 0 14px; }
  .nav.is-open .nav__menu a { color: rgba(255,255,255,.8); padding: 8px 0; }
}

/* ---------- первый экран ---------- */

.hero { background: var(--navy); color: var(--white); padding: clamp(48px, 6vw, 84px) 0 clamp(56px, 7vw, 96px); }
.hero__grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(32px, 5vw, 72px); align-items: start; }
.hero h1 { color: var(--white); }
.hero h1 em { font-style: normal; color: var(--gold); }
.hero__lead { margin-top: 22px; font-size: clamp(17px, 1.7vw, 21px); color: rgba(232,237,247,.8); max-width: 46ch; }
.hero__facts { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.hero__fact {
  border: 1px solid var(--line-dark); border-radius: var(--radius);
  padding: 9px 14px; font-size: 13px; color: rgba(232,237,247,.86);
}
.hero__fact b { color: var(--gold); font-size: 15px; }

/* форма */
.form-card {
  background: var(--white); color: var(--ink); border-radius: var(--radius);
  padding: 32px; box-shadow: 0 24px 60px rgba(0,0,0,.24);
}
.form-card h3 { font-size: 22px; margin-bottom: 6px; color: var(--navy); }
.form-card .hint { font-size: 14px; color: var(--ink-soft); margin-bottom: 22px; }
.field { display: flex; flex-direction: column; gap: 7px; margin-bottom: 16px; }
.field label { font-size: 13px; font-weight: 600; color: var(--ink-soft); }
.field input, .field textarea {
  font-family: inherit; font-size: 16px; color: var(--ink);
  padding: 13px 15px; border: 1px solid var(--line); border-radius: var(--radius);
  background: var(--white); width: 100%;
}
.field textarea { min-height: 84px; resize: vertical; }
.field input::placeholder, .field textarea::placeholder { color: #9AA4B8; }
.consent { display: flex; gap: 10px; align-items: flex-start; font-size: 13px; color: var(--ink-soft); margin: 4px 0 20px; }
.consent input { margin-top: 3px; accent-color: var(--gold); width: 16px; height: 16px; flex: none; }
.form-card .btn { width: 100%; }

/* ---------- логотипы клиентов ---------- */

.logos { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 20px; align-items: center; }
.logo-slot {
  height: 96px; border: 1px dashed var(--line); border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center; padding: 18px;
  background: var(--white); color: #A6B0C2; font-size: 13px; text-align: center;
}
.logo-slot img { max-height: 100%; width: auto; object-fit: contain; }

/* ---------- сетки карточек ---------- */

.grid { display: grid; gap: var(--gap); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 980px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

/* боли клиента */
.pain {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px 24px; display: flex; flex-direction: column; gap: 14px; min-height: 150px;
}
.pain__num {
  font-family: var(--display); font-size: 13px; color: var(--gold-ink);
  font-variant-numeric: tabular-nums;
}
.pain p { font-weight: 600; font-size: 17px; line-height: 1.35; color: var(--navy); }

/* цена бездействия */
.cost { border-top: 2px solid var(--gold); padding-top: 22px; }
.cost h3 { font-size: 19px; margin-bottom: 10px; }
.cost p { color: rgba(216,221,230,.78); font-size: 15px; }

/* что вы получите */
.gain { display: flex; flex-direction: column; gap: 12px; padding: 30px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); }
.gain h3 { color: var(--navy); font-size: 19px; }
.gain p { color: var(--ink-soft); font-size: 15.5px; }

/* кейсы */
.case {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 32px 28px; display: flex; flex-direction: column; gap: 16px;
}
.case__result { font-family: var(--display); font-size: 30px; line-height: 1.1; color: var(--navy); }
.case__result span { color: var(--gold-ink); }
.case__who { font-size: 13px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-soft); }
.case__body { font-size: 15.5px; color: var(--ink-soft); }
.case__body b { color: var(--ink); font-weight: 600; }

/* отзывы — карусель */
.carousel { display: flex; gap: var(--gap); overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 14px; }
.carousel > * { scroll-snap-align: start; flex: 0 0 min(420px, 82vw); }
.quote {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 28px; display: flex; flex-direction: column; gap: 16px;
}
.quote__text { font-size: 16px; color: var(--ink-soft); }
.quote__who { font-size: 14px; font-weight: 700; color: var(--navy); margin-top: auto; }
.quote::before { content: "“"; font-family: var(--display); font-size: 44px; line-height: .6; color: var(--gold); }

/* услуги */
.service {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 32px 28px; display: flex; flex-direction: column; gap: 14px;
  text-decoration: none; transition: border-color .16s, transform .16s;
}
.service:hover { border-color: var(--gold); transform: translateY(-2px); }
.service h3 { color: var(--navy); }
.service p { color: var(--ink-soft); font-size: 15.5px; }
.service__more { margin-top: auto; font-weight: 700; font-size: 15px; color: var(--gold-ink); }

/* статьи */
.post {
  border: 1px dashed var(--line); border-radius: var(--radius); padding: 26px;
  display: flex; flex-direction: column; gap: 10px; background: var(--white);
}
.post__meta { font-size: 13px; color: var(--ink-soft); }
.post h3 { font-size: 18px; color: var(--navy); }

/* контакты */
.contacts { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(28px, 4vw, 56px); align-items: start; }
@media (max-width: 900px) { .contacts, .hero__grid { grid-template-columns: 1fr; } }
.contact-row { display: flex; flex-direction: column; gap: 4px; padding: 18px 0; border-bottom: 1px solid var(--line-dark); }
.contact-row dt { font-size: 13px; letter-spacing: .08em; text-transform: uppercase; color: rgba(232,237,247,.6); }
.contact-row dd { margin: 0; font-size: 19px; font-weight: 600; color: var(--white); }
.contact-row dd a { text-decoration: none; }
.contact-row dd a:hover { color: var(--gold); }
.map-slot {
  border: 1px dashed var(--line-dark); border-radius: var(--radius); min-height: 320px;
  display: flex; align-items: center; justify-content: center; text-align: center;
  color: rgba(232,237,247,.6); font-size: 14px; padding: 24px;
}

/* подвал */
.footer { background: var(--graphite); color: rgba(216,221,230,.72); padding: 64px 0 36px; font-size: 15px; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.1fr; gap: 36px; }
@media (max-width: 900px) { .footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer__grid { grid-template-columns: 1fr; } }
.footer h4 { font-size: 12px; letter-spacing: .16em; text-transform: uppercase; color: rgba(255,255,255,.5); margin: 0 0 16px; font-weight: 700; }
.footer ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.footer a { text-decoration: none; }
.footer a:hover { color: var(--gold); }
.footer__bottom { margin-top: 44px; padding-top: 22px; border-top: 1px solid var(--line-dark); font-size: 13px; color: rgba(216,221,230,.5); display: flex; flex-wrap: wrap; gap: 14px; justify-content: space-between; }
.certs { display: flex; gap: 12px; flex-wrap: wrap; }
.cert-slot { width: 84px; height: 110px; border: 1px dashed var(--line-dark); border-radius: 3px; display: flex; align-items: center; justify-content: center; font-size: 11px; color: rgba(216,221,230,.5); text-align: center; padding: 8px; }

/* полоса перед формой */
.cta-band { background: var(--gold); color: #241900; padding: clamp(40px, 5vw, 64px) 0; }
.cta-band h2 { color: #241900; }
.cta-band p { color: rgba(36,25,0,.78); margin-top: 12px; }
.cta-band__in { display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.cta-band .btn { background: var(--navy); color: var(--white); }
.cta-band .btn:hover { background: var(--navy-deep); }

/* пометка «нужны материалы» */
.todo { font-size: 12px; color: #A6B0C2; font-style: normal; }
.s-navy .todo, .s-graphite .todo { color: rgba(232,237,247,.5); }

@media (prefers-reduced-motion: reduce) { * { transition: none !important; } }

/* ---------- основатель и цифры (страница «Об агентстве») ---------- */

.founder { display: grid; grid-template-columns: minmax(260px, 380px) 1fr; gap: clamp(28px, 4vw, 56px); align-items: start; }
@media (max-width: 860px) { .founder { grid-template-columns: 1fr; } }
.founder__photo {
  aspect-ratio: 4 / 5; border: 1px dashed var(--line); border-radius: var(--radius);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 8px; text-align: center; color: #A6B0C2; font-size: 15px; padding: 24px; background: var(--mist);
}

.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px 32px; margin: 36px 0 0; }
.stats--wide { grid-template-columns: repeat(3, 1fr); margin-top: 8px; }
@media (max-width: 860px) { .stats, .stats--wide { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .stats, .stats--wide { grid-template-columns: 1fr; } }
.stat { display: flex; flex-direction: column; gap: 6px; border-top: 2px solid var(--gold); padding-top: 14px; }
.stat dt { font-family: var(--display); font-size: clamp(24px, 2.6vw, 32px); color: var(--navy); line-height: 1.05; }
.stat dd { margin: 0; font-size: 15px; color: var(--ink-soft); }
.s-navy .stat dt { color: var(--white); }
.s-navy .stat dd { color: rgba(232, 237, 247, .72); }

/* ---------- личная история ---------- */

.timeline { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: 2px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
@media (max-width: 760px) { .timeline { grid-template-columns: 1fr; } }
.tl { background: var(--white); padding: 28px 26px; display: flex; flex-direction: column; gap: 10px; }
.tl__mark { font-weight: 700; color: var(--navy); font-size: 17px; }
.tl__text { color: var(--ink-soft); font-size: 15.5px; }

/* ---------- этапы работы ---------- */

.steps { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(5, 1fr); gap: var(--gap); counter-reset: step; }
@media (max-width: 1040px) { .steps { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 700px) { .steps { grid-template-columns: 1fr; } }
.step { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 24px; display: flex; flex-direction: column; gap: 12px; }
.step__num {
  width: 38px; height: 38px; border-radius: 50%; background: var(--navy); color: var(--white);
  font-family: var(--display); font-size: 16px; display: flex; align-items: center; justify-content: center;
}
.step h3 { font-size: 17px; color: var(--navy); }
.step p { font-size: 15px; color: var(--ink-soft); }

/* ---------- обложка: фотография во весь экран ----------
   На прежнем сайте первый экран был целиком одной фотографией
   основателя, а поверх неё слева — короткий заголовок. Повторяем. */

.cover {
  min-height: calc(100vh - 114px);      /* минус верхняя полоса и шапка */
  display: flex;
  align-items: center;
  padding: 48px 0;
  background-color: #EDF2FA;
  background-image: url("../photo/hero-bg.png");
  background-repeat: no-repeat;
  background-position: right center;
  background-size: cover;
  color: var(--navy);
}
.cover__in { max-width: 620px; }
.cover .eyebrow { color: var(--gold-ink); }
.cover h1 {
  margin-top: 18px;
  color: var(--navy);
  font-size: clamp(30px, 3.9vw, 50px);
  max-width: 15ch;
}
.cover__lead {
  margin: 22px 0 34px;
  font-size: clamp(16px, 1.5vw, 19px);
  color: #3C4A66;
  max-width: 40ch;
}

/* На узких экранах кадрирование съедает лицо, поэтому фото уходит
   отдельным блоком сверху, а текст ложится под ним. */
@media (max-width: 900px) {
  .cover {
    min-height: 0;
    display: block;
    padding: 0 0 40px;
    background-image: none;
  }
  .cover::before {
    content: "";
    display: block;
    height: min(60vh, 420px);
    margin-bottom: 28px;
    background: #EDF2FA url("../photo/hero-bg.png") no-repeat 78% center / cover;
  }
  .cover__in { max-width: none; }
}

/* полоса с заявкой сразу под обложкой */
.strip { padding: clamp(36px, 4vw, 56px) 0; }
.strip__in { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(24px, 3vw, 56px); align-items: center; }
@media (max-width: 900px) { .strip__in { grid-template-columns: 1fr; } }
.strip h2 { font-size: clamp(22px, 2.4vw, 30px); }
.strip .form-inline { margin-top: 0; max-width: none; }

/* компактная форма в обложке */
.form-inline {
  display: grid; grid-template-columns: 1fr 1fr auto; gap: 12px;
  align-items: end; margin-top: 32px; max-width: 620px;
}
.form-inline .field { margin-bottom: 0; }
.form-inline .field label { color: rgba(232, 237, 247, .7); }
.form-inline .btn { height: 50px; }
.form-inline .consent { grid-column: 1 / -1; margin: 2px 0 0; color: rgba(232, 237, 247, .6); }
.form-inline .consent a { color: rgba(232, 237, 247, .85); }
@media (max-width: 620px) {
  .form-inline { grid-template-columns: 1fr; }
  .form-inline .btn { width: 100%; }
}

/* ---------- фото рядом с финальной формой ---------- */

.person { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(28px, 4vw, 64px); align-items: center; }
@media (max-width: 900px) { .person { grid-template-columns: 1fr; } }
.person__photo { margin: 0; }
.person__photo img { width: 100%; max-width: 460px; margin: 0 auto; }
.person__side { max-width: 560px; }

/* ---------- фото основателя на странице «Об агентстве» ---------- */

.founder__photo {
  margin: 0; aspect-ratio: auto; border: 0; background: none; padding: 0;
  display: block;
}
.founder__photo img { width: 100%; }

/* логотип клиента вместо заглушки — рамку убираем */
.logo-slot:has(img) { border-style: solid; border-color: var(--line); }
.logo-slot img { max-height: 62px; width: auto; object-fit: contain; }

/* восемь этапов подбора — в четыре колонки, иначе карточки слишком узкие */
.steps--eight { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 1040px) { .steps--eight { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .steps--eight { grid-template-columns: 1fr; } }

/* ---------- юридические документы ---------- */

.doc { max-width: 78ch; font-size: 16px; color: var(--ink-soft); }
.doc p { margin-bottom: 14px; }
.doc__h {
  font-family: var(--text); font-weight: 700; font-size: 20px; color: var(--navy);
  margin: 40px 0 16px; padding-top: 20px; border-top: 1px solid var(--line);
}
.doc__h:first-child { margin-top: 0; padding-top: 0; border-top: 0; }
.doc__dash { padding-left: 18px; }
.doc__pending {
  background: var(--mist); border-left: 3px solid var(--gold);
  padding: 26px 28px; border-radius: var(--radius);
}
.doc__pending p { color: var(--ink); }

/* ---------- рубрики статей ---------- */

.rubrics { display: flex; flex-wrap: wrap; gap: 10px; }
.rubric {
  font-size: 14px; font-weight: 600; color: var(--ink-soft);
  border: 1px solid var(--line); border-radius: 99px; padding: 8px 18px; background: var(--white);
}
.rubric.is-active { background: var(--navy); border-color: var(--navy); color: var(--white); }

/* Ловушка для роботов: человек этого поля не видит и не заполняет,
   а автоматический заполнитель форм — заполняет. Такие заявки отсеиваем
   на сервере, не докучая посетителю капчей. */
.trap { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* Сертификат в подвале — картинкой со ссылкой на файл целиком. */
.cert-slot { padding: 0; overflow: hidden; }
.cert-slot img { width: 100%; height: 100%; object-fit: cover; }
