/* ══════════════════════════════
   CalculatorsBox — main.css
   Design tokens + globals + nav + footer
   Mobile-first. Desktop overrides at 769px.
   ══════════════════════════════ */

:root {
  /* ── Colors (teal palette) ── */
  --accent:        #0d9488;          /* teal-600 — primary */
  --accent-2:      #14b8a6;          /* teal-500 — lighter */
  --accent-soft:   rgba(13,148,136,0.10);
  --accent-border: rgba(13,148,136,0.25);

  --text:          #0f3a3a;          /* deep teal text */
  --text-strong:   #062827;
  --muted:         #5b7a78;

  --card-bg:       rgba(255,255,255,0.92);
  --card-border:   rgba(255,255,255,0.5);
  --card-stroke:   rgba(13,148,136,0.10);

  /* ── Gradient (diagonal teal → cyan → mint → white) ── */
  --grad-a: #0e7490;   /* cyan-700 */
  --grad-b: #14b8a6;   /* teal-500 */
  --grad-c: #5eead4;   /* teal-300 */
  --grad-d: #d1fae5;   /* mint-100 */

  /* ── Layout ── */
  --content-pad:   20px;
  --content-max:   1100px;
  --radius:        14px;
  --radius-sm:     10px;
  --shadow-sm:     0 2px 8px rgba(13,148,136,0.08);
  --shadow-md:     0 8px 24px rgba(13,148,136,0.12);
}

/* ── Dark theme ── */
body.theme-dark {
  --text:          #d6f5f1;
  --text-strong:   #ffffff;
  --muted:         #8aafac;

  --card-bg:       rgba(13,40,40,0.65);
  --card-border:   rgba(94,234,212,0.15);
  --card-stroke:   rgba(94,234,212,0.18);

  --accent:        #14b8a6;
  --accent-2:      #2dd4bf;
  --accent-soft:   rgba(20,184,166,0.12);
  --accent-border: rgba(20,184,166,0.30);

  --grad-a: #042f2e;
  --grad-b: #0d4744;
  --grad-c: #0f766e;
  --grad-d: #042f2e;
}

/* ══════════════════════════════
   RESET / BASE
   ══════════════════════════════ */

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 14px;
  color: var(--text);
  line-height: 1.5;
  min-height: 100vh;
  overflow-x: hidden;
  background: white;
}

body.theme-dark { background: #021615; }

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
img { max-width: 100%; height: auto; }

h1, h2, h3, h4, h5, h6 { font-weight: 800; color: var(--text-strong); line-height: 1.2; }

/* ── Diagonal gradient backdrop (above body, below content) ── */
body::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg,
    var(--grad-a) 0%,
    var(--grad-b) 35%,
    var(--grad-c) 70%,
    var(--grad-d) 100%);
  pointer-events: none;
  z-index: 0;
  transition: background 0.4s ease;
}

/* ── Stars on gradient area ── */
body::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 60vh;
  pointer-events: none;
  z-index: 0;
  background-image:
    radial-gradient(1.5px 1.5px at 8%  12%, rgba(255,255,255,0.9) 0%, transparent 100%),
    radial-gradient(1px   1px   at 22% 8%,  rgba(255,255,255,0.7) 0%, transparent 100%),
    radial-gradient(2px   2px   at 35% 20%, rgba(255,255,255,0.8) 0%, transparent 100%),
    radial-gradient(1px   1px   at 48% 6%,  rgba(255,255,255,0.6) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 60% 15%, rgba(255,255,255,0.9) 0%, transparent 100%),
    radial-gradient(1px   1px   at 72% 9%,  rgba(255,255,255,0.7) 0%, transparent 100%),
    radial-gradient(2px   2px   at 85% 18%, rgba(255,255,255,0.8) 0%, transparent 100%),
    radial-gradient(1px   1px   at 93% 5%,  rgba(255,255,255,0.6) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 15% 30%, rgba(255,255,255,0.5) 0%, transparent 100%),
    radial-gradient(1px   1px   at 40% 35%, rgba(255,255,255,0.6) 0%, transparent 100%),
    radial-gradient(2px   2px   at 55% 28%, rgba(255,255,255,0.7) 0%, transparent 100%),
    radial-gradient(1px   1px   at 78% 32%, rgba(255,255,255,0.5) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 3%  40%, rgba(255,255,255,0.6) 0%, transparent 100%),
    radial-gradient(1px   1px   at 68% 42%, rgba(255,255,255,0.5) 0%, transparent 100%),
    radial-gradient(1px   1px   at 90% 38%, rgba(255,255,255,0.4) 0%, transparent 100%);
}

