:root {
  --bg: #f4f7f8;
  --surface: #ffffff;
  --surface-strong: #eef3f4;
  --graphite: #202326;
  --graphite-soft: #3a4045;
  --muted: #667079;
  --line: #dbe3e6;
  --orange: #ff7a1a;
  --orange-dark: #d9550c;
  --teal: #0f8f8a;
  --yellow: #f3b229;
  --shadow: 0 20px 60px rgba(23, 30, 36, 0.12);
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--graphite);
  background: var(--bg);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.5;
  letter-spacing: 0;
  overflow-x: hidden;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

.container {
  width: min(100% - 40px, var(--container));
  margin-inline: auto;
}

section[id] {
  scroll-margin-top: 88px;
}

.site-header {
  position: fixed;
  z-index: 40;
  top: 0;
  left: 0;
  width: 100%;
  color: #ffffff;
  transition:
    background-color 180ms ease,
    box-shadow 180ms ease,
    color 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  color: var(--graphite);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 10px 30px rgba(25, 31, 36, 0.08);
  backdrop-filter: blur(18px);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
  font-weight: 800;
}

.brand__mark {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  color: #ffffff;
  background: var(--orange);
  border-radius: 8px;
  box-shadow: 0 12px 22px rgba(255, 122, 26, 0.28);
}

.brand__text {
  font-size: 17px;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  font-size: 15px;
  font-weight: 700;
}

.site-nav a {
  opacity: 0.9;
  transition: color 160ms ease, opacity 160ms ease;
}

.site-nav a:hover {
  color: var(--orange);
  opacity: 1;
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.header__phone {
  font-size: 15px;
  font-weight: 800;
  white-space: nowrap;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  place-items: center;
  color: inherit;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
  border-radius: 99px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  color: var(--graphite);
  border: 1px solid transparent;
  border-radius: 12px;
  font-weight: 800;
  text-align: center;
  cursor: pointer;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background-color 160ms ease,
    border-color 160ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn--primary {
  color: #ffffff;
  background: var(--orange);
  box-shadow: 0 16px 28px rgba(255, 122, 26, 0.26);
}

.btn--primary:hover {
  background: var(--orange-dark);
}

.btn--ghost {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.46);
  backdrop-filter: blur(12px);
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.18);
}

.btn--small {
  min-height: 42px;
  padding-inline: 18px;
  border-radius: 10px;
  font-size: 14px;
}

.hero {
  position: relative;
  display: flex;
  min-height: 78svh;
  overflow: clip;
  color: #ffffff;
  isolation: isolate;
}

.hero__media,
.hero__shade {
  position: absolute;
  inset: 0;
}

.hero__media {
  z-index: -3;
  background-image: url("assets/hero-signage.png");
  background-position: center;
  background-size: cover;
  transform: scale(1.01);
}

.hero__shade {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(18, 21, 23, 0.9) 0%, rgba(18, 21, 23, 0.76) 42%, rgba(18, 21, 23, 0.25) 100%),
    linear-gradient(0deg, rgba(18, 21, 23, 0.22), rgba(18, 21, 23, 0.08));
}

.hero::after {
  position: absolute;
  z-index: -1;
  right: 0;
  bottom: 0;
  left: 0;
  height: 34%;
  content: "";
  background: linear-gradient(0deg, rgba(244, 247, 248, 0.2), rgba(244, 247, 248, 0));
}

.hero__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 760px;
  min-height: inherit;
  padding-top: 92px;
  padding-bottom: 52px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--orange);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: 72px;
  line-height: 0.96;
  letter-spacing: 0;
  text-wrap: balance;
}

.hero__lead {
  max-width: 690px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 21px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero__metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 680px;
  margin: 44px 0 0;
}

.hero__metrics div {
  padding: 16px;
  background: rgba(255, 255, 255, 0.11);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  backdrop-filter: blur(12px);
}

.hero__metrics dt {
  font-size: 24px;
  font-weight: 900;
}

.hero__metrics dd {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 14px;
}

