/* Profit AI Rush — Light Editorial Income Lab */
:root {
  --white: #FFFFFF;
  --cloud: #F4F6FA;
  --coral: #E85D4C;
  --coral-dark: #D14A3A;
  --bloom: #FF8F7A;
  --ink: #111827;
  --mist: #9CA3AF;
  --shadow: 0 8px 32px rgba(17, 24, 39, 0.08);
  --shadow-hover: 0 16px 48px rgba(17, 24, 39, 0.12);
  --radius-card: 20px;
  --radius-pill: 999px;
  --font-display: "Clash Display", sans-serif;
  --font-body: "Satoshi", sans-serif;
  --max-width: 1200px;
  --header-height: 72px;
}

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

html { scroll-behavior: smooth; }

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

.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 10000;
  padding: 0.75rem 1.25rem;
  background: var(--coral);
  color: var(--white);
  border-radius: 0 0 8px 8px;
  font-weight: 600;
  text-decoration: none;
}

.skip-link:focus {
  top: 0;
  color: var(--white);
  outline: 2px solid var(--bloom);
  outline-offset: 2px;
}

body.menu-open { overflow: hidden; }

img { max-width: 100%; height: auto; display: block; }
a { color: var(--coral); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--coral-dark); }

.surface-light { background: var(--white); color: var(--ink); }
.surface-soft { background: var(--cloud); color: var(--ink); }
.surface-accent { background: var(--coral); color: var(--white); }
.surface-bloom { background: var(--bloom); color: var(--white); }

.surface-light *, .surface-soft *, .surface-accent *, .surface-bloom * { color: inherit; }
.surface-accent a, .surface-bloom a { color: var(--white); text-decoration: underline; }
.surface-light a, .surface-soft a { color: var(--coral); }
.surface-light a.btn-primary,
.surface-soft a.btn-primary,
.surface-bloom a.btn-primary,
.surface-accent a.btn-primary,
.nav-desktop a.btn-primary,
.nav-overlay a.btn-primary,
a.btn-primary,
button.btn-primary {
  color: var(--white) !important;
}
.surface-light a.btn-outline,
.surface-soft a.btn-outline {
  color: var(--coral);
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2rem, 5vw, 4rem); }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.75rem); margin-bottom: 1rem; }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); margin-bottom: 0.75rem; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.container {
  width: min(100% - 2rem, var(--max-width));
  margin-inline: auto;
}

.section { padding: clamp(3.5rem, 7vw, 6.5rem) 0; }

.section > .container > h2 + p {
  max-width: 62ch;
  margin-bottom: 2rem;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--header-height);
  background: var(--white);
  border-bottom: 1px solid rgba(17, 24, 39, 0.06);
  transition: box-shadow 0.3s;
}

.site-header.scrolled { box-shadow: var(--shadow); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  gap: 1.5rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.125rem;
}

.logo:hover { color: var(--ink); }

.logo-icon {
  width: 40px;
  height: 40px;
  background: var(--coral);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-desktop a {
  color: var(--ink);
  font-weight: 500;
  font-size: 0.9375rem;
}

.nav-desktop a:hover { color: var(--coral); }

.nav-desktop a[aria-current="page"] {
  color: var(--coral);
  font-weight: 600;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: var(--ink);
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  margin: 5px 0;
  transition: 0.3s;
}

.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: var(--white);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s, visibility 0.4s;
}

.nav-overlay.open {
  display: flex;
  opacity: 1;
  visibility: visible;
}

.nav-overlay a {
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: var(--ink);
  font-weight: 600;
}

.nav-overlay .overlay-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  color: var(--ink);
  line-height: 1;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9375rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  text-decoration: none;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--coral), var(--coral-dark));
  color: #FFFFFF !important;
  box-shadow: 0 4px 16px rgba(232, 93, 76, 0.3);
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
  color: #FFFFFF !important;
  box-shadow: 0 8px 24px rgba(232, 93, 76, 0.4);
}