/* ── Floating math chars (subtle ambient layer) ── */
.cb-float-layer {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 60vh;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.cb-float-char {
  position: absolute;
  font-family: 'DM Mono', monospace;
  font-weight: 500;
  color: rgba(255,255,255,0.55);
  user-select: none;
  will-change: transform, opacity;
  opacity: 0;
  animation-name: cbFloatLife;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;
}
@keyframes cbFloatLife {
  0%   { opacity: 0; transform: translate(0, 0); }
  20%  { opacity: 0.55; }
  80%  { opacity: 0.45; }
  100% { opacity: 0; transform: translate(var(--drift, 0), var(--rise, -20px)); }
}

/* ── Wave divider ── */
.hero-wave-wrap {
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 320px;
  pointer-events: none;
  bottom: 0;
  overflow: hidden;
}
.hero-wave {
  position: relative;
  width: 100%;
  height: 320px;
  opacity: 0.3;
}
.hero-wave svg {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
}
.hero-wave .first-wave  { opacity: 0.2; }
.hero-wave .second-wave { opacity: 0.3; }
.hero-wave .third-wave  { opacity: 0.4; }

body.theme-dark .hero-wave svg path { fill: #021615; }

/* ── Gradient fade-out before content (white at bottom) ── */
.gradient-after { z-index: 1; }
.gradient-after::before {
  content: '';
  background: linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 100%);
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 240px;
}

/* ══════════════════════════════
   NAV — mobile base
   ══════════════════════════════ */

nav#mainNav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  padding: 14px var(--content-pad);
  gap: 12px;
  transition: background 0.25s ease, backdrop-filter 0.25s ease, border 0.25s ease;
  border-bottom: 1px solid transparent;
}

nav#mainNav.scrolled {
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border-bottom: 1px solid rgba(13,148,136,0.10);
}
body.theme-dark nav#mainNav.scrolled {
  background: rgba(2,22,21,0.7);
  border-bottom: 1px solid rgba(94,234,212,0.15);
}

.logo {
  margin-left: 14px;
  text-align: center;
  font-weight: 800;
  font-size: 17px;
  letter-spacing: -0.5px;
  color: var(--text-strong);
}
.logo a { color: inherit; }
.logo span { color: var(--accent); }

/* Nav logo: "Calculators" always dark; "Box" white on gradient, teal when scrolled */
nav#mainNav:not(.scrolled) .logo span { color: #ffffff; }
nav#mainNav.scrolled       .logo span { color: var(--accent); }

/* ══════════════════════════════
   DESKTOP NAV MENU
   ══════════════════════════════ */
/* Hidden on mobile by default; desktop media query re-shows it as flex */
.nav-menu { display: none; }
.nav-menu {
  list-style: none;
  align-items: center;
  gap: 4px;
  margin: 0; padding: 0;
  flex-wrap: nowrap;
  position: relative;
}
.nav-menu > li > a.nav-link {
  display: flex; align-items: center; gap: 4px;
  padding: 8px 14px; border-radius: 10px;
  font-family: 'Montserrat', sans-serif; font-size: 13px; font-weight: 600;
  color: var(--text); text-decoration: none;
  transition: background 0.15s, color 0.15s;
  white-space: nowrap;
}
.nav-menu > li > a.nav-link:hover { background: rgba(255,255,255,0.3); }
.nav-arrow {
  font-size: 10px;
  opacity: 0.6;
  margin-left: 2px;
  display: inline-block;
  transition: transform 0.2s;
}
.nav-menu > li:hover .nav-arrow { transform: rotate(180deg); }
.nav-menu > li.current-menu-item > a,
.nav-menu > li.current-menu-parent > a { color: var(--accent); }

