/*
Theme Name: Northern HDD Minimal Launch
Theme URI: https://example.com
Author: Launch Prototype
Description: Minimal one-page WordPress launch theme for Northern HDD Inc. Built for a restrained first public presence, strong mobile and tablet presentation, and future expansion through WordPress content and form plugins.
Version: 1.1.0
Requires at least: 6.0
Tested up to: 6.8
Requires PHP: 8.0
Text Domain: northern-hdd-minimal
*/

:root {
  --nd-bg: #111111;
  --nd-surface: #181818;
  --nd-surface-2: #202020;
  --nd-ink: #f5f3ef;
  --nd-soft-ink: rgba(245, 243, 239, .74);
  --nd-muted: rgba(245, 243, 239, .60);
  --nd-line: rgba(255,255,255,.12);
  --nd-red: #a1262e;
  --nd-red-dark: #841d24;
  --nd-red-soft: rgba(161,38,46,.18);
  --nd-shadow: 0 24px 70px rgba(0, 0, 0, .42);
  --nd-radius: 12px;
  --nd-max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Roboto", "Segoe UI", Inter, Arial, sans-serif;
  color: var(--nd-ink);
  background: var(--nd-bg);
  line-height: 1.56;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }

.nd-wrap { width: min(var(--nd-max), calc(100% - 40px)); margin: 0 auto; }
.nd-section { padding: 88px 0; }
.nd-kicker {
  color: #d46167;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: 12px;
  font-weight: 900;
  margin: 0 0 14px;
}
.nd-display,
.nd-title,
.nd-card h3,
.nd-brand,
.nd-area strong {
  font-family: Oswald, Impact, system-ui, sans-serif;
  letter-spacing: -.025em;
}
.nd-title {
  font-size: clamp(34px, 4.8vw, 58px);
  line-height: 1.04;
  margin: 0 0 16px;
}
.nd-copy {
  max-width: 760px;
  color: var(--nd-soft-ink);
  font-size: clamp(16px, 1.7vw, 19px);
  margin: 0;
}
.nd-tagline {
  margin: 18px 0 0;
  color: #fff;
  font-size: clamp(17px, 1.9vw, 21px);
  font-weight: 800;
  letter-spacing: -.01em;
}
.nd-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 8px;
  border: 1px solid transparent;
  padding: 13px 20px;
  font-size: 14px;
  font-weight: 900;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.nd-button-primary {
  background: var(--nd-red);
  color: #fff;
  box-shadow: 0 16px 34px rgba(161,38,46,.28);
}
.nd-button-primary:hover { background: var(--nd-red-dark); transform: translateY(-1px); }
.nd-button-outline {
  color: #fff;
  background: rgba(255,255,255,.05);
  border-color: rgba(255,255,255,.26);
}
.nd-button-outline:hover { background: rgba(255,255,255,.10); transform: translateY(-1px); }


/* Refined text rhythm and resilient wrapping */
.nd-display,
.nd-title,
.nd-card h3,
.nd-update-card h3 {
  text-wrap: balance;
}
.nd-copy,
.nd-card p,
.nd-update-card p,
.nd-footer,
.nd-form-placeholder p {
  text-wrap: pretty;
}
.nd-hero-content .nd-copy,
.nd-capabilities > .nd-wrap > .nd-copy,
.nd-form-shell .nd-copy,
.nd-area .nd-copy {
  max-width: 64ch;
}
.nd-copy,
.nd-card p,
.nd-update-card p {
  line-height: 1.62;
}
.nd-card,
.nd-area,
.nd-form-shell,
.nd-update-card {
  transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}
.nd-card:hover,
.nd-update-card:hover {
  transform: translateY(-2px);
  border-color: rgba(255,255,255,.18);
}
.nd-card-accent:hover {
  border-color: rgba(212,97,103,.62);
}
.nd-button:focus-visible,
.nd-menu a:focus-visible,
.nd-mobile-menu a:focus-visible,
.nd-contact-point a:focus-visible,
.nd-footer-meta a:focus-visible {
  outline: 3px solid rgba(212,97,103,.72);
  outline-offset: 3px;
}

