/* SuomResort / Horizon Marketing — main stylesheet
   Started: Mar 2024 (@mike)
   Tweaks: Nov 2024, Feb 2025 (@tom)
   Light Nordic teal look — don't flip to dark without checking brand notes.
*/

@font-face {
  font-family: "Fraunces";
  src: url("../fonts/fraunces-regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Fraunces";
  src: url("../fonts/fraunces-semibold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Fraunces";
  src: url("../fonts/fraunces-bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "DM Sans";
  src: url("../fonts/dmsans-regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "DM Sans";
  src: url("../fonts/dmsans-medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "DM Sans";
  src: url("../fonts/dmsans-bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --ink: #121a22;
  --ink-soft: #2a3845;
  --muted: #3f4f5c;
  --bg: #f3f6f8;
  --bg-alt: #e8eef2;
  --surface: #ffffff;
  --line: #d0dbe3;
  --accent: #0a5c56; /* brand teal — locked, darkened for AA */
  --accent-dark: #084540;
  --accent-soft: #d4ebe8;
  --focus: #0a5c56;
  --danger: #9b2c2c;
  --radius: 4px;
  --shadow: 0 12px 40px rgba(21, 32, 41, 0.08);
  --header-h: 72px;
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "DM Sans", "Segoe UI", sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--accent-dark);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--accent);
}

:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
}

/* a11y helpers — keep both, some pages use one or the other */
.visually-hidden,
.hm-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 10000;
  background: var(--ink);
  color: #fff;
  padding: 0.75rem 1.25rem;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

.container,
.hm-wrap {
  width: min(1120px, calc(100% - 2.5rem));
  margin-inline: auto;
}

/* ---------- header / sticky bar ---------- */
/* deslop: dropped backdrop blur — solid bar */
.site-header,
.main-header,
.hm-header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: var(--bg);
  border-bottom: 1px solid var(--line);
}

.header-inner,
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-h);
  gap: 1rem;
}

.brand,
.site-header__brand,
.app-brand {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: var(--ink);
  line-height: 1.15;
}

.brand:hover,
.site-header__brand:hover,
.app-brand:hover {
  color: var(--accent-dark);
}

.brand-name,
.site-header__brand-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.35rem;
  letter-spacing: -0.02em;
}

.brand-tag {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.nav-desktop,
.hm-nav {
  display: none;
  align-items: center;
  gap: 0.15rem 1.1rem;
}

.nav-desktop a,
.hm-nav a {
  text-decoration: none;
  color: var(--ink-soft);
  font-size: 0.92rem;
  font-weight: 500;
}

.nav-desktop a:hover,
.nav-desktop a[aria-current="page"],
.hm-nav a:hover,
.hm-nav a[aria-current="page"] {
  color: var(--accent-dark);
}

.header-actions,
.ui-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

/* buttons — simple names + a couple of ui- prefixes */
.btn,
.ui-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.75rem 1.35rem;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  transition:
    background 0.25s var(--ease),
    color 0.25s var(--ease),
    border-color 0.25s var(--ease),
    transform 0.25s var(--ease);
}

.btn:active,
.ui-btn:active {
  transform: translateY(1px);
}

.btn-primary,
.ui-btn--primary {
  background: var(--accent);
  color: #fff;
}

.btn-primary:hover,
.ui-btn--primary:hover {
  background: var(--accent-dark);
  color: #fff;
}

.btn-secondary,
.ui-btn--secondary {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}

.btn-secondary:hover,
.ui-btn--secondary:hover {
  border-color: var(--ink-soft);
  color: var(--ink);
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: rgba(21, 32, 41, 0.2);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.55);
  color: var(--ink);
}

/* camelCase leftover from early prototype — still wired in JS comments */
.menu-toggle,
.menuToggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--ink);
  cursor: pointer;
}

.menu-toggle-bars,
.menuToggleBars {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 18px;
}

.menu-toggle-bars span,
.menuToggleBars span {
  display: block;
  height: 2px;
  background: currentColor;
  border-radius: 1px;
}

/* mobile drawer — transform + opacity on overlay */
.mobile-nav-overlay,
.app-navOverlay {
  position: fixed;
  inset: 0;
  background: rgba(21, 32, 41, 0.45);
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.35s var(--ease),
    visibility 0.35s var(--ease);
  z-index: 950;
}