/* ── MEGA PANEL ── */
.sub-menu.mega-panel {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  width: max-content;
  max-width: 90vw;
  background: rgba(255,255,255,0.97);
  border: 1px solid var(--card-stroke);
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(13,148,136,0.16);
  padding: 24px 28px;
  list-style: none;
  z-index: 200;
  white-space: nowrap;
  animation: cb-mega-fadeUp 0.15s ease forwards;
  flex-direction: row;
  gap: 0;
}
/* Invisible bridge so the menu doesn't close when crossing the gap */
.sub-menu.mega-panel::before {
  content: '';
  position: absolute;
  top: -12px; left: 0; right: 0; height: 12px;
}
.nav-menu > li.menu-item-has-children:hover > .sub-menu.mega-panel { display: flex; }

@keyframes cb-mega-fadeUp {
  from { opacity: 0; transform: translateY(-4px); }
  to   { opacity: 1; transform: translateY(0); }
}

body.theme-dark .sub-menu.mega-panel {
  background: rgba(4,47,46,0.97);
  border-color: rgba(20,184,166,0.2);
}

/* ── MEGA COLUMNS ── */
.mega-col {
  display: flex;
  flex-direction: column;
  min-width: 180px;
  padding-right: 32px;
}
.mega-col + .mega-col {
  padding-left: 28px;
  padding-right: 32px;
  border-left: 1px solid var(--card-stroke);
}

/* ── MEGA ITEMS ── */
.mega-item { list-style: none; }
.mega-item a {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 8px 10px;
  border-radius: 10px;
  text-decoration: none;
  transition: background 0.12s;
}
.mega-item a:hover { background: rgba(13,148,136,0.08); }
.mega-item-name {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
}
.mega-item a:hover .mega-item-name { color: var(--accent); }
.mega-item-desc {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  color: var(--muted);
}

/* Section headers (depth 1) — non-clickable label in accent color */
.mega-item.mega-header a {
  padding: 0 10px 10px;
  pointer-events: none;
  cursor: default;
}
.mega-item.mega-header .mega-item-name {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
}
.mega-item.mega-header a:hover { background: none; }

/* Optional "More →" item pinned to column bottom (add class mega-more) */
.mega-item.mega-more { margin-top: auto; padding-top: 8px; }
.mega-item.mega-more a { padding: 6px 10px; }
.mega-item.mega-more .mega-item-name {
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
}
.mega-item.mega-more .mega-item-name::after { content: ' →'; font-size: 11px; }
.mega-item.mega-more a:hover .mega-item-name { color: var(--accent); }

.nav-right { display: flex; align-items: center; gap: 10px; justify-self: end; }

/* ── Theme toggle ── */
.theme-toggle {
  width: 36px;
  height: 36px;
  padding: 0;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  transition: background 0.2s, color 0.2s;
}
.theme-toggle:hover { background: var(--accent-soft); color: var(--accent); }
.theme-toggle svg { width: 18px; height: 18px; }
.theme-toggle .icon-sun { display: none; }
body.theme-dark .theme-toggle .icon-sun  { display: block; }
body.theme-dark .theme-toggle .icon-moon { display: none; }

/* ── Hamburger ── */
.nav-hamburger {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 20px;
  height: 16px;
  padding: 0;
}
.nav-hamburger span {
  width: 100%;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.2s, background 0.25s;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Nav controls: white on gradient, default colors when scrolled */
nav#mainNav:not(.scrolled) .theme-toggle    { color: #ffffff; }
nav#mainNav:not(.scrolled) .nav-hamburger span { background: #ffffff; }
nav#mainNav:not(.scrolled) .nav-menu > li > a { color: #ffffff; }
nav#mainNav:not(.scrolled) .nav-menu > li > a:hover { background: rgba(255,255,255,0.18); }

/* ══════════════════════════════
   MOBILE NAV PANEL
   ══════════════════════════════ */
.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(2,22,21,0.5);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
  z-index: 200;
}
.mobile-nav-overlay.open { opacity: 1; pointer-events: auto; }