/* Header */
.nd-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(14,14,14,.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--nd-line);
}
.nd-nav {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nd-wordmark {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}
.nd-mark {
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #141516;
  box-shadow: 0 14px 30px rgba(161,38,46,.22), 0 0 0 1px rgba(255,255,255,.08);
}
.nd-mark img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.nd-brand-wrap { display: flex; flex-direction: column; line-height: 1; }
.nd-brand {
  font-size: 25px;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
}
.nd-brand-sub {
  color: var(--nd-muted);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .17em;
  margin-top: 4px;
}
.nd-menu { display: flex; align-items: center; gap: 3px; }
.nd-menu a,
.nd-mobile-menu a {
  color: var(--nd-soft-ink);
  font-size: 14px;
  font-weight: 800;
  border-radius: 10px;
}
.nd-menu a { padding: 11px 13px; }
.nd-menu a:hover,
.nd-mobile-menu a:hover { color: #fff; background: rgba(255,255,255,.08); }
.nd-nav-actions { display: flex; align-items: center; gap: 12px; }
.nd-menu-toggle {
  display: none;
  background: rgba(255,255,255,.06);
  color: #fff;
  border: 1px solid var(--nd-line);
  border-radius: 8px;
  padding: 12px 14px;
  font-weight: 900;
}
.nd-mobile-menu { display: none; border-top: 1px solid var(--nd-line); padding: 14px 0 18px; }
.nd-mobile-menu a { display: block; padding: 13px 14px; }
.nd-mobile-menu.is-open { display: block; }

/* Hero */
.nd-hero {
  min-height: min(88vh, 920px);
  position: relative;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: #0d0d0d;
}
.nd-hero:before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10,10,10,.96) 0%, rgba(10,10,10,.82) 46%, rgba(10,10,10,.52) 100%),
    linear-gradient(180deg, rgba(161,38,46,.14), rgba(0,0,0,0)),
    var(--nd-hero-image) center / cover no-repeat;
  transform: scale(1.03);
}
.nd-hero-content {
  position: relative;
  max-width: 860px;
  padding: 96px 0 104px;
}
.nd-display {
  font-size: clamp(54px, 8.4vw, 104px);
  line-height: .93;
  margin: 0 0 22px;
  color: #fff;
}
.nd-hero .nd-copy { max-width: 690px; }
.nd-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-top: 32px;
}
.nd-mini-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
}
.nd-mini-proof span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 8px 12px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.06);
  border-radius: 8px;
  color: rgba(255,255,255,.78);
  font-size: 13px;
  font-weight: 800;
}

/* Services */
.nd-capabilities {
  background: linear-gradient(180deg, #111111 0%, #151515 100%);
  border-top: 1px solid rgba(255,255,255,.05);
}
.nd-grid { display: grid; gap: 24px; }
.nd-cards {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 38px;
}
.nd-card {
  display: flex;
  flex-direction: column;
  background: #191919;
  border: 1px solid var(--nd-line);
  border-radius: var(--nd-radius);
  padding: 28px;
  min-height: 224px;
  box-shadow: 0 18px 44px rgba(0,0,0,.22);
}
.nd-card-accent {
  border-color: rgba(161,38,46,.45);
  box-shadow: 0 18px 44px rgba(161,38,46,.12);
}
.nd-card-icon {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--nd-red-soft);
  border: 1px solid rgba(161,38,46,.38);
  font-weight: 900;
  margin-bottom: 18px;
}
.nd-card h3 {
  font-size: 27px;
  line-height: 1.08;
  margin: 0 0 12px;
  color: #fff;
}
.nd-card p {
  margin: 0;
  max-width: 34ch;
  color: var(--nd-soft-ink);
  font-size: 15px;
}