.btn-outline {
  background: var(--white);
  color: var(--coral);
  border-color: var(--coral);
}

.btn-outline:hover { background: var(--cloud); color: var(--coral); }

.btn-bloom {
  background: var(--bloom);
  color: var(--white);
}

.btn-bloom:hover { color: var(--white); }

.btn-cta-light {
  background: var(--white);
  color: var(--coral) !important;
  border-color: var(--white);
  box-shadow: 0 4px 16px rgba(17, 24, 39, 0.12);
}

.btn-cta-light:hover {
  background: var(--cloud);
  color: var(--coral-dark) !important;
}

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

/* Hero Pattern F */
.hero-editorial {
  min-height: 95vh;
  padding: clamp(2rem, 5vw, 4rem) 0 clamp(6rem, 10vw, 8rem);
}

.hero-editorial h1 {
  max-width: 70%;
  margin-bottom: 1.25rem;
}

.hero-editorial .hero-sub {
  font-size: clamp(1.0625rem, 2vw, 1.25rem);
  max-width: 55ch;
  margin-bottom: 3rem;
  color: var(--ink);
}

.hero-mosaic {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 48px;
  position: relative;
  margin-bottom: 2rem;
}

.hero-mosaic .tile-large {
  grid-row: span 2;
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hero-mosaic .tile-small {
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hero-mosaic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 200px;
}

.hero-cta-bar {
  position: relative;
  margin-top: 1.25rem;
  z-index: 10;
  display: inline-flex;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 1.25rem 1.75rem;
  background: var(--white);
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-hover);
}

.hero-trust {
  margin-top: 2rem;
  font-size: 0.875rem;
  color: var(--mist);
}

.split-wide {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.split-wide img {
  border-radius: var(--radius-card);
  box-shadow: var(--shadow);
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

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

.pillar-card {
  background: var(--white);
  border-radius: var(--radius-card);
  padding: 2rem;
  box-shadow: var(--shadow);
  transition: transform 0.3s, box-shadow 0.3s;
}

.pillar-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.pillar-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(232, 93, 76, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.timeline {
  display: flex;
  gap: 0;
  overflow-x: auto;
  padding: 2rem 0;
  scroll-snap-type: x mandatory;
}

.timeline-node {
  flex: 0 0 auto;
  min-width: 200px;
  padding: 0 2rem;
  border-left: 2px solid var(--coral);
  scroll-snap-align: start;
}

.timeline-node:first-child { border-left: none; }

.timeline-label {
  font-family: var(--font-display);
  font-size: 0.8125rem;
  color: var(--coral);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
}

.carousel-wrap { position: relative; }

.carousel-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  padding: 0.5rem 0 0.5rem;
}

.program-card {
  background: var(--white);
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
  height: 100%;
  min-width: 0;
}

.program-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.program-card img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
}

.program-card-body {
  padding: 1.35rem 1.35rem 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.program-card-body p:last-of-type { margin-bottom: 1rem; }

.program-card-body a {
  margin-top: auto;
  font-weight: 600;
}

.lab-tag,
.program-card .lab-tag {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--coral);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.quote-block {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
  padding: 3rem 2rem;
}

.quote-block blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-style: italic;
  line-height: 1.4;
  margin-bottom: 1.5rem;
}

.quote-block cite {
  font-style: normal;
  font-size: 0.9375rem;
  color: var(--mist);
}

.faq-list { max-width: 800px; }

.faq-item {
  border-bottom: 1px solid rgba(17, 24, 39, 0.1);
  padding: 1.5rem 0;
}

.faq-item summary {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.125rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: "+";
  font-size: 1.5rem;
  color: var(--coral);
}

.faq-item[open] summary::after { content: "−"; }

.faq-item .faq-answer { padding-top: 1rem; }

.cta-band {
  text-align: center;
  padding: clamp(1.5rem, 3vw, 2.25rem) clamp(1.25rem, 3vw, 2rem);
  border-radius: var(--radius-card);
}

.cta-band h2 {
  margin-bottom: 0.5rem;
  font-size: clamp(1.35rem, 2.5vw, 1.85rem);
}
.cta-band p {
  margin-bottom: 1rem;
  max-width: 48ch;
  margin-inline: auto;
  font-size: 0.9875rem;
  line-height: 1.5;
}

.surface-bloom.section,
.section.surface-bloom,
.cta-section {
  padding: clamp(1.75rem, 3.5vw, 2.5rem) 0;
}

.page-hero {
  padding: clamp(3rem, 6vw, 5rem) 0 2rem;
}

.page-hero h1 { margin-bottom: 1rem; }

.page-hero .lead {
  font-size: 1.125rem;
  max-width: 60ch;
}

.page-hero.split-wide,
.page-hero .split-wide {
  align-items: center;
}

.page-hero .split-wide img,
.page-media {
  max-height: 280px;
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow);
}