.mobile-nav-panel {
  position: fixed;
  top: 0; left: 0;
  height: 100vh;
  width: min(320px, 85vw);
  background: #ffffff;
  z-index: 201;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}
.mobile-nav-panel.open { transform: translateX(0); }
body.theme-dark .mobile-nav-panel { background: #042f2e; }

.mobile-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  border-bottom: 1px solid rgba(13,148,136,0.12);
}
.mobile-nav-header .logo { margin-left: 0; }
.mobile-nav-close {
  font-size: 22px;
  color: var(--muted);
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  border-radius: 8px;
  transition: background 0.2s, color 0.2s;
}
.mobile-nav-close:hover { background: rgba(13,148,136,0.1); color: var(--text); }

/* Top-level mobile menu */
.mobile-nav-menu {
  list-style: none;
  padding: 12px 0;
  margin: 0;
  flex: 1;
}
.mobile-nav-item { border-bottom: 1px solid rgba(13,148,136,0.07); }

/* Plain link row OR row with expand arrow */
.mobile-nav-link,
.mobile-nav-row {
  display: flex;
  align-items: center;
  padding: 14px 20px;
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
  cursor: pointer;
  transition: background 0.18s;
}
.mobile-nav-link:hover,
.mobile-nav-row:hover { background: rgba(13,148,136,0.06); }
.mobile-nav-row { justify-content: space-between; }
.mobile-nav-row a {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
  flex: 1;
}
.mobile-sub-arrow {
  font-size: 11px;
  color: var(--muted);
  transition: transform 0.25s;
  flex-shrink: 0;
}
.mobile-nav-row.open .mobile-sub-arrow { transform: rotate(180deg); }

/* Second-level: collapsible sub-menu */
.mobile-sub-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: none;
  background: rgba(13,148,136,0.04);
}
.mobile-sub-menu.open { display: block; }

/* Third-level inner links */
.mobile-sub-item a {
  display: block;
  padding: 10px 32px;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  text-decoration: none;
  transition: color 0.18s;
}
.mobile-sub-item a:hover { color: var(--accent); }

/* Section grouping inside mobile sub-menu */
.mobile-section-item { list-style: none; }
.mobile-section-label {
  padding: 12px 20px 6px;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
}
.mobile-sub-links { padding: 0; margin: 0; list-style: none; }
.mobile-sub-link {
  display: block;
  padding: 10px 20px 10px 32px;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  text-decoration: none;
  transition: color 0.18s;
}
.mobile-sub-link:hover { color: var(--accent); }

/* ══════════════════════════════
   CONTENT WRAP
   ══════════════════════════════ */

.content-wrap {
  position: relative;
  z-index: 2;
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 var(--content-pad);
}

/* ── Page hero (used by inner pages) ── */
.page-hero {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 10px var(--content-pad) 30px;
}
.page-hero h1 {
  font-size: 32px;
  color: #0f3a3a;
  margin-bottom: 10px;
}
.page-hero p {
  font-size: 14px;
  color: #0f3a3a;
  max-width: 580px;
  margin: 0 auto;
}

/* ══════════════════════════════
   CARDS / SECTIONS
   ══════════════════════════════ */

.section { margin-bottom: 32px; }
.section-title {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--muted);
  margin-bottom: 14px;
}

.card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}

/* ══════════════════════════════
   BUTTONS (shared)
   ══════════════════════════════ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 14px;
  transition: transform 0.15s, box-shadow 0.2s, background 0.2s;
}
.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #ffffff;
  box-shadow: 0 6px 16px rgba(13,148,136,0.25);
}
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 8px 22px rgba(13,148,136,0.35); }
.btn-primary:active { transform: translateY(0); }

.btn-ghost {
  background: rgba(255,255,255,0.6);
  border: 1px solid var(--card-stroke);
  color: var(--text);
}
.btn-ghost:hover { background: rgba(255,255,255,0.85); }

/* ══════════════════════════════
   FORMS (shared)
   ══════════════════════════════ */