/* Contact + Area */
.nd-contact {
  background: #121212;
  border-top: 1px solid rgba(255,255,255,.06);
}
.nd-two {
  grid-template-columns: .92fr 1.08fr;
  gap: 42px;
  align-items: stretch;
}
.nd-area,
.nd-form-shell {
  border-radius: 14px;
  border: 1px solid var(--nd-line);
  background: #191919;
  box-shadow: var(--nd-shadow);
}
.nd-area { padding: 34px; }
.nd-area h2 { font-size: clamp(34px, 4vw, 50px); }
.nd-area-list {
  display: grid;
  gap: 12px;
  margin: 30px 0 28px;
}
.nd-area-list span {
  display: flex;
  align-items: center;
  gap: 11px;
  color: rgba(255,255,255,.82);
  font-size: 16px;
  font-weight: 800;
}
.nd-area-list span:before {
  content: "";
  flex: 0 0 8px;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--nd-red);
}
.nd-contact-points {
  margin-top: 24px;
  display: grid;
  gap: 14px;
  padding-top: 22px;
  border-top: 1px solid var(--nd-line);
}
.nd-contact-point {
  display: grid;
  gap: 6px;
  padding: 16px 18px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.025);
  border-radius: 10px;
}
.nd-contact-point-primary {
  border-color: rgba(161,38,46,.42);
  background: linear-gradient(135deg, rgba(161,38,46,.18), rgba(255,255,255,.025));
}
.nd-contact-point small {
  color: var(--nd-muted);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: 11px;
  font-weight: 900;
}
.nd-contact-point a {
  color: #fff;
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 900;
  letter-spacing: -.01em;
  overflow-wrap: anywhere;
}
.nd-contact-point a:hover { color: #f08d94; }
.nd-form-shell { padding: 34px; }
.nd-form-shell .nd-title { font-size: clamp(32px, 3.7vw, 48px); }
.nd-form-slot {
  margin-top: 28px;
}
.nd-form-placeholder {
  border: 1px dashed rgba(255,255,255,.28);
  border-radius: 10px;
  padding: 28px;
  background: rgba(255,255,255,.035);
}
.nd-form-placeholder strong {
  display: block;
  font-size: 18px;
  margin-bottom: 8px;
  color: #fff;
}
.nd-form-placeholder p {
  margin: 0 0 16px;
  color: var(--nd-soft-ink);
}
.nd-form-placeholder code {
  display: inline-block;
  padding: 4px 8px;
  border-radius: 6px;
  background: rgba(0,0,0,.32);
  border: 1px solid rgba(255,255,255,.1);
  color: #fff;
}

/* Footer */
.nd-footer {
  background: #0d0d0d;
  border-top: 1px solid var(--nd-line);
  color: var(--nd-muted);
}
.nd-footer-wrap {
  padding: 32px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
}
.nd-footer strong { color: #fff; }
.nd-footer-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  font-size: 13px;
  font-weight: 800;
}
.nd-footer-meta a:hover { color: #fff; }

/* Fluent Forms visual tune once plugin is installed */
.nd-form-shell .ff-el-form-control,
.nd-form-shell input,
.nd-form-shell textarea,
.nd-form-shell select {
  border-radius: 8px !important;
}
.nd-form-shell .fluentform .ff-btn-submit,
.nd-form-shell button[type="submit"] {
  background: var(--nd-red) !important;
  border-color: var(--nd-red) !important;
  border-radius: 8px !important;
  font-weight: 900 !important;
}
.nd-form-shell .fluentform .ff-btn-submit:hover,
.nd-form-shell button[type="submit"]:hover {
  background: var(--nd-red-dark) !important;
  border-color: var(--nd-red-dark) !important;
}

@media (max-width: 1024px) {
  .nd-menu { display: none; }
  .nd-menu-toggle { display: inline-flex; }
  .nd-cards { grid-template-columns: 1fr; }
  .nd-two { grid-template-columns: 1fr; }
  .nd-area,
  .nd-form-shell { padding: 30px; }
}

@media (max-width: 760px) {
  .nd-wrap { width: min(var(--nd-max), calc(100% - 28px)); }
  .nd-nav { min-height: 72px; }
  .nd-nav-actions .nd-button { display: none; }
  .nd-brand { font-size: 22px; }
  .nd-brand-sub { display: none; }
  .nd-mark { width: 40px; height: 40px; flex-basis: 40px; }
  .nd-section { padding: 68px 0; }
  .nd-hero { min-height: 78vh; }
  .nd-hero-content { padding: 76px 0 84px; }
  .nd-display { font-size: clamp(48px, 15vw, 72px); }
  .nd-card,
  .nd-area,
  .nd-form-shell { padding: 24px; }
  .nd-card { min-height: 0; }
  .nd-hero-actions .nd-button { width: 100%; }
  .nd-mini-proof { gap: 8px; }
  .nd-mini-proof span { font-size: 12px; }
  .nd-contact-point a { font-size: 18px; }
}




/* Service area visual */
.nd-service-map {
  margin: 28px 0 24px;
  border: 1px solid var(--nd-line);
  border-radius: var(--nd-radius);
  overflow: hidden;
  background: #121212;
  box-shadow: 0 20px 48px rgba(0,0,0,.28);
}
.nd-service-map img {
  width: 100%;
  height: auto;
  display: block;
}

/* Optional Project Updates teaser */
.nd-updates {
  background: linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,0));
  border-top: 1px solid var(--nd-line);
  border-bottom: 1px solid var(--nd-line);
}
.nd-updates-shell {
  display: grid;
  gap: 34px;
}
.nd-updates-copy .nd-copy {
  max-width: 820px;
}
.nd-updates-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 18px;
}
.nd-update-card {
  border: 1px solid var(--nd-line);
  background: var(--nd-surface);
  border-radius: var(--nd-radius);
  padding: 26px;
  min-height: 210px;
}
.nd-update-card-featured {
  background:
    linear-gradient(135deg, rgba(161,38,46,.18), rgba(255,255,255,.015)),
    var(--nd-surface);
}
.nd-update-label {
  display: inline-flex;
  border: 1px solid rgba(212,97,103,.38);
  color: #e28a90;
  background: rgba(161,38,46,.12);
  padding: 7px 10px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
  border-radius: 6px;
  margin-bottom: 18px;
}
.nd-update-card h3 {
  font-family: Oswald, Impact, system-ui, sans-serif;
  font-size: clamp(26px, 3vw, 38px);
  letter-spacing: -.02em;
  line-height: 1.04;
  margin: 0 0 12px;
}
.nd-update-card p {
  color: var(--nd-soft-ink);
  font-size: 16px;
  margin: 0;
  max-width: 580px;
}

