/* ============================================================
   VAKTA — Styles
   ============================================================ */

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

ul[role="list"] {
  list-style: none;
}

/* ---- Design Tokens ---- */
:root {
  --clr-bg: #ffffff;
  --clr-heading: #1a1a2e;
  --clr-subheading: #6b7280;
  --clr-nav-link: #374151;
  --clr-nav-link-hover: #111827;
  --clr-info-border: #9ca3af;
  --clr-info-text: #9ca3af;

  /* Brand accent colours (from logo SVG) */
  --clr-brand-blue: #9bb6e8;
  --clr-brand-orange: #ff9889;
  --clr-brand-green: #74e8a6;
  --clr-brand-purple: #bec7fd;

  /* Hero gradient */
  --hero-top: #ffffff;
  --hero-mid: #f3f1fc;
  --hero-bottom: #e9e5f7;

  /* Layout */
  --nav-h: 72px;
  --bar-h: 3px;
  --page-px: 48px;
  --max-w: 1440px;

  --ff: "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* ---- Base ---- */
html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}

body {
  font-family: var(--ff);
  background-color: var(--clr-bg);
  color: var(--clr-heading);
  min-height: 100vh;
}

/* ============================================================
   SITE HEADER
   ============================================================ */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--clr-bg);
}

/* ---- Navbar ---- */
.navbar {
  height: var(--nav-h);
  padding: 0 var(--page-px);
  background: var(--clr-bg);
}

.nav-inner {
  display: flex;
  align-items: center;
  height: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding-left: 5%;
  padding-right: 5%;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
  margin-right: auto;
}

.logo img {
  height: 82px;
  width: 82px;
  display: block;
  object-fit: contain;
}

/* Nav Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-right: 28px;
}

.nav-link {
  font-size: 16px;
  font-weight: 400;
  color: var(--clr-nav-link);
  text-decoration: none;
  letter-spacing: 0.005em;
  white-space: nowrap;
  transition: color 150ms ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--clr-nav-link-hover);
}

/* Donate pill */
.nav-donate {
  display: inline-flex;
  align-items: center;
  font-size: 15px;
  font-weight: 500;
  color: #ffffff;
  text-decoration: none;
  background: #1c2f72;
  padding: 8px 18px;
  border-radius: 8px;
  white-space: nowrap;
  transition: opacity 150ms ease, transform 150ms ease;
}

.nav-donate:hover {
  opacity: 0.82;
  transform: translateY(-1px);
}

/* Info Button */
.info-btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1.5px solid var(--clr-info-border);
  background: transparent;
  cursor: pointer;
  color: var(--clr-info-text);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: 0;
  transition:
    border-color 150ms ease,
    color 150ms ease;
}

.info-btn em {
  font-family: Georgia, "Times New Roman", Times, serif;
  font-style: italic;
  font-size: 15px;
  font-weight: 400;
  line-height: 1;
  margin-top: 1px;
  user-select: none;
}

.info-btn:hover {
  border-color: #6b7280;
  color: #6b7280;
}

/* ---- Colour Bar ---- */
.color-bar {
  height: var(--bar-h);
  width: 100%;
  background: linear-gradient(
    to right,
    var(--clr-brand-blue) 0% 20%,
    var(--clr-brand-orange) 20% 40%,
    var(--clr-brand-green) 40% 60%,
    var(--clr-brand-purple) 60% 80%,
    var(--clr-brand-orange) 80% 100%
  );
}

/* ============================================================
   HOME SECTION (hero + visual combined)
   ============================================================ */

/*
  Gradient is centred roughly at the image mid-point (~65% down
  the section). The ellipse is near-spherical so it radiates
  evenly: upward into the hero text and outward to screen edges.
*/
.home-section {
  background: radial-gradient(
    ellipse 50% 62% at 50% 65%,
    #c8beee 0%,
    #d9d3f5 22%,
    #ebe7fb 40%,
    #f6f4fd 57%,
    #ffffff 72%
  );
  padding-bottom: 48px;
}