.cb-input,
.cb-select {
  width: 100%;
  padding: 12px 14px;
  font-family: 'DM Mono', monospace;
  font-size: 15px;
  color: var(--text-strong);
  background: rgba(255,255,255,0.7);
  border: 1px solid var(--card-stroke);
  border-radius: var(--radius-sm);
  transition: border 0.2s, background 0.2s, box-shadow 0.2s;
}
.cb-input:focus,
.cb-select:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(255,255,255,0.95);
  box-shadow: 0 0 0 3px var(--accent-soft);
}

.cb-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--muted);
  margin-bottom: 6px;
}

/* ══════════════════════════════
   FOOTER (mobile base — stacked)
   ══════════════════════════════ */

footer.site-footer {
  position: relative;
  z-index: 2;
  margin-top: 60px;
  padding: 28px var(--content-pad);
  border-top: 1px solid rgba(13,148,136,0.10);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  text-align: center;
  background: rgba(255,255,255,0.4);
}
body.theme-dark footer.site-footer { background: rgba(13,40,40,0.5); }

.footer-left,
.footer-right {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
}

footer.site-footer .logo a { font-size: 14px; }
footer.site-footer p {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  color: var(--muted);
  margin: 0;
}

.footer-nav ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin: 0;
  padding: 0;
}
.footer-nav a {
  font-family: 'DM Mono', monospace;
  font-size: 12px;
  color: var(--muted);
  transition: color 0.2s;
}
.footer-nav a:hover { color: var(--accent); }

.footer-cookie-link {
  font-family: 'DM Mono', monospace;
  font-size: 12px;
  color: var(--muted);
  text-decoration: underline;
  text-underline-offset: 3px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}
.footer-cookie-link:hover { color: var(--accent); }

/* Hide CookieYes' floating "revisit consent" button — we provide our own
   "Cookie Settings" link in the footer instead. */
.cky-revisit-bottom-left,
.cky-revisit-bottom-right,
.cky-btn-revisit-wrapper,
#cookie_revisit_consent {
  display: none !important;
}

/* ══════════════════════════════
   WP BLOCK STYLES (for WYSIWYG output)
   ══════════════════════════════ */

.wp-content > * + * { margin-top: 14px; }
.wp-content h2,
.qc-title { font-size: 22px; margin-top: 24px; }
.wp-content h3 { font-size: 17px; margin-top: 20px; }
.wp-content p  { font-size: 14px; line-height: 1.7; color: var(--text); }
.wp-content ul,
.wp-content ol { padding-left: 22px; line-height: 1.7; }
.wp-content a  { color: var(--accent); text-decoration: underline; text-underline-offset: 2px; }
.wp-content strong { color: var(--text-strong); }

/* ══════════════════════════════
   DESKTOP (>= 769px)
   ══════════════════════════════ */

@media (min-width: 769px) {
  body { font-size: 15px; }

  nav#mainNav {
    /* 4 columns: hamburger(hidden) | logo | menu | nav-right
       The 1fr soaks up middle space, pushing nav-right to the far right. */
    grid-template-columns: auto auto 1fr auto;
    padding: 18px 28px;
  }
  .logo { text-align: left; }

  /* Show the desktop nav menu; positioned right next to the logo on the left */
  .nav-menu {
    display: flex;
    list-style: none;
    gap: 4px;
    justify-self: start;
    margin-left: 18px;
  }
  .nav-menu > li { position: relative; }

  .nav-hamburger { display: none; }

  .page-hero { padding: 10px var(--content-pad) 50px; }
  .page-hero h1 { font-size: 42px; }
  .page-hero p { font-size: 16px; }

  footer.site-footer {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    text-align: left;
    padding: 28px 36px;
  }
  .footer-left {
    align-items: flex-start;
  }
  .footer-right {
    align-items: flex-end;
  }
}