@media (max-width: 900px) {
  .nd-updates-grid {
    grid-template-columns: 1fr;
  }
}


/* Fluent Forms ID 3 - Northern HDD contact form integration */
.nd-form-shell .fluent_form_3 {
  color: var(--nd-ink);
}
.nd-form-shell .fluent_form_3 .ff-el-group {
  margin-bottom: 18px;
}
.nd-form-shell .fluent_form_3 .ff-el-input--label label {
  color: rgba(245,243,239,.92);
  font-weight: 800;
  letter-spacing: .005em;
  line-height: 1.35;
}
.nd-form-shell .fluent_form_3 .ff-el-form-control,
.nd-form-shell .fluent_form_3 input,
.nd-form-shell .fluent_form_3 textarea,
.nd-form-shell .fluent_form_3 select {
  min-height: 52px;
  background: rgba(255,255,255,.055) !important;
  border: 1px solid rgba(255,255,255,.16) !important;
  color: #fff !important;
  box-shadow: none !important;
  padding: 14px 15px !important;
  border-radius: 8px !important;
}
.nd-form-shell .fluent_form_3 textarea.ff-el-form-control,
.nd-form-shell .fluent_form_3 textarea {
  min-height: 158px;
  resize: vertical;
}
.nd-form-shell .fluent_form_3 .ff-el-form-control::placeholder,
.nd-form-shell .fluent_form_3 input::placeholder,
.nd-form-shell .fluent_form_3 textarea::placeholder {
  color: rgba(245,243,239,.48) !important;
}
.nd-form-shell .fluent_form_3 .ff-el-form-control:focus,
.nd-form-shell .fluent_form_3 input:focus,
.nd-form-shell .fluent_form_3 textarea:focus,
.nd-form-shell .fluent_form_3 select:focus {
  border-color: rgba(212,97,103,.78) !important;
  box-shadow: 0 0 0 4px rgba(161,38,46,.16) !important;
}
.nd-form-shell .fluent_form_3 .ff-el-is-error .ff-el-form-control,
.nd-form-shell .fluent_form_3 .error {
  border-color: rgba(255,132,142,.92) !important;
}
.nd-form-shell .fluent_form_3 .ff-el-form-check-label,
.nd-form-shell .fluent_form_3 .ff-el-help-message,
.nd-form-shell .fluent_form_3 .text-danger,
.nd-form-shell .fluent_form_3 .ff-message-success {
  color: var(--nd-soft-ink);
}
.nd-form-shell .fluent_form_3 .ff-btn-submit {
  min-height: 52px;
  padding: 14px 22px !important;
  background: var(--nd-red) !important;
  border-color: var(--nd-red) !important;
  border-radius: 8px !important;
  color: #fff !important;
  font-weight: 900 !important;
  letter-spacing: .01em;
  transition: transform .2s ease, background .2s ease, border-color .2s ease !important;
}
.nd-form-shell .fluent_form_3 .ff-btn-submit:hover {
  background: var(--nd-red-dark) !important;
  border-color: var(--nd-red-dark) !important;
  transform: translateY(-1px);
}
.nd-form-shell .fluent_form_3 .ff-btn-submit:focus-visible {
  outline: 3px solid rgba(212,97,103,.72) !important;
  outline-offset: 3px !important;
}