.trust-strip {
  background: var(--surface);
  border-bottom: 1px solid var(--line);
}

.trust-strip__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.trust-strip__grid div {
  display: grid;
  gap: 4px;
  min-height: 118px;
  align-content: center;
  padding: 26px 28px;
  background: var(--surface);
}

.trust-strip strong {
  font-size: 18px;
}

.trust-strip span {
  color: var(--muted);
}

.widget-section {
  padding: 82px 0 96px;
  background:
    linear-gradient(180deg, var(--surface) 0%, var(--surface-strong) 100%);
}

.widget-section .container {
  width: min(100% - 40px, 1360px);
}

.widget-section h2,
.section-heading h2,
.request-copy h2,
.faq-section h2 {
  max-width: 840px;
  margin: 0;
  color: var(--graphite);
  font-size: 44px;
  line-height: 1.08;
  letter-spacing: 0;
}

.section-lead {
  max-width: 850px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.sign-widget-placeholder {
  position: relative;
  width: 100%;
  min-height: 740px;
  margin-top: 34px;
  overflow: visible;
  background: #fbfcfc;
  border: 1px solid rgba(32, 35, 38, 0.11);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.widget-placeholder__content {
  position: absolute;
  inset: 28px;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 22px;
  padding: 26px;
  color: var(--graphite);
  background:
    linear-gradient(135deg, rgba(255, 122, 26, 0.08), rgba(15, 143, 138, 0.09)),
    #ffffff;
  border: 1px dashed rgba(32, 35, 38, 0.22);
  border-radius: 18px;
}

.widget-placeholder__top {
  display: flex;
  gap: 10px;
}

.widget-placeholder__top span {
  width: 12px;
  height: 12px;
  background: var(--line);
  border-radius: 50%;
}

.widget-placeholder__top span:first-child {
  background: var(--orange);
}

.widget-placeholder__body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 24px;
}

.widget-placeholder__canvas,
.widget-placeholder__panel {
  min-height: 100%;
  background: var(--surface-strong);
  border: 1px solid var(--line);
  border-radius: 12px;
}

.widget-placeholder__canvas {
  display: grid;
  place-items: center;
  min-height: 470px;
  background:
    linear-gradient(90deg, rgba(32, 35, 38, 0.05) 1px, transparent 1px),
    linear-gradient(180deg, rgba(32, 35, 38, 0.05) 1px, transparent 1px),
    #f8fafb;
  background-size: 38px 38px;
}

.widget-placeholder__sign {
  display: inline-grid;
  min-width: 280px;
  min-height: 86px;
  place-items: center;
  color: #ffffff;
  background: var(--graphite);
  border: 8px solid #ffffff;
  border-radius: 8px;
  box-shadow:
    0 0 0 1px rgba(32, 35, 38, 0.14),
    0 20px 45px rgba(32, 35, 38, 0.18),
    0 0 42px rgba(255, 122, 26, 0.34);
  font-size: 32px;
  font-weight: 900;
}

.widget-placeholder__panel {
  display: grid;
  align-content: start;
  gap: 18px;
  padding: 22px;
}

.widget-placeholder__panel span {
  display: block;
  height: 54px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.widget-placeholder__panel span:nth-child(2) {
  height: 92px;
}

.widget-placeholder__panel span:last-child {
  width: 72%;
  background: var(--orange);
  border-color: var(--orange);
}

.widget-placeholder__content p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.section {
  padding: 92px 0;
}

.section-heading {
  margin-bottom: 38px;
}

.section-heading--split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 420px);
  gap: 40px;
  align-items: end;
}

.section-heading--split > p {
  margin: 0 0 6px;
  color: var(--muted);
  font-size: 18px;
}

.benefits-section,
.portfolio-section,
.faq-section {
  background: var(--bg);
}

.benefits-grid,
.services-grid,
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.benefit-card,
.service-card,
.portfolio-card {
  background: var(--surface);
  border: 1px solid rgba(32, 35, 38, 0.08);
  border-radius: 8px;
  box-shadow: 0 14px 35px rgba(35, 42, 47, 0.06);
}

