/* Hero overrides and homepage ticker */
.nv {
  position: relative !important;
  overflow: hidden !important;
  background: #01274e !important;
  height: 100vh !important;
  display: flex !important;
  align-items: center !important;
  padding: clamp(0.8rem, 1.5vh, 1.2rem) 0 clamp(1rem, 1.5vh, 1.5rem) !important;
}

.nv::before,
.nv::after {
  display: none !important;
}

#hero-waterfall-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 0;
}

.nv__floating-words {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.nv__floating-words span {
  position: absolute;
  bottom: -40px;
  color: rgba(255, 255, 255, 0.28);
  font-size: clamp(0.72rem, 1vw, 0.88rem);
  letter-spacing: 0.08em;
  white-space: nowrap;
  text-transform: uppercase;
  font-weight: 600;
  animation: nv-float 14s linear infinite;
}

.nv__floating-words span:nth-child(1) { left: 5%; animation-delay: 0s; }
.nv__floating-words span:nth-child(2) { left: 22%; animation-delay: 3s; }
.nv__floating-words span:nth-child(3) { left: 42%; animation-delay: 6s; }
.nv__floating-words span:nth-child(4) { left: 64%; animation-delay: 9s; }
.nv__floating-words span:nth-child(5) { left: 82%; animation-delay: 11.5s; }

@keyframes nv-float {
  0% { transform: translateY(0); opacity: 0; }
  8% { opacity: 0.4; }
  88% { opacity: 0.18; }
  100% { transform: translateY(-110vh); opacity: 0; }
}

.nv__center {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1320px !important;
  margin: 0 auto !important;
  padding: 0 clamp(1.5rem, 4vw, 2.5rem) !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
}

.nv__announcement {
  width: 100%;
  text-align: center;
  margin-bottom: 0.8rem !important;
  animation: announcement-fade-in 0.6s ease-out;
}

@keyframes announcement-fade-in {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.nv__announcement-text {
  font-size: clamp(0.8rem, 1.8vw, 0.95rem) !important;
  font-weight: 600 !important;
  color: rgba(240, 203, 106, 0.95) !important;
  margin: 0 !important;
  letter-spacing: 0.2px !important;
  padding: 0.5rem 1rem !important;
  background: linear-gradient(135deg, rgba(240, 203, 106, 0.08) 0%, rgba(196, 154, 48, 0.05) 100%) !important;
  border: 1px solid rgba(240, 203, 106, 0.25) !important;
  border-radius: 8px !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 0.4rem !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.nv__rocket-icon {
  display: inline-block !important;
  width: 18px !important;
  height: 18px !important;
  min-width: 18px !important;
  min-height: 18px !important;
  flex-shrink: 0 !important;
  color: rgba(240, 203, 106, 0.95) !important;
  animation: rocket-pulse 2.5s ease-in-out infinite;
  margin-right: 0.25rem !important;
}

@keyframes rocket-pulse {
  0%, 100% {
    transform: translateY(0) scale(1);
    opacity: 0.95;
  }
  50% {
    transform: translateY(-2px) scale(1.05);
    opacity: 1;
  }
}

.nv__left {
  width: 100%;
  display: contents;
}

.nv__badge {
  margin-bottom: 0.6rem !important;
  background: rgba(255, 255, 255, 0.09) !important;
  border: 1px solid rgba(255, 255, 255, 0.16) !important;
  color: rgba(255, 255, 255, 0.8) !important;
  box-shadow: none !important;
  border-radius: 8px !important;
  font-size: 0.75rem !important;
}

.nv__h1 {
  font-size: clamp(1.1rem, 1.8vw, 1.45rem) !important;
  font-weight: 400 !important;
  line-height: 1.5 !important;
  margin: 0 0 0.8rem !important;
  letter-spacing: 0 !important;
  max-width: 1020px !important;
}

.nv__h1-main {
  font-style: normal !important;
  font-weight: 700 !important;
  color: #fff !important;
  display: inline !important;
}

.nv__h1-copy {
  font-weight: 400 !important;
  color: rgba(140, 210, 255, 0.88) !important;
  display: inline !important;
}

.nv__center .nv__actions {
  justify-content: flex-start !important;
  margin-bottom: 0.65rem !important;
}

.nv__support {
  color: rgba(255, 255, 255, 0.35) !important;
  font-size: 0.8rem !important;
  margin: 0 !important;
}

.nv__btn-primary {
  background: linear-gradient(180deg, #f0cb6a 0%, #c49a30 100%) !important;
  color: #001f3d !important;
  box-shadow: 0 14px 32px -18px rgba(196, 154, 48, 0.6) !important;
  min-height: 40px !important;
  border-radius: 8px !important;
  font-size: 0.85rem !important;
  padding: 0 1.1rem !important;
}

.nv__btn-primary:hover {
  background: linear-gradient(180deg, #f7d880 0%, #ddb040 100%) !important;
}

.nv__btn-secondary {
  background: rgba(255, 255, 255, 0.07) !important;
  border: 1px solid rgba(255, 255, 255, 0.22) !important;
  color: #fff !important;
  min-height: 40px !important;
  border-radius: 8px !important;
  font-size: 0.85rem !important;
  padding: 0 1.1rem !important;
}

.nv__btn-secondary:hover {
  background: rgba(255, 255, 255, 0.13) !important;
}

.nv__center .nv-mcalc {
  margin-top: 1.2rem;
  width: 100%;
  max-width: 960px;
}

@media (prefers-reduced-motion: reduce) {
  .nv__floating-words span {
    animation: none;
    opacity: 0;
  }
}

@media (max-width: 768px) {
  .nv {
    padding: clamp(0.8rem, 1.2vh, 1rem) 0 clamp(0.8rem, 1.2vh, 1rem) !important;
  }

  .nv__h1 {
    font-size: clamp(1rem, 3.2vw, 1.2rem) !important;
    margin: 0 0 0.6rem !important;
  }

  .nv__announcement {
    margin-bottom: 0.6rem !important;
  }
}

@media (max-width: 520px) {
  .nv {
    padding: clamp(0.6rem, 1vh, 0.8rem) 0 clamp(0.6rem, 1vh, 0.8rem) !important;
  }

  .nv__center .nv__actions {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    max-width: 100%;
    gap: 0.5rem !important;
  }

  .nv__btn-primary,
  .nv__btn-secondary {
    width: 100%;
    justify-content: center;
    min-height: 38px !important;
    font-size: 0.8rem !important;
  }

  .nv__h1 {
    font-size: clamp(0.95rem, 4vw, 1.1rem) !important;
    margin: 0 0 0.5rem !important;
  }

  .nv__badge {
    font-size: 0.65rem !important;
    margin-bottom: 0.5rem !important;
  }

  .nv__announcement-text {
    font-size: 0.75rem !important;
    padding: 0.4rem 0.8rem !important;
  }

  .nv__support {
    font-size: 0.65rem !important;
  }
}

@media (max-width: 480px) {
  .nv-mcalc {
    padding: 0.75rem 0.85rem !important;
  }

  .nv-mcalc__row {
    flex-wrap: wrap;
    gap: 0.5rem;
  }

  .nv-mcalc__price-wrap {
    flex: 1 1 100%;
  }

  .nv-mcalc__select {
    flex: 1 1 auto;
    min-width: 0;
  }

  .nv-mcalc__btn {
    flex: 0 0 auto;
  }
}

.nv__ticker {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  overflow: hidden;
  padding: 0.65rem 0;
  background: rgba(0, 0, 0, 0.22);
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
}

.nv__ticker-track {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  white-space: nowrap;
  animation: nv-ticker 32s linear infinite;
  width: max-content;
}

.nv__ticker-track span {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}

.nv__ticker-track span[aria-hidden="true"] {
  color: rgba(240, 203, 106, 0.5);
  font-size: 0.6rem;
}

@keyframes nv-ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .nv__ticker-track {
    animation: none;
  }
}

/* Responsive harmony pass for the landing */
@media (min-width: 981px) {
  .nv__h1 {
    max-width: min(760px, calc(100% - clamp(320px, 34vw, 500px) - 2rem)) !important;
  }

  .nv__center .nv-mcalc {
    max-width: min(720px, calc(100% - clamp(320px, 34vw, 500px) - 2rem)) !important;
  }
}

@media (max-width: 980px) {
  .nv {
    min-height: auto !important;
    padding: clamp(2.2rem, 5vw, 3.5rem) 0 clamp(4.2rem, 8vw, 5.5rem) !important;
  }

  .nv__center {
    align-items: center !important;
    text-align: center;
  }

  .nv__announcement {
    margin-bottom: 1.5rem !important;
  }

  .nv__left {
    display: flex !important;
    width: 100%;
    max-width: 780px !important;
    flex-direction: column;
    align-items: center;
  }

  .nv__h1 {
    max-width: 760px !important;
    margin-bottom: 0.35rem !important;
  }

  .nv__center .nv__actions {
    justify-content: center !important;
  }

  .nv__support {
    text-align: center;
  }

  .nv__center .nv-mcalc {
    max-width: 720px !important;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 860px) {
  .container {
    width: min(100% - 2rem, var(--container)) !important;
  }

  .nh__inner {
    width: min(100% - 1.5rem, var(--container)) !important;
  }

  .nh__nav {
    max-width: calc(100vw - 1.5rem);
  }

  .section,
  .sp2-section,
  .pro-section,
  .testimonios-section,
  .cta,
  .site-footer {
    overflow-x: clip;
  }

  .section-title,
  .sp2-h2,
  .pro-header .section-title,
  .testimonios-header h2,
  .cta__text h2 {
    letter-spacing: 0 !important;
    overflow-wrap: anywhere;
  }

  .cards,
  .pro-cards,
  .testimonios-grid {
    grid-template-columns: 1fr !important;
  }

  .pro-stops__grid,
  .pro-stats,
  .ccaa-grid,
  .widget-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .pro-cta-inline,
  .cta__box {
    flex-direction: column;
    align-items: stretch;
  }

  .pro-cta-inline__actions,
  .cta__actions,
  .widget-section__actions {
    width: 100%;
    flex-wrap: wrap;
  }

  .pro-cta-inline__actions .btn,
  .cta__actions .btn,
  .widget-section__actions .btn {
    flex: 1 1 220px;
  }

  .sp2-card--main {
    flex-direction: column !important;
  }

  .sp2-card__main-right,
  .sp2-card--nie,
  .sp2-card--lic {
    min-height: 180px !important;
  }

  .sp2-globe-canvas,
  .sp2-map-canvas {
    opacity: 0.78;
  }

  .sp2-sheet {
    width: min(100% - 1rem, 960px) !important;
    max-height: min(92svh, 760px);
  }

  .demo-sticky {
    top: 64px;
    height: calc(100svh - 64px) !important;
    min-height: 0;
    overflow: hidden !important;
  }

  .demo-inner {
    height: 100%;
    min-height: 0;
  }

  #como-funciona.demo-mobile-ready {
    min-height: auto !important;
    overflow: hidden;
  }

  #como-funciona.demo-mobile-ready > .demo-sticky {
    display: none !important;
  }

  .demo-mobile-strip {
    display: flex;
    gap: 0.85rem;
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 1rem max(1rem, calc((100vw - 430px) / 2)) 0.5rem;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: 1rem;
    -webkit-overflow-scrolling: touch;
  }

  .demo-mobile-strip::-webkit-scrollbar {
    display: none;
  }

  .demo-mobile-slide {
    flex: 0 0 min(86vw, 380px);
    min-height: calc(100svh - 112px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.85rem;
    scroll-snap-align: center;
    scroll-snap-stop: always;
  }

  .demo-mobile-slide .demo-copy {
    position: relative !important;
    inset: auto !important;
    width: 100%;
    opacity: 1 !important;
    transform: none !important;
    pointer-events: auto;
    text-align: left;
  }

  .demo-mobile-slide .demo-copy h3 {
    font-size: clamp(1.18rem, 5.8vw, 1.52rem) !important;
    line-height: 1.1;
    margin-bottom: 0.45rem;
  }

  .demo-mobile-slide .demo-copy p {
    font-size: 0.85rem !important;
    line-height: 1.55;
    margin-bottom: 0;
  }

  .demo-mobile-slide .demo-step-badge {
    margin-bottom: 0.45rem;
  }

  .demo-mobile-slide .demo-phone-wrap {
    display: block !important;
    flex-shrink: 0;
  }

  .demo-mobile-slide .dphone-scr {
    height: min(48svh, 380px) !important;
  }

  .demo-mobile-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 7px;
    padding: 0.25rem 1rem 1.2rem;
  }

  .demo-mobile-dots .demo-dot {
    appearance: none;
    border: 0;
    padding: 0;
  }
}

@media (max-width: 600px) {
  main,
  main > section,
  .container,
  .nv,
  .nv__center,
  .nv__left,
  .section-header,
  .sp2-intro,
  .pro-header,
  .testimonios-header,
  .cta__box,
  .widget-section__inner {
    max-width: 100vw !important;
    min-width: 0 !important;
  }

  .nv {
    padding-top: 1.75rem !important;
  }

  .nv__center {
    padding: 0 1rem !important;
    overflow: hidden;
  }

  .nv__badge {
    max-width: 100%;
    justify-content: center;
    white-space: normal;
    line-height: 1.35;
  }

  .nv__h1 {
    font-size: clamp(0.98rem, 4.2vw, 1.18rem) !important;
    line-height: 1.58 !important;
    max-width: 34rem !important;
    min-width: 0 !important;
    overflow-wrap: anywhere;
  }

  .nv__h1-main,
  .nv__h1-copy {
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .nv__actions,
  .nv__center .nv__actions {
    width: 100%;
    max-width: 360px;
    gap: 0.6rem;
    min-width: 0 !important;
  }

  .nv__btn-primary,
  .nv__btn-secondary {
    max-width: 100%;
    min-width: 0;
    min-height: 44px !important;
    padding: 0.72rem 0.9rem !important;
    white-space: normal;
  }

  .nv__support {
    max-width: 32ch;
    line-height: 1.45;
  }

  .nv__center .nv-mcalc {
    width: 100% !important;
    max-width: 420px !important;
    min-width: 0 !important;
    margin-top: 1rem;
    padding: 0.85rem !important;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.16) !important;
    border-color: rgba(255, 255, 255, 0.26) !important;
  }

  .nv__center .nv-mcalc__input,
  .nv__center .nv-mcalc__select {
    background: rgba(255, 255, 255, 0.18) !important;
    border-color: rgba(255, 255, 255, 0.34) !important;
  }

  .nv__center .nv-mcalc__btn {
    color: #001f3d;
    background: linear-gradient(180deg, #f0cb6a 0%, #c49a30 100%) !important;
  }

  .nv-mcalc__row {
    display: grid !important;
    grid-template-columns: 1fr;
  }

  .nv-mcalc__price-wrap,
  .nv-mcalc__select,
  .nv-mcalc__btn {
    width: 100%;
    min-width: 0;
  }

  .nv-mcalc__res-inner {
    display: grid;
    grid-template-columns: 1fr;
    text-align: left;
  }

  .nv-mcalc__sep {
    display: none;
  }

  .nv-mcalc__link {
    margin-left: 0;
  }

  .nv__floating-words span:nth-child(n+4) {
    display: none;
  }

  .section,
  .sp2-section,
  .pro-section,
  .testimonios-section,
  .cta {
    padding-top: 2.75rem !important;
    padding-bottom: 2.75rem !important;
  }

  .section-header,
  .sp2-intro,
  .pro-header,
  .testimonios-header {
    margin-bottom: 1.5rem !important;
  }

  .section-title,
  .sp2-h2,
  .pro-header .section-title,
  .testimonios-header h2,
  .cta__text h2 {
    font-size: clamp(1.45rem, 7vw, 1.95rem) !important;
    line-height: 1.12 !important;
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .section-sub,
  .sp2-sub,
  .pro-header .section-sub,
  .cta__text p {
    font-size: 0.92rem !important;
    line-height: 1.6 !important;
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .sp2-bento,
  .pro-stops__grid,
  .pro-cards,
  .pro-stats,
  .ccaa-grid,
  .widget-cards,
  .testimonios-grid {
    grid-template-columns: 1fr !important;
    gap: 0.9rem !important;
  }

  .sp2-card,
  .pro-card,
  .testimonio-card,
  .card,
  .widget-card {
    min-width: 0;
    max-width: 100%;
    padding: 1.15rem !important;
  }

  .sp2-card__main-right {
    min-height: 140px !important;
  }

  .sp2-globe-canvas {
    transform: scale(0.86);
    transform-origin: center;
  }

  .sp2-sheet {
    left: 0.5rem !important;
    right: 0.5rem !important;
    bottom: 0.5rem !important;
    width: auto !important;
    border-radius: 18px !important;
  }

  .sp2-sheet__inner {
    grid-template-columns: 1fr !important;
    gap: 1rem !important;
  }

  .demo-inner {
    padding-inline: 1rem !important;
  }

  .demo-text-col {
    height: clamp(152px, 26svh, 176px) !important;
    min-height: 0;
  }

  .demo-copy h3 {
    font-size: clamp(1.2rem, 6vw, 1.55rem) !important;
  }

  .demo-copy p {
    font-size: 0.86rem !important;
  }

  .dphone-scr {
    height: min(44svh, 350px) !important;
  }

  .pro-tab-nav {
    display: grid !important;
    grid-template-columns: 1fr;
  }

  .pro-tab-btn {
    white-space: normal;
  }

  .calc-compare-bar-row {
    grid-template-columns: 1fr !important;
    gap: 0.35rem !important;
  }

  .calc-compare-bar-name {
    text-align: left !important;
  }

  .widget-section__code {
    max-width: 100%;
    overflow-x: auto;
    white-space: pre;
  }

  .widget-section__actions .btn,
  .pro-cta-inline__actions .btn,
  .cta__actions .btn {
    width: 100%;
    flex-basis: 100%;
  }

  .footer-nav {
    width: 100%;
  }
}

@media (max-width: 375px) {
  .container {
    width: min(100% - 1.25rem, var(--container)) !important;
  }

  .nv__center {
    padding: 0 0.7rem !important;
  }

  .nv__h1 {
    font-size: 0.96rem !important;
    line-height: 1.52 !important;
  }

  .nv__btn-primary,
  .nv__btn-secondary,
  .nv-mcalc__btn {
    font-size: 0.82rem !important;
  }

  .dphone-scr {
    height: min(40svh, 300px) !important;
  }
}

html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

/* Custom region selector for the hero mini calculator */
.nv-mcalc__select {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.nv-mcalc__custom-select {
  position: relative;
  flex: 0 1 184px;
  min-width: 0;
  z-index: 8;
}

.nv-mcalc__select-btn {
  width: 100%;
  height: 48px;
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto;
  align-items: center;
  column-gap: 0.55rem;
  padding: 0.45rem 0.78rem;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  font-family: inherit;
  text-align: left;
  cursor: pointer;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transition: border-color 0.18s var(--ease), background 0.18s var(--ease), box-shadow 0.18s var(--ease);
}

.nv-mcalc__select-btn:hover,
.nv-mcalc__custom-select.is-open .nv-mcalc__select-btn {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.42);
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.nv-mcalc__select-btn:focus-visible {
  outline: 3px solid rgba(240, 203, 106, 0.5);
  outline-offset: 2px;
}

.nv-mcalc__select-kicker {
  grid-column: 1;
  font-size: 0.58rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(240, 203, 106, 0.9);
}

.nv-mcalc__select-value {
  grid-column: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 0.88rem;
  font-weight: 750;
  line-height: 1.2;
}

.nv-mcalc__select-icon {
  grid-column: 2;
  grid-row: 1 / span 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.25rem;
  height: 1.25rem;
  color: rgba(255, 255, 255, 0.72);
  transition: transform 0.18s var(--ease);
}

.nv-mcalc__custom-select.is-open .nv-mcalc__select-icon {
  transform: rotate(180deg);
}

.nv-mcalc__select-menu {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 0.45rem);
  display: grid;
  gap: 0.25rem;
  padding: 0.35rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 16px;
  background: rgba(5, 24, 48, 0.96);
  box-shadow: 0 22px 54px -28px rgba(0, 0, 0, 0.68), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  z-index: 20;
}

.nv-mcalc__select-menu[hidden] {
  display: none;
}

.nv-mcalc__select-menu button {
  width: 100%;
  min-height: 34px;
  padding: 0.5rem 0.65rem;
  border: 0;
  border-radius: 11px;
  background: transparent;
  color: rgba(255, 255, 255, 0.82);
  font: inherit;
  font-size: 0.84rem;
  font-weight: 680;
  text-align: left;
  cursor: pointer;
}

.nv-mcalc__select-menu button:hover,
.nv-mcalc__select-menu button:focus-visible {
  background: rgba(255, 255, 255, 0.11);
  color: #fff;
  outline: none;
}

.nv-mcalc__select-menu button[aria-selected="true"] {
  background: rgba(240, 203, 106, 0.16);
  color: #f0cb6a;
}

@media (max-width: 600px) {
  .nv-mcalc__custom-select {
    width: 100%;
    flex-basis: auto;
  }

  .nv-mcalc__select-menu {
    max-height: min(48svh, 280px);
    overflow-y: auto;
  }
}