.mobile-nav-overlay.is-open,
.app-navOverlay.is-open {
  opacity: 1;
  visibility: visible;
}

.mobile-nav,
.app-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(320px, 88vw);
  height: 100%;
  background: var(--surface);
  box-shadow: var(--shadow);
  transform: translateX(100%);
  opacity: 1;
  transition:
    transform 0.4s var(--ease),
    opacity 0.35s var(--ease);
  z-index: 960;
  display: flex;
  flex-direction: column;
  padding: 1.25rem;
}

.mobile-nav.is-open,
.app-drawer.is-open {
  transform: translateX(0);
}

.mobile-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.mobile-nav-close {
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg);
  font-size: 1.25rem;
  cursor: pointer;
  color: var(--ink);
}

.mobile-nav nav {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.mobile-nav nav a {
  text-decoration: none;
  color: var(--ink);
  padding: 0.85rem 0.5rem;
  font-weight: 500;
  border-bottom: 1px solid var(--line);
}

.mobile-nav nav a:hover,
.mobile-nav nav a[aria-current="page"] {
  color: var(--accent-dark);
}

/* ---------- hero ---------- */
/* TODO(@tom): check min-height on short landscape phones — May 2025 */
.hero,
.hero-section,
.hero-baner {
  position: relative;

  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--bg);
}

/* .hero-baner = typo alias from early mockups (missing 'n') — grouped with .hero above */

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.38;
}

/* readability scrim over photo — flat wash, not atmospheric gradient */
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(243, 246, 248, 0.72);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 4.5rem 0 5rem;
  animation: rise 0.9s var(--ease) both;
}

.hero-place {
  /* deslop-ignore 10 — home hero location line only */
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 1rem;
}

.hero h1,
.hero-section h1,
.hero-baner h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 4.25rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin: 0 0 1.1rem;
  max-width: 14ch;
  color: var(--ink);
}

.hero h1 em,
.hero-section h1 em {
  font-style: normal;
  font-weight: 700;
  color: inherit;
}

.hero-lead {
  max-width: 38rem;
  color: var(--ink-soft);
  margin: 0 0 1.75rem;
  font-size: 1.1rem;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* stats strip */
.stats,
.hm-stats {
  background: var(--surface);
  border-block: 1px solid var(--line);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  padding: 2.25rem 0;
}

.stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  color: var(--accent-dark);
  line-height: 1.1;
}

.stat span {
  color: var(--muted);
  font-size: 0.92rem;
}

/* sections */
.section,
.hm-section {
  padding: 5rem 0;
}

.section-alt {
  background: var(--bg-alt);
}

/* legacy typo class — kept for markup hooks; MUST stay light (dark theme broke contrast) @anna 21.07 */
.secton-dark {
  /* no dark background — contrast fix */
}

.section-label {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin: 0 0 0.75rem;
  font-weight: 600;
}

.section h2,
.hm-section h2 {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3.5vw, 2.75rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 1rem;
  max-width: 18ch;
}

.section-intro {
  max-width: 42rem;
  color: var(--ink-soft);
  margin: 0 0 2rem;
}

.prose p {
  margin: 0 0 1.15rem;
  color: var(--ink-soft);
}

.prose p:last-child {
  margin-bottom: 0;
}

/* split layouts */
.split,
.hm-split {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.media-frame,
.ui-media {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--bg-alt);
}

.media-frame img,
.ui-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 280px;
  transition: transform 0.7s var(--ease);
}

.media-frame:hover img,
.ui-media:hover img {
  transform: scale(1.03);
}

.caption {
  margin-top: 0.65rem;
  font-size: 0.85rem;
  color: var(--ink-soft);
}

/* tables */
.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
}

th,
td {
  padding: 0.85rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--line);
}

th {
  background: var(--bg-alt);
  font-weight: 600;
  color: var(--ink);
}

tr:last-child td {
  border-bottom: 0;
}

.card-grid {
  display: grid;
  gap: 1.5rem;
}

.feature-block {
  display: grid;
  gap: 1rem;
}

.feature-block h3 {
  font-family: var(--font-display);
  font-size: 1.55rem;
  margin: 0;
}