.hero-inner {
  text-align: center;
  /* max-width: 980px; */
  width: 100%;
  margin: 0 auto;
  padding: 100px var(--page-px) 80px;
  padding-bottom: 15%;
}

.hero-heading {
  font-family: var(--ff);
  font-size: 90px;
  font-weight: 400;
  line-height: 1.1;
  color: var(--clr-heading);
  letter-spacing: -0.025em;
  margin-bottom: 30px;
}

.hero-subheading {
  font-size: 22px;
  font-weight: 400;
  color: var(--clr-subheading);
  line-height: 1.65;
  letter-spacing: 0.005em;
}

.home-visual {
  padding: 0 var(--page-px);
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
}

.vakta-img {
  display: block;
  width: 100%;
  height: calc(100vh - 20vh);
  object-fit: contain;
  border-radius: 50px;
}

/* ============================================================
   RECOMMENDATIONS SECTION
   ============================================================ */

.recommendations-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  padding: 80px var(--page-px);
}

.recommendations-inner {
  width: 100%;
  padding-left: 10%;
  padding-right: 10%;
}

.recommendations-heading {
  font-family: var(--ff);
  font-size: 64px;
  font-weight: 500;
  color: var(--clr-heading);
  text-align: center;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin-bottom: 56px;
}

.recommendations-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.recommendations-list > li {
  display: flex;
  gap: 16px;
  font-size: 23px;
  font-weight: 300;
  color: #4b5563;
  line-height: 1.65;
}

.item-num {
  color: #9ca3af;
  min-width: 26px;
  flex-shrink: 0;
  font-variant-numeric: tabular-nums;
}

.highlight {
  color: #1c2f72;
  font-weight: 700;
  font-style: italic;
}

/* ============================================================
   CTA / DOWNLOAD SECTION
   ============================================================ */

.cta-section {
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
}

.cta-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0;
}

.cta-heading {
  font-family: var(--ff);
  font-size: 56px;
  font-weight: 500;
  color: var(--clr-heading);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 18px;
}

.cta-subheading {
  font-size: 20px;
  font-weight: 400;
  color: var(--clr-subheading);
  line-height: 1.6;
  margin-bottom: 52px;
}

.cta-buttons {
  display: flex;
  align-items: center;
  gap: 20px;
}

.store-btn {
  display: block;
  text-decoration: none;
  border-radius: 12px;
  overflow: hidden;
  transition:
    opacity 150ms ease,
    transform 150ms ease;
}

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

.store-badge {
  display: block;
  height: 62px;
  width: auto;
}

/* CTA donate button */
.cta-donate {
  display: inline-flex;
  align-items: center;
  margin-top: 28px;
  font-size: 17px;
  font-weight: 500;
  color: #ffffff;
  text-decoration: none;
  background: #1c2f72;
  padding: 14px 36px;
  border-radius: 10px;
  letter-spacing: 0.01em;
  transition: opacity 150ms ease, transform 150ms ease;
}