.benefit-card {
  min-height: 228px;
  padding: 28px;
}

.benefit-card__icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--orange);
  background: rgba(255, 122, 26, 0.1);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 900;
}

.benefit-card h3,
.service-card h3,
.portfolio-card h3,
.process-list h3 {
  margin: 20px 0 0;
  font-size: 20px;
  line-height: 1.22;
  letter-spacing: 0;
}

.benefit-card p,
.service-card p,
.portfolio-card p,
.process-list p {
  margin: 12px 0 0;
  color: var(--muted);
}

.services-section {
  background: var(--surface);
}

.service-card {
  min-height: 310px;
  padding: 18px;
}

.service-card__visual {
  position: relative;
  height: 126px;
  overflow: hidden;
  background: var(--surface-strong);
  border-radius: 8px;
}

.service-card__visual::before,
.service-card__visual::after {
  position: absolute;
  content: "";
}

.service-card__visual--box::before {
  inset: 34px 28px;
  background: #ffffff;
  border: 5px solid var(--orange);
  border-radius: 8px;
  box-shadow: 0 0 32px rgba(255, 122, 26, 0.26);
}

.service-card__visual--box::after {
  right: 40px;
  bottom: 18px;
  left: 40px;
  height: 8px;
  background: rgba(32, 35, 38, 0.18);
  border-radius: 99px;
}

.service-card__visual--letters::before {
  top: 34px;
  left: 30px;
  width: 70%;
  height: 58px;
  background:
    linear-gradient(90deg, var(--graphite) 0 18%, transparent 18% 24%, var(--orange) 24% 43%, transparent 43% 50%, var(--teal) 50% 68%, transparent 68% 75%, var(--graphite) 75%);
  filter: drop-shadow(0 16px 12px rgba(32, 35, 38, 0.14));
}

.service-card__visual--facade::before {
  inset: 24px 24px 28px;
  background:
    linear-gradient(90deg, transparent 0 28%, rgba(255, 255, 255, 0.9) 28% 72%, transparent 72%),
    linear-gradient(180deg, var(--graphite) 0 36%, #dce5e7 36%);
  border-radius: 8px;
}

.service-card__visual--facade::after {
  top: 38px;
  left: 58px;
  width: 120px;
  height: 18px;
  background: var(--orange);
  border-radius: 4px;
}

.service-card__visual--plates::before {
  top: 24px;
  left: 46px;
  width: 160px;
  height: 76px;
  background: #ffffff;
  border-left: 8px solid var(--teal);
  border-radius: 8px;
  box-shadow: 0 16px 28px rgba(32, 35, 38, 0.13);
}

.service-card__visual--plates::after {
  top: 49px;
  left: 78px;
  width: 96px;
  height: 8px;
  background: var(--line);
  border-radius: 99px;
  box-shadow: 0 20px 0 var(--line);
}

.service-card__visual--neon::before {
  top: 38px;
  left: 42px;
  width: 160px;
  height: 52px;
  border: 6px solid var(--orange);
  border-right-color: var(--teal);
  border-radius: 28px;
  box-shadow:
    0 0 20px rgba(255, 122, 26, 0.36),
    0 0 40px rgba(15, 143, 138, 0.28);
}

.service-card__visual--banner::before {
  top: 26px;
  left: 32px;
  width: 176px;
  height: 70px;
  background: linear-gradient(135deg, var(--orange), var(--yellow));
  border-radius: 6px;
  transform: skewX(-5deg);
}

.service-card__visual--banner::after {
  top: 20px;
  left: 28px;
  width: 6px;
  height: 86px;
  background: var(--graphite);
  box-shadow: 186px 0 0 var(--graphite);
}

.process-section {
  background: #172025;
  color: #ffffff;
}

.process-section h2 {
  color: #ffffff;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-list li {
  min-height: 260px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
}

.process-list span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: #ffffff;
  background: var(--orange);
  border-radius: 8px;
  font-weight: 900;
}

.process-list p {
  color: rgba(255, 255, 255, 0.7);
}