.feature-block p {
  margin: 0;
  color: var(--ink-soft);
}

.price-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
}

.price-list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
}

.price-list strong {
  color: var(--ink);
  font-weight: 500;
}

/* suites / pricing cards */
.suite-grid {
  display: grid;
  gap: 1.25rem;
}

.suite-item,
.pricin-card {
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 1.35rem;
}

/* FIXME(@mike): .pricin-card was a typo in v1 wireframe — keep as alias for .suite-item */
.pricin-card h3,
.suite-item h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin: 0 0 0.5rem;
}

.suite-item p,
.pricin-card p {
  margin: 0 0 0.85rem;
  color: var(--ink-soft);
}

.suite-price {
  font-weight: 600;
  color: var(--accent-dark);
}

.quote {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.5vw, 1.85rem);
  font-style: italic;
  color: var(--ink);
  margin: 2rem 0;
  max-width: 28rem;
}

/* CTA band — solid dark teal */
.cta-band {
  position: relative;
  overflow: hidden;
  padding: 4.5rem 0;
  background: #12353c;
  color: #eef5f4;
}

.cta-band h2 {
  color: #fff;
  max-width: 16ch;
}

.cta-band p {
  color: #e8f4f2;
  max-width: 34rem;
}

.cta-band .btn-primary {
  background: #fff;
  color: var(--accent-dark);
}

.cta-band .btn-primary:hover {
  background: var(--accent-soft);
}

.page-hero {
  padding: 3.5rem 0 2rem;
  background: var(--bg-alt);
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  margin: 0 0 0.75rem;
  letter-spacing: -0.02em;
  max-width: 18ch;
}

.page-hero p {
  margin: 0;
  max-width: 40rem;
  color: var(--ink-soft);
}

/* legal pages */
.legal-meta {
  font-size: 0.9rem;
  color: var(--muted);
  margin: 0 0 2rem;
}

.legal-content h2 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  margin: 2.25rem 0 0.75rem;
}

.legal-content h3 {
  font-size: 1.1rem;
  margin: 1.5rem 0 0.5rem;
}

.legal-content ul,
.legal-content ol {
  padding-left: 1.25rem;
  color: var(--ink-soft);
}

.legal-content li {
  margin-bottom: 0.45rem;
}

/* contact + forms */
.contact-grid {
  display: grid;
  gap: 2rem;
}

.contact-details dt {
  font-weight: 600;
  margin-top: 1rem;
}

.contact-details dd {
  margin: 0.25rem 0 0;
  color: var(--ink-soft);
}

.form,
.hm-form {
  display: grid;
  gap: 1rem;
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 1.5rem;
}

.form label,
.hm-form label {
  display: grid;
  gap: 0.4rem;
  font-weight: 500;
  font-size: 0.92rem;
}

.form input,
.form select,
.form textarea,
.hm-form input,
.hm-form select,
.hm-form textarea {
  width: 100%;
  padding: 0.8rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font: inherit;
  color: var(--ink);
  background: var(--bg);
}

.form input:focus,
.form select:focus,
.form textarea:focus,
.hm-form input:focus,
.hm-form select:focus,
.hm-form textarea:focus {
  border-color: var(--accent);
  outline: 3px solid var(--accent-soft);
  outline-offset: 0;
}

.form textarea,
.hm-form textarea {
  min-height: 140px;
  resize: vertical;
}

.responsible-banner {
  background: var(--surface);
  border-top: 1px solid var(--line);
  padding: 1.25rem 0;
  font-size: 0.92rem;
  color: var(--ink-soft);
}

.responsible-banner strong {
  color: var(--ink);
}

/* footer */
.site-footer,
.hm-footer {
  background: #132029;
  color: #d5e0e8;
  padding: 3.5rem 0 2rem;
}

.footer-grid {
  display: grid;
  gap: 2rem;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: #fff;
  margin: 0 0 0.75rem;
}

.footer-copy {
  margin: 0;
  max-width: 28rem;
  color: #c5d4de;
  font-size: 0.95rem;
}

.footer-address {
  margin: 1rem 0 0;
  font-size: 0.92rem;
  color: #c5d4de;
}

.footer-nav h2 {
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #9fd0c6;
  margin: 0 0 0.85rem;
  font-weight: 600;
}