.cta-donate:hover {
  opacity: 0.85;
  transform: translateY(-2px);
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */

.about-section {
  min-height: 100vh;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  background: #ffffff;
  padding: 80px var(--page-px);
}

.about-inner {
  width: 100%;
  padding-left: 10%;
  padding-right: 10%;
}

.about-heading {
  font-family: var(--ff);
  font-size: 64px;
  font-weight: 500;
  color: var(--clr-heading);
  text-align: center;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin-bottom: 56px;
}

.about-text {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.about-text p {
  font-size: 23px;
  font-weight: 300;
  color: #4b5563;
  line-height: 1.65;
}

/* ============================================================
   CONTACT SECTION
   ============================================================ */

.contact-section {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  padding: 80px var(--page-px);
}

.contact-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
  max-width: 720px;
  width: 100%;
}

.contact-heading {
  font-family: var(--ff);
  font-size: 64px;
  font-weight: 500;
  color: var(--clr-heading);
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin-bottom: 8px;
}

.contact-text {
  font-size: 23px;
  font-weight: 300;
  color: #4b5563;
  line-height: 1.65;
}

.contact-email {
  font-size: 28px;
  font-weight: 700;
  font-style: italic;
  color: #1c2f72;
  text-decoration: none;
  letter-spacing: -0.01em;
  transition: opacity 150ms ease;
}

.contact-email:hover {
  opacity: 0.7;
}

/* ============================================================
   FOOTER
   ============================================================ */

.site-footer {
  background: #1a1a2e;
  color: rgba(255, 255, 255, 0.75);
  padding: 64px var(--page-px) 36px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1.2fr 1.4fr;
  gap: 48px;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 5%;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Brand column */
.footer-logo-wrap {
  background: rgba(255, 255, 255, 0.96);
  border-radius: 10px;
  width: 68px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px;
  margin-bottom: 18px;
}

.footer-logo {
  width: 58px;
  height: 58px;
  object-fit: contain;
  display: block;
}

.footer-org-name {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.5;
  margin-bottom: 6px;
  max-width: 260px;
}

.footer-org-meta {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.5;
  margin-bottom: 2px;
}

.footer-tagline {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 14px;
  margin-bottom: 20px;
  max-width: 240px;
}

.footer-donate {
  display: inline-block;
  margin-bottom: 16px;
  font-size: 14px;
  font-weight: 500;
  color: var(--clr-brand-orange);
  text-decoration: none;
  transition: opacity 150ms ease;
}

.footer-donate:hover {
  opacity: 0.75;
}

.footer-copy {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.35);
}

/* Generic column */
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-col-title {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 4px;
}

/* Legal buttons */
.footer-modal-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--ff);
  font-size: 15px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.75);
  text-align: left;
  padding: 0;
  transition: color 150ms ease;
}

.footer-modal-btn:hover {
  color: #ffffff;
}

/* Download badges */
.footer-badges {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-badge-link {
  display: block;
  border-radius: 8px;
  overflow: hidden;
  width: fit-content;
  transition: opacity 150ms ease, transform 150ms ease;
}

.footer-badge-link:hover {
  opacity: 0.85;
  transform: translateY(-2px);
}

.footer-badge {
  display: block;
  height: 46px;
  width: auto;
}

/* Contact list */
.footer-contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.65);
}

.footer-contact-link {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  transition: color 150ms ease;
}

.footer-contact-link:hover {
  color: #ffffff;
}

/* ============================================================
   MODALS
   ============================================================ */

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 20, 0.6);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 500;
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
  padding: 24px;
}

.modal-overlay.is-open {
  opacity: 1;
  pointer-events: all;
}

.modal-box {
  background: #ffffff;
  border-radius: 18px;
  width: 100%;
  max-width: 660px;
  max-height: 82vh;
  display: flex;
  flex-direction: column;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.22);
  transform: translateY(20px);
  transition: transform 220ms ease;
}

.modal-overlay.is-open .modal-box {
  transform: translateY(0);
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 32px 20px;
  border-bottom: 1px solid #f0f0f4;
  flex-shrink: 0;
}

.modal-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--clr-heading);
  letter-spacing: -0.02em;
}

.modal-close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid #e5e7eb;
  background: transparent;
  cursor: pointer;
  font-size: 20px;
  color: #6b7280;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transition: background 150ms ease, color 150ms ease;
  flex-shrink: 0;
}

.modal-close:hover {
  background: #f3f4f6;
  color: #111827;
}