.form-grid { display: grid; gap: 1.25rem; }

.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-size: 0.9375rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 1px solid rgba(17, 24, 39, 0.15);
  border-radius: 12px;
  font-family: var(--font-body);
  font-size: 1rem;
  background: var(--white);
  color: var(--ink);
}

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: 2px solid var(--coral);
  outline-offset: 2px;
}

.hp-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  overflow: hidden;
}

.consent-label {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  font-size: 0.9375rem;
  cursor: pointer;
}

.consent-label input { margin-top: 0.25rem; flex-shrink: 0; }

.alert-success {
  background: rgba(232, 93, 76, 0.1);
  border: 1px solid rgba(232, 93, 76, 0.3);
  border-radius: 12px;
  padding: 1rem 1.25rem;
  margin-bottom: 1.5rem;
  color: var(--ink);
}

.site-footer { padding-top: 4rem; }

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
}

.footer-brand p {
  margin-top: 1rem;
  font-size: 0.9375rem;
  color: var(--mist);
}

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 1rem;
}

.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.5rem; }
.footer-col a { color: var(--ink); font-size: 0.9375rem; }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 0.9375rem;
}

.footer-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(232, 93, 76, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.875rem;
}

.footer-bottom {
  border-top: 1px solid rgba(17, 24, 39, 0.08);
  padding: 1.5rem 0 2rem;
  text-align: center;
  font-size: 0.8125rem;
  color: var(--mist);
}

.footer-bottom a { color: var(--ink); }

.disclaimer {
  font-size: 0.8125rem;
  color: var(--mist);
  margin-top: 1rem;
  max-width: 80ch;
  margin-inline: auto;
  line-height: 1.5;
}

.legal-prose { max-width: 760px; }
.legal-prose h2 { margin-top: 2.5rem; margin-bottom: 1rem; font-size: 1.5rem; }
.legal-prose h3 { margin-top: 1.5rem; margin-bottom: 0.75rem; font-size: 1.125rem; }
.legal-prose ul, .legal-prose ol { margin: 1rem 0 1rem 1.5rem; }
.legal-prose li { margin-bottom: 0.5rem; }

.meta-date {
  font-size: 0.9375rem;
  color: var(--mist);
  margin-bottom: 2rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.25rem, 2.5vw, 1.75rem);
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.service-card img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
}

.service-card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.service-card-body h2 {
  font-size: clamp(1.15rem, 1.8vw, 1.35rem);
}

.service-card-body .btn {
  margin-top: auto;
  align-self: flex-start;
}

.service-price {
  font-weight: 600;
  color: var(--coral);
  margin: 0.75rem 0 1.25rem;
}

.program-detail {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.25fr);
  gap: clamp(1.5rem, 4vw, 2.75rem);
  align-items: start;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
  padding-bottom: clamp(2.5rem, 5vw, 4rem);
  border-bottom: 1px solid rgba(17, 24, 39, 0.08);
}

.program-detail:nth-child(even) {
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.95fr);
}

.program-detail:nth-child(even) img {
  order: 2;
}

.program-detail:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }

.program-detail img {
  width: 100%;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow);
  aspect-ratio: 4/3;
  object-fit: cover;
}

.program-detail .lab-tag { margin-bottom: 0.35rem; }

.program-detail h2 { margin-bottom: 0.5rem; }

.program-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin: 1rem 0 1.25rem;
  font-size: 0.8125rem;
}

.program-meta span {
  background: var(--cloud);
  padding: 0.375rem 0.875rem;
  border-radius: var(--radius-pill);
  white-space: nowrap;
}

.program-detail .btn { margin-top: 0.5rem; }

.error-page {
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 1rem;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3000;
  background: var(--white);
  border-top: 1px solid rgba(17, 24, 39, 0.1);
  box-shadow: 0 -8px 32px rgba(17, 24, 39, 0.1);
  padding: 1.5rem;
  transform: translateY(100%);
  transition: transform 0.4s;
}

.cookie-banner.visible { transform: translateY(0); }

.cookie-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.cookie-text { flex: 1; min-width: 280px; font-size: 0.9375rem; }
.cookie-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; }

.cookie-custom {
  display: none;
  width: 100%;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(17, 24, 39, 0.08);
}

.cookie-custom.open { display: block; }

.cookie-custom label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
}

.js .fade-up {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.js .fade-up.in-view {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .js .fade-up { opacity: 1; transform: none; transition: none; }
  .btn:hover, .pillar-card:hover, .program-card:hover, .service-card:hover { transform: none; }
}

@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .carousel-track { grid-template-columns: repeat(2, 1fr); }
  .nav-desktop { gap: 1.25rem; }
}

@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .program-detail,
  .program-detail:nth-child(even) {
    grid-template-columns: 1fr;
  }
  .program-detail:nth-child(even) img { order: 0; }
  .hero-mosaic { gap: 1.25rem; }
}

@media (max-width: 768px) {
  .nav-desktop { display: none; }
  .menu-toggle { display: block; }
  .header-inner .btn-primary { display: none; }
  .hero-editorial {
    min-height: auto;
    padding: clamp(1.5rem, 4vw, 2.5rem) 0 clamp(3rem, 6vw, 4rem);
  }
  .hero-editorial h1 { max-width: 100%; }
  .hero-mosaic {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 0.875rem;
  }
  .hero-mosaic .tile-large { grid-row: auto; }
  .hero-mosaic .tile-large img { min-height: 220px; max-height: 320px; }
  .hero-mosaic .tile-small img { min-height: 160px; max-height: 200px; }
  .hero-cta-bar {
    margin-top: 1rem;
    border-radius: var(--radius-card);
    width: 100%;
    justify-content: stretch;
  }
  .hero-cta-bar .btn { flex: 1 1 auto; min-width: 0; }
  .split-wide { grid-template-columns: 1fr; }
  .pillars-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .form-row-2 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .timeline-node { min-width: 170px; padding: 0 1.25rem; }
  .program-card { flex: 0 0 min(300px, 88vw); }
  .carousel-track {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 0.5rem 0 1.25rem;
    scrollbar-width: thin;
  }
  .program-card {
    flex: 0 0 min(280px, 85vw);
    scroll-snap-align: start;
    height: auto;
  }
  .cta-band { padding: 1.25rem 1rem; }
  .page-hero { padding: clamp(2rem, 5vw, 3.5rem) 0 1.25rem; }
  .cookie-inner { flex-direction: column; align-items: stretch; }
  .cookie-actions { width: 100%; }
  .cookie-actions .btn { flex: 1; }
}

@media (max-width: 640px) {
  .container { width: min(100% - 1.5rem, var(--max-width)); }
  .section { padding: clamp(2.5rem, 8vw, 4rem) 0; }
  .pillar-card { padding: 1.35rem; }
  .quote-block { padding: 1.5rem 0.5rem; }
  .nav-overlay a { font-size: 1.4rem; }
  .btn {
    padding: 0.8rem 1.35rem;
    font-size: 0.875rem;
  }
}