.footer-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-nav li {
  margin-bottom: 0.45rem;
}

.footer-nav a {
  color: #d5e0e8;
  text-decoration: none;
}

.footer-nav a:hover {
  color: #fff;
}

.footer-bottom {
  margin-top: 2.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(197, 210, 219, 0.18);
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  justify-content: space-between;
  font-size: 0.85rem;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
}

.footer-legal a {
  color: #c5d4de;
  text-decoration: none;
}

.footer-legal a:hover {
  color: #fff;
}

/* cookie banner — fixed bottom, English-ready (copy lives in HTML)
   @tom 18.06.2024 — hide with .is-hidden (smooth slide) */
.cookie-banner,
.hm-cookie {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1200;
  background: var(--surface);
  border-top: 1px solid var(--line);
  box-shadow: 0 -8px 30px rgba(21, 32, 41, 0.12);
  padding: 1.1rem 0;
  transform: translateY(0);
  opacity: 1;
  transition:
    transform 0.4s var(--ease),
    opacity 0.4s var(--ease);
}

.cookie-banner.is-hidden,
.hm-cookie.is-hidden {
  transform: translateY(110%);
  opacity: 0;
  pointer-events: none;
}

.cookie-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.cookie-text {
  margin: 0;
  flex: 1 1 280px;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.cookie-actions {
  display: flex;
  gap: 0.65rem;
  flex-wrap: wrap;
}

/* success modal */
.modal-overlay,
.app-modalOverlay {
  position: fixed;
  inset: 0;
  background: rgba(21, 32, 41, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  z-index: 1300;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.35s var(--ease),
    visibility 0.35s var(--ease);
}

.modal-overlay.is-open,
.app-modalOverlay.is-open {
  opacity: 1;
  visibility: visible;
}

.modal,
.ui-modal {
  width: min(440px, 100%);
  background: var(--surface);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow);
  transform: translateY(12px);
  transition: transform 0.35s var(--ease);
}

.modal-overlay.is-open .modal,
.app-modalOverlay.is-open .ui-modal {
  transform: translateY(0);
}

.modal h2,
.ui-modal h2 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  margin: 0 0 0.65rem;
}

.modal p,
.ui-modal p {
  margin: 0 0 1.25rem;
  color: var(--ink-soft);
}

.modal-actions {
  display: flex;
  justify-content: flex-end;
}

body.nav-open,
body.modal-open {
  overflow: hidden;
}

/* ---------- breakpoints ---------- */
@media (min-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .split,
  .hm-split {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 3rem;
  }

  .split.reverse {
    grid-template-columns: 0.95fr 1.05fr;
  }

  .split.reverse .split-media {
    order: 2;
  }

  .card-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .contact-grid {
    grid-template-columns: 0.9fr 1.1fr;
  }

  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
  }
}

@media (min-width: 960px) {
  .nav-desktop,
  .hm-nav {
    display: flex;
  }

  .menu-toggle,
  .menuToggle {
    display: none;
  }

  .header-actions .btn-reserve-mobile {
    display: inline-flex;
  }
}

@media (max-width: 959px) {
  .header-actions .btn-reserve-desktop {
    display: none;
  }
}

/* TODO(@mike): nuke unused aliases after next HTML pass — .hero-baner / .secton-dark / .pricin-card */

/* --- quick widgets dumped in before launch (anna 18.06) — polish later --- */
.hm-age-strip,
.ui-notice {
  background: var(--accent-soft);
  border-bottom: 1px solid var(--line);
  font-size: 0.95rem;
  color: var(--ink-soft);
}

.hm-age-strip p,
.ui-notice p {
  margin: 0 0 1rem;
}

.ui-chip,
.hm-allergenNote {
  display: inline-block;
  padding: 0.55rem 0.9rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-size: 0.9rem;
  color: var(--ink-soft);
}

.ui-showtimes,
.hm-showtimes {
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 1.1rem 1.25rem;
  margin-bottom: 1.5rem;
}

.ui-showtimes h2,
.hm-showtimes h2 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin: 0 0 0.5rem;
}

.hm-helplineWidget,
.ui-helpline {
  background: var(--bg-alt);
}

.hm-helplineWidget .container,
.ui-helpline .container {
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 1.25rem 1.4rem;
}