.portfolio-card {
  overflow: hidden;
}

.portfolio-card__image {
  height: 240px;
  background-image: url("assets/portfolio-collage.png");
  background-repeat: no-repeat;
  background-size: 300% 200%;
}

.portfolio-card__image--1 {
  background-position: 0 0;
}

.portfolio-card__image--2 {
  background-position: 50% 0;
}

.portfolio-card__image--3 {
  background-position: 100% 0;
}

.portfolio-card__image--4 {
  background-position: 0 100%;
}

.portfolio-card__image--5 {
  background-position: 50% 100%;
}

.portfolio-card__image--6 {
  background-position: 100% 100%;
}

.portfolio-card h3,
.portfolio-card p {
  padding-inline: 20px;
}

.portfolio-card p {
  padding-bottom: 22px;
}

.text-link {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  color: var(--orange-dark);
  font-weight: 900;
}

.request-section {
  background: var(--surface);
}

.request-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 520px);
  gap: 56px;
  align-items: start;
}

.request-copy p {
  max-width: 590px;
  color: var(--muted);
  font-size: 18px;
}

.request-list {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.request-list li {
  position: relative;
  padding-left: 28px;
  font-weight: 700;
}

.request-list li::before {
  position: absolute;
  top: 0.68em;
  left: 0;
  width: 12px;
  height: 12px;
  content: "";
  background: var(--teal);
  border-radius: 4px;
  transform: translateY(-50%);
}

.request-form {
  display: grid;
  gap: 18px;
  padding: 28px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 45px rgba(35, 42, 47, 0.08);
}

.request-form label {
  display: grid;
  gap: 8px;
  font-weight: 800;
}

.request-form input,
.request-form textarea {
  width: 100%;
  color: var(--graphite);
  background: #ffffff;
  border: 1px solid #ccd6da;
  border-radius: 8px;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.request-form input {
  min-height: 52px;
  padding: 0 16px;
}

.request-form textarea {
  min-height: 132px;
  padding: 14px 16px;
  resize: vertical;
}

.request-form input:focus,
.request-form textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(255, 122, 26, 0.14);
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--teal);
  font-weight: 800;
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 880px;
}

.faq-list details {
  background: var(--surface);
  border: 1px solid rgba(32, 35, 38, 0.08);
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(35, 42, 47, 0.05);
}

.faq-list summary {
  padding: 22px 24px;
  cursor: pointer;
  font-size: 18px;
  font-weight: 900;
}

.faq-list p {
  margin: 0;
  padding: 0 24px 24px;
  color: var(--muted);
}

.site-footer {
  padding: 54px 0;
  color: #ffffff;
  background: var(--graphite);
}

.footer__grid {
  display: grid;
  grid-template-columns: minmax(260px, 1.2fr) minmax(180px, 0.8fr) minmax(160px, 0.7fr) auto;
  gap: 34px;
  align-items: start;
}

.brand--footer {
  color: #ffffff;
}

.site-footer p {
  max-width: 340px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.68);
}

.site-footer address,
.footer-nav {
  display: grid;
  gap: 10px;
  font-style: normal;
}

.site-footer address a,
.site-footer address span,
.footer-nav a {
  color: rgba(255, 255, 255, 0.78);
}

.footer__cta {
  display: flex;
  justify-content: flex-end;
}