@media (max-width: 480px) {
  .nd-display {
    font-size: clamp(46px, 16vw, 66px);
    line-height: .96;
  }
  .nd-title {
    font-size: clamp(31px, 10vw, 42px);
  }
  .nd-area-list {
    gap: 10px;
  }
  .nd-contact-point {
    padding: 15px 16px;
  }
  .nd-form-shell .fluent_form_3 .ff-t-container {
    display: block !important;
  }
  .nd-form-shell .fluent_form_3 .ff-t-cell {
    width: 100% !important;
    margin-bottom: 18px !important;
  }
}


/* Form privacy notice */
.nd-form-privacy-note {
  margin: 20px 0 0;
  max-width: 68ch;
  color: var(--nd-muted);
  font-size: 13px;
  line-height: 1.6;
  text-wrap: pretty;
}
.nd-form-privacy-note a {
  color: #f0a0a5;
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: rgba(240,160,165,.45);
  text-underline-offset: 3px;
}
.nd-form-privacy-note a:hover {
  color: #fff;
  text-decoration-color: rgba(255,255,255,.75);
}


/* Standard WordPress page template, including Privacy Policy */
.nd-page-section {
  min-height: calc(100vh - 210px);
  background:
    linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,0)),
    #121212;
}
.nd-page-card {
  max-width: 980px;
  margin: 0 auto;
  padding: clamp(28px, 4vw, 52px);
  border: 1px solid var(--nd-line);
  border-radius: 14px;
  background: #191919;
  box-shadow: var(--nd-shadow);
}
.nd-page-title {
  margin: 0 0 28px;
  color: #fff;
  font-family: Oswald, Impact, system-ui, sans-serif;
  font-size: clamp(42px, 6vw, 72px);
  line-height: .98;
  letter-spacing: -.025em;
  text-wrap: balance;
}
.nd-page-content {
  max-width: 78ch;
  color: var(--nd-soft-ink);
  font-size: clamp(16px, 1.6vw, 18px);
  line-height: 1.74;
  text-wrap: pretty;
}
.nd-page-content > *:first-child {
  margin-top: 0;
}
.nd-page-content h2,
.nd-page-content h3,
.nd-page-content h4 {
  color: #fff;
  font-family: Oswald, Impact, system-ui, sans-serif;
  letter-spacing: -.01em;
  line-height: 1.12;
  text-wrap: balance;
}
.nd-page-content h2 {
  font-size: clamp(28px, 3.2vw, 40px);
  margin: 38px 0 14px;
}
.nd-page-content h3 {
  font-size: clamp(23px, 2.5vw, 31px);
  margin: 30px 0 12px;
}
.nd-page-content p,
.nd-page-content ul,
.nd-page-content ol {
  margin: 0 0 18px;
}
.nd-page-content ul,
.nd-page-content ol {
  padding-left: 1.35em;
}
.nd-page-content li {
  margin-bottom: 8px;
}
.nd-page-content strong {
  color: #fff;
}
.nd-page-content a {
  color: #f0a0a5;
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: rgba(240,160,165,.45);
  text-underline-offset: 3px;
}
.nd-page-content a:hover {
  color: #fff;
  text-decoration-color: rgba(255,255,255,.75);
}
.nd-page-content hr {
  border: 0;
  border-top: 1px solid var(--nd-line);
  margin: 32px 0;
}
.nd-page-content blockquote {
  margin: 28px 0;
  padding: 18px 22px;
  border-left: 4px solid var(--nd-red);
  background: rgba(255,255,255,.035);
  color: rgba(245,243,239,.88);
}

@media (max-width: 760px) {
  .nd-page-section {
    min-height: auto;
  }
  .nd-page-card {
    padding: 24px;
  }
  .nd-page-title {
    margin-bottom: 22px;
  }
}

/* v1.1 brand presence pass */
.nd-display {
  position: relative;
}
.nd-display::after {
  content: "";
  display: block;
  width: min(260px, 70%);
  height: 5px;
  margin-top: 18px;
  border-radius: 999px;
  background:
    linear-gradient(90deg, var(--nd-red) 0 58%, rgba(255,255,255,.72) 58% 72%, rgba(255,255,255,.28) 72% 100%);
  opacity: .86;
}
.nd-service-map {
  border-color: rgba(255,255,255,.16);
  background: #0f1011;
}
.nd-service-map img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.nd-area-list {
  margin-top: 8px;
}
@media (max-width: 760px) {
  .nd-mark { width: 44px; height: 44px; flex-basis: 44px; }
  .nd-display::after { width: min(210px, 76%); height: 4px; margin-top: 14px; }
  .nd-service-map {
    margin-top: 24px;
    border-radius: 14px;
  }
}