.modal-body {
  padding: 28px 32px 32px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.modal-meta {
  font-size: 13px;
  color: #9ca3af;
  margin-bottom: 4px;
}

.modal-body h3 {
  font-size: 15px;
  font-weight: 600;
  color: var(--clr-heading);
  margin-top: 8px;
}

.modal-body p {
  font-size: 15px;
  font-weight: 400;
  color: #4b5563;
  line-height: 1.7;
}

.modal-list {
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.modal-list li {
  font-size: 15px;
  color: #4b5563;
  line-height: 1.7;
}

.modal-link {
  color: #1c2f72;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ============================================================
   RESPONSIVE — MOBILE-FIRST EXPANSIONS
   Breakpoints: ≤1280 large desktop | ≤1024 tablet |
                ≤768 large phone   | ≤480 phone
   ============================================================ */

/* ---- Hamburger toggle (always in DOM; hidden on desktop) -- */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
  flex-shrink: 0;
  transition: background 150ms ease;
}

.nav-toggle:hover {
  background: rgba(0, 0, 0, 0.05);
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--clr-heading);
  border-radius: 2px;
  transition: transform 250ms ease, opacity 250ms ease;
  transform-origin: center;
}

/* Animated X state */
.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ---- Large desktop (≤1280px) ----------------------------- */
@media (max-width: 1280px) {
  .hero-heading {
    font-size: 68px;
  }
}

/* ---- Tablet / small laptop (≤1024px) --------------------- */
@media (max-width: 1024px) {
  :root {
    --page-px: 36px;
  }

  .hero-heading {
    font-size: 58px;
  }

  .hero-subheading {
    font-size: 18px;
  }
}

/* ---- Large phone / phablet (≤768px) ---------------------- */
@media (max-width: 768px) {
  :root {
    --nav-h: 64px;
    --page-px: 24px;
  }

  /* -- Navigation: hamburger replaces inline links -- */
  .nav-toggle {
    display: flex;
  }

  /* Off-canvas dropdown panel */
  .nav-links {
    position: fixed;
    top: calc(var(--nav-h) + var(--bar-h));
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    margin: 0;
    padding: 6px 0 12px;
    background: var(--clr-bg);
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: transform 220ms ease, opacity 220ms ease;
    z-index: 99;
  }

  .nav-links.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

  .nav-links li {
    width: 100%;
  }

  .nav-link {
    display: block;
    padding: 14px 24px;
    font-size: 17px;
    width: 100%;
  }

  .nav-donate {
    display: block;
    padding: 14px 24px;
    font-size: 17px;
    font-weight: 500;
    width: 100%;
    border-radius: 0;
    background: rgba(28, 47, 114, 0.07);
    color: #1c2f72;
    transform: none;
  }

  .nav-donate:hover {
    opacity: 1;
    transform: none;
    background: rgba(28, 47, 114, 0.13);
  }

  /* -- Logo -- */
  .logo img {
    height: 48px;
    width: 48px;
  }

  /* -- Hero text -- */
  .hero-inner {
    padding-top: 60px;
    padding-bottom: 8%;
  }

  .hero-heading {
    font-size: 44px;
    letter-spacing: -0.015em;
    margin-bottom: 20px;
  }

  .hero-subheading {
    font-size: 16px;
  }

  .hero-subheading br {
    display: none;
  }

  /* -- Hero image: prevent 80vh on portrait phones -- */
  .vakta-img {
    height: auto;
    max-height: 55vh;
    border-radius: 24px;
  }

  /* -- CTA section -- */
  .cta-section {
    height: auto;
    min-height: 50vh;
    padding: 64px var(--page-px);
  }

  .cta-heading {
    font-size: 38px;
  }

  .cta-subheading {
    font-size: 16px;
    margin-bottom: 36px;
  }

  .cta-buttons {
    gap: 14px;
  }

  /* -- Recommendations -- */
  .recommendations-section {
    padding: 64px var(--page-px);
    min-height: auto;
  }

  /* Remove fixed inner horizontal padding — outer padding handles it */
  .recommendations-inner {
    padding-left: 0;
    padding-right: 0;
  }

  .recommendations-heading {
    font-size: 38px;
    margin-bottom: 36px;
  }

  .recommendations-list > li {
    font-size: 17px;
    gap: 12px;
  }

  /* -- About -- */
  .about-section {
    padding: 64px var(--page-px);
    min-height: auto;
  }

  .about-inner {
    padding-left: 0;
    padding-right: 0;
  }

  .about-heading {
    font-size: 38px;
    margin-bottom: 36px;
  }

  .about-text p {
    font-size: 17px;
  }

  .about-text {
    gap: 20px;
  }

  /* -- Contact -- */
  .contact-section {
    padding: 64px var(--page-px);
    min-height: auto;
  }

  .contact-heading {
    font-size: 38px;
  }

  .contact-text {
    font-size: 17px;
  }

  /* Prevent long email from overflowing */
  .contact-email {
    font-size: 20px;
    word-break: break-all;
  }

  /* -- Footer: 4-col → 2-col grid -- */
  .site-footer {
    padding: 48px var(--page-px) 28px;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    padding: 0;
    padding-bottom: 36px;
  }

  /* Brand column spans full width */
  .footer-brand {
    grid-column: 1 / -1;
  }

  /* -- Modals: sheet from bottom on mobile -- */
  .modal-overlay {
    padding: 16px;
    align-items: flex-end;
  }

  .modal-box {
    max-height: 88vh;
    border-radius: 18px 18px 10px 10px;
  }

  .modal-header {
    padding: 20px 20px 14px;
  }

  .modal-body {
    padding: 20px 20px 24px;
  }
}

/* ---- Phone (≤480px) -------------------------------------- */
@media (max-width: 480px) {
  :root {
    --page-px: 16px;
  }

  /* -- Logo -- */
  .logo img {
    height: 42px;
    width: 42px;
  }

  /* -- Hero -- */
  .hero-inner {
    padding-top: 48px;
    padding-bottom: 6%;
  }

  .hero-heading {
    font-size: 32px;
    line-height: 1.2;
    letter-spacing: -0.01em;
    margin-bottom: 16px;
  }

  /* Let heading text reflow naturally on very small screens */
  .hero-heading br {
    display: none;
  }

  .hero-subheading {
    font-size: 15px;
  }

  .home-visual {
    padding: 0 var(--page-px);
  }

  .vakta-img {
    max-height: 48vh;
    border-radius: 16px;
  }

  /* -- CTA -- */
  .cta-section {
    padding: 52px var(--page-px);
  }

  .cta-heading {
    font-size: 28px;
  }

  .cta-subheading {
    font-size: 15px;
    margin-bottom: 28px;
  }

  /* Stack store badges vertically; enlarge tap targets */
  .cta-buttons {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .store-badge {
    height: 56px;
  }

  /* -- Recommendations -- */
  .recommendations-section {
    padding: 52px var(--page-px);
  }

  .recommendations-heading {
    font-size: 28px;
    margin-bottom: 28px;
  }

  .recommendations-list > li {
    font-size: 16px;
    gap: 10px;
  }

  .recommendations-list {
    gap: 20px;
  }

  /* -- About -- */
  .about-section {
    padding: 52px var(--page-px);
  }

  .about-heading {
    font-size: 28px;
    margin-bottom: 28px;
  }

  .about-text p {
    font-size: 16px;
    line-height: 1.75;
  }

  .about-text {
    gap: 18px;
  }

  /* -- Contact -- */
  .contact-section {
    padding: 52px var(--page-px);
  }

  .contact-heading {
    font-size: 28px;
  }

  .contact-text {
    font-size: 16px;
  }

  .contact-email {
    font-size: 17px;
  }

  /* -- Footer: 2-col → 1-col -- */
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-brand {
    grid-column: auto;
  }

  /* Show store badges side by side in footer */
  .footer-badges {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
  }

  /* -- Modal -- */
  .modal-header {
    padding: 16px 16px 12px;
  }

  .modal-body {
    padding: 16px 16px 20px;
    gap: 12px;
  }

  .modal-title {
    font-size: 18px;
  }
}