@media (max-width: 1060px) {
  .site-nav,
  .header__actions {
    display: none;
  }

  .menu-toggle {
    display: grid;
  }

  .site-header.is-open .site-nav,
  .site-header.is-open .header__actions {
    position: absolute;
    left: 20px;
    right: 20px;
    display: grid;
    background: #ffffff;
    border: 1px solid var(--line);
    box-shadow: 0 18px 40px rgba(25, 31, 36, 0.12);
  }

  .site-header.is-open .site-nav {
    top: 82px;
    gap: 0;
    padding: 10px;
    border-radius: 8px 8px 0 0;
  }

  .site-header.is-open .site-nav a {
    padding: 13px 12px;
  }

  .site-header.is-open .header__actions {
    top: 265px;
    padding: 18px;
    border-top: 0;
    border-radius: 0 0 8px 8px;
  }

  .hero h1 {
    font-size: 54px;
  }

  .section-heading--split,
  .request-layout {
    grid-template-columns: 1fr;
  }

  .benefits-grid,
  .services-grid,
  .portfolio-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .widget-placeholder__body {
    grid-template-columns: 1fr;
  }

  .widget-placeholder__panel {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .widget-placeholder__panel span,
  .widget-placeholder__panel span:nth-child(2) {
    height: 52px;
  }

  .footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer__cta {
    justify-content: flex-start;
  }
}

@media (max-width: 760px) {
  .container,
  .widget-section .container {
    width: min(100% - 28px, var(--container));
  }

  .header__inner {
    min-height: 66px;
  }

  .brand__text {
    font-size: 16px;
  }

  .hero {
    min-height: 78svh;
  }

  .hero__media {
    background-position: 58% center;
  }

  .hero__shade {
    background:
      linear-gradient(90deg, rgba(18, 21, 23, 0.92) 0%, rgba(18, 21, 23, 0.74) 64%, rgba(18, 21, 23, 0.42) 100%),
      linear-gradient(0deg, rgba(18, 21, 23, 0.36), rgba(18, 21, 23, 0.06));
  }

  .hero__content {
    padding-top: 86px;
    padding-bottom: 34px;
  }

  .hero h1 {
    max-width: 330px;
    font-size: 36px;
    line-height: 1.08;
  }

  .hero__lead {
    max-width: 330px;
    margin-top: 18px;
    font-size: 16px;
  }

  .hero .eyebrow {
    max-width: 310px;
    line-height: 1.3;
    overflow-wrap: break-word;
  }

  .hero__actions {
    display: grid;
    max-width: 330px;
    margin-top: 24px;
  }

  .hero__actions .btn {
    width: 100%;
  }

  .hero__metrics {
    grid-template-columns: 1fr;
    gap: 8px;
    max-width: 330px;
    margin-top: 24px;
  }

  .hero__metrics div {
    display: grid;
    grid-template-columns: 96px 1fr;
    gap: 8px;
    align-items: center;
    padding: 10px 12px;
  }

  .hero__metrics dt {
    font-size: 19px;
  }

  .hero__metrics dd {
    margin: 0;
  }

  .trust-strip__grid,
  .benefits-grid,
  .services-grid,
  .portfolio-grid,
  .process-list,
  .footer__grid {
    grid-template-columns: 1fr;
  }

  .trust-strip__grid div {
    min-height: 96px;
    padding: 20px;
  }

  .section,
  .widget-section {
    padding: 64px 0;
  }

  .widget-section h2,
  .section-heading h2,
  .request-copy h2,
  .faq-section h2 {
    font-size: 32px;
  }

  .section-lead,
  .section-heading--split > p,
  .request-copy p {
    font-size: 16px;
  }

  .sign-widget-placeholder {
    min-height: 790px;
    border-radius: 22px;
  }

  .widget-placeholder__content {
    inset: 14px;
    padding: 16px;
    border-radius: 16px;
  }

  .widget-placeholder__canvas {
    min-height: 410px;
  }

  .widget-placeholder__sign {
    min-width: min(100%, 240px);
    min-height: 74px;
    font-size: 26px;
  }

  .widget-placeholder__panel {
    grid-template-columns: 1fr;
  }

  .benefit-card,
  .service-card,
  .request-form {
    padding: 22px;
  }

  .portfolio-card__image {
    height: 220px;
  }
}

@media (max-width: 420px) {
  .hero h1 {
    max-width: 310px;
    font-size: 32px;
  }

  .eyebrow,
  .section-kicker {
    font-size: 12px;
  }

  .btn {
    min-height: 50px;
    padding-inline: 18px;
  }

  .hero__metrics {
    display: none;
  }

  .hero {
    min-height: 74svh;
  }

  .portfolio-card__image {
    height: 190px;
  }
}
