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

/*-- Light Theme (default) --*/
:root {
  --bg:          #f5f4ef;
  --surface:     #ffffff;
  --sidebar-bg:  #1a1a2e;
  --sidebar-txt: #e8e6f0;
  --sidebar-sub: #a09bb8;
  --accent:      #4f8ef7;
  --accent-soft: #deeaff;
  --accent2:     #f7924f;
  --text:        #1c1c2e;
  --muted:       #6b6880;
  --border:      #e2e0d8;
  --tag-bg:      #eef3ff;
  --tag-txt:     #3a6fd8;
  --radius:      10px;
  --sidebar-w:   280px;
  --right-w:     220px;

  /* theme toggle icon visibility */
  --icon-sun:    block;
  --icon-moon:   none;
}

/* Dark Theme */
[data-theme="dark"] {
  --bg:          #0f0f1a;
  --surface:     #1a1a2e;
  --sidebar-bg:  #0d0d1a;
  --sidebar-txt: #e8e6f0;
  --sidebar-sub: #7a7595;
  --accent:      #4f8ef7;
  --accent-soft: #1a2a4a;
  --accent2:     #f7924f;
  --text:        #e8e6f0;
  --muted:       #8a87a0;
  --border:      #2a2a42;
  --tag-bg:      #1a2a4a;
  --tag-txt:     #7ab0ff;

  --icon-sun:    none;
  --icon-moon:   block;
}

/* Base */
html { 
  scroll-behavior: smooth; 
}

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  transition: background 0.25s, color 0.25s;
}

/* Header */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  display: grid;
  grid-template-columns: var(--sidebar-w) 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 0 24px 0 0;
  height: 62px;
  transition: background 0.25s, border-color 0.25s;
}

.logo-area {
  background: var(--sidebar-bg);
  height: 100%;
  display: flex;
  align-items: center;
  padding: 0 24px;
  gap: 10px;
  transition: background 0.25s;
}

.logo-icon {
  width: 30px;
  height: 30px;
  background: var(--accent);
  border-radius: 8px;
  display: grid;
  place-items: center;
}

.logo-icon svg { 
  width: 16px; height: 16px; fill: white; 
}

.logo-text {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.15rem;
  color: white;
  letter-spacing: -0.3px;
}

.logo-text span { 
  color: var(--accent); 
}

/* Search */
.search-wrap {
  position: relative;
  max-width: 480px;
}

.search-wrap svg {
  position: absolute;
  left: 13px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  stroke: var(--muted);
  fill: none;
}

.search-wrap input {
  width: 100%;
  padding: 9px 16px 9px 38px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.875rem;
  background: var(--bg);
  color: var(--text);
  outline: none;
  transition: border-color 0.2s, background 0.25s, color 0.25s;
}

.search-wrap input:focus  { 
  border-color: var(--accent); 
  background: var(--surface); 
}

.search-wrap input::placeholder { 
  color: var(--muted); 
}

/* Nav icons */
.nav-icons {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav-icons a {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  border: 1.5px solid var(--border);
  color: var(--text);
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
  cursor: pointer;
  background: transparent;
}

.nav-icons a:hover { 
  background: var(--accent-soft); 
  border-color: var(--accent); 
}
.nav-icons svg { 
  width: 18px; 
  height: 18px; 
  fill: none; stroke: 
  currentColor; stroke-width: 1.8; 
}

/* Theme toggle button */
#theme-toggle {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  border: 1.5px solid var(--border);
  color: var(--text);
  background: transparent;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
  padding: 0;
}

#theme-toggle:hover { 
  background: var(--accent-soft); border-color: var(--accent); 
}
#theme-toggle svg   { 
  width: 18px; 
  height: 18px; 
  fill: none; 
  stroke: currentColor; 
  stroke-width: 1.8;
 }

#icon-sun  { 
  display: var(--icon-sun); 
}

#icon-moon { 
  display: var(--icon-moon); 
}

/* Layout Shell */
.shell {
  display: grid;
  grid-template-columns: var(--sidebar-w) 1fr var(--right-w);
  flex: 1;
  min-height: 0;
}

/* Left Sidebar */
aside.left {
  background: var(--sidebar-bg);
  min-height: calc(100vh - 62px);
  padding: 28px 0;
  position: sticky;
  top: 62px;
  height: calc(100vh - 62px);
  overflow-y: auto;
  transition: background 0.25s;
}

aside.left::-webkit-scrollbar { 
  width: 4px; 
}

aside.left::-webkit-scrollbar-thumb { 
  background: #3a3a5c; border-radius: 4px; 
}

.nav-section { 
  margin-bottom: 8px; 
}

.nav-label {
  font-family: 'Syne', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--sidebar-sub);
  padding: 0 20px 6px;
}

.nav-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 20px;
  color: var(--sidebar-txt);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 400;
  border-left: 3px solid transparent;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
}

.nav-item:hover {
  background: rgba(255,255,255,0.06);
  color: white;
}

.nav-item.active {
  background: rgba(79,142,247,0.15);
  border-left-color: var(--accent);
  color: #a8c8ff;
  font-weight: 500;
}

.nav-item svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  flex-shrink: 0;
  opacity: 0.75;
}

.nav-sub { 
  padding-left: 46px; 
}

.nav-sub .nav-item {
  font-size: 0.82rem;
  color: var(--sidebar-sub);
  padding: 6px 20px 6px 0;
  border-left: none;
}

.nav-sub .nav-item:hover  { 
  color: var(--sidebar-txt); 
  background: none; 
}

.nav-sub .nav-item.active { 
  color: var(--accent); 
  background: none; 
  font-weight: 500; 
}

.nav-divider {
  height: 1px;
  background: rgba(255,255,255,0.07);
  margin: 10px 20px;
}

/* Main Content */
main {
  padding: 40px 48px 80px;
  min-width: 0;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 28px;
}

.breadcrumb span { 
  color: var(--text); 
  font-weight: 500; 
}

.breadcrumb svg  { 
  width: 12px; 
  height: 12px; 
  stroke: currentColor; 
  fill: none; 
  stroke-width: 2; 
}

/* Content blocks */
.content-block {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 28px;
  margin-bottom: 12px;
  transition: box-shadow 0.2s, background 0.25s, border-color 0.25s;
}

.content-block:hover { 
  box-shadow: 0 4px 20px rgba(0,0,0,0.08); 
}

.block-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.block-icon {
  width: 38px;
  height: 38px;
  border-radius: 9px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.block-icon svg { 
  width: 18px; 
  height: 18px; 
  stroke: currentColor; 
  fill: none; 
  stroke-width: 1.8; 
}

.icon-blue   { 
  background: var(--accent-soft); 
  color: var(--accent); 
}
.icon-orange { 
  background: #fff0e6; 
  color: var(--accent2); 
}

.icon-green  { 
  background: #e6f9f0; 
  color: #2dab6e; 
}

 /* [] denote attribute selector which selects any attribute with the name "dark" */
[data-theme="dark"] .icon-orange { 
  background: #2a1a0a; 
} 
[data-theme="dark"] .icon-green  { 
  background: #0a2016; 
}

.block-title {
  font-family: 'Syne', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
}

.block-body {
  font-size: 0.875rem;
  line-height: 1.75;
  color: var(--muted);
}

.block-body p + p { margin-top: 10px; }

.block-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 16px;
}

.tag {
  font-size: 0.75rem;
  font-weight: 500;
  padding: 3px 10px;
  border-radius: 20px;
  background: var(--tag-bg);
  color: var(--tag-txt);
  transition: background 0.25s, color 0.25s;
}

.tag.green  { background: #e6f9f0; color: #1d8a55; }
.tag.orange { background: #fff0e6; color: #c06820; }

[data-theme="dark"] .tag.green  { 
  background: #0a2016; color: #3dbb75; 
}

[data-theme="dark"] .tag.orange { 
  background: #2a1a0a; color: #e8924f; 
}

.block-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  transition: gap 0.15s;
}

.block-link:hover { 
  gap: 10px; 
}

.block-link svg { 
  width: 14px; 
  height: 14px; 
  stroke: currentColor; 
  fill: none; 
  stroke-width: 2.5; 
}

/* Hero */
.hero {
  background: var(--accent-soft);
  border: 1px solid var(--border);
  border-left: 4px solid var(--accent);
  border-radius: var(--radius);
  padding: 28px 32px;
  margin-bottom: 32px;
  transition: background 0.25s, border-color 0.25s;
}

[data-theme="dark"] .hero {
  background: #1a2a4a;
}

.hero-eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}

.hero h1 {
  font-family: 'Syne', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
  margin-bottom: 10px;
}

.hero p {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.7;
  max-width: 520px;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  background: var(--accent);
  color: white;
  padding: 9px 18px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s;
}

.hero-cta:hover { 
  background: #3a7ae8; 
}

.hero-cta svg   { 
  width: 14px; 
  height: 14px; 
  stroke: currentColor; 
  fill: none; 
  stroke-width: 2.5; 
}

/* Section headings */
.section-heading {
  font-family: 'Syne', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1.3px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 14px;
  margin-top: 32px;
}

.section-heading:first-of-type { 
  margin-top: 0; 
}

/* Right Sidebar */
aside.right {
  padding: 40px 20px 40px 16px;
  position: sticky;
  top: 62px;
  height: calc(100vh - 62px);
  overflow-y: auto;
}

aside.right::-webkit-scrollbar {
   width: 4px; 
}

aside.right::-webkit-scrollbar-thumb { 
  background: var(--border); 
  border-radius: 4px; 
}

.toc-title {
  font-family: 'Syne', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
}

.toc-list { 
  list-style: none; 
}

.toc-list li + li { 
  margin-top: 2px; 
}

.toc-list a {
  display: block;
  font-size: 0.8rem;
  color: var(--muted);
  text-decoration: none;
  padding: 5px 8px;
  border-left: 2px solid var(--border);
  transition: color 0.15s, border-color 0.15s;
  line-height: 1.4;
}

.toc-list a:hover  { 
  color: var(--accent); 
  border-left-color: var(--accent); 
}

.toc-list a.active { 
  color: var(--accent); 
  border-left-color: var(--accent); 
  font-weight: 500; 
}

.toc-divider { 
  height: 1px; 
  background: var(--border); 
  margin: 16px 0; 
  transition: background 0.25s; 
}

.toc-extra-title {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 8px;
}

.toc-extra-link {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.8rem;
  color: var(--muted);
  text-decoration: none;
  padding: 5px 0;
  transition: color 0.15s;
}

.toc-extra-link:hover { 
  color: var(--accent); 
}

.toc-extra-link svg { 
  width: 13px; 
  height: 13px; 
  stroke: currentColor; 
  fill: none; 
  stroke-width: 2; 
  flex-shrink: 0; 
}

/* Hamburger Button (mobile only) */
.hamburger {
  display: none;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  border: 1.5px solid var(--border);
  background: transparent;
  color: var(--text);
  cursor: pointer;
  padding: 0;
  transition: background 0.2s, border-color 0.2s;
  flex-shrink: 0;
}

.hamburger:hover { background: var(--accent-soft); border-color: var(--accent); }
.hamburger svg   { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 1.8; }

/* Sidebar overlay for mobile */
.sidebar-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 149;
}

.sidebar-overlay.active { display: block; }

/* Tablet */
@media (max-width: 1024px) {
 
  /* Hide right sidebar */
  aside.right { display: none; }
 
  /* Expand main to fill the space */
  .shell {
    grid-template-columns: var(--sidebar-w) 1fr;
  }
 
  main { padding: 32px 36px 60px; }
}
 
/* ── Small Tablet — 768px ────────────────────────────────── */
@media (max-width: 768px) {
 
  /* Header: logo | search | icons */
  header {
    grid-template-columns: auto 1fr auto;
    padding: 0 16px;
    gap: 10px;
  }
 
  /* Show hamburger */
  .hamburger { display: grid; }
 
  /* Shrink logo area to just icon + text, no full-width bg */
  .logo-area {
    padding: 0 14px;
    background: transparent;
  }
 
  .logo-text { font-size: 1rem; }
 
  /* Left sidebar: hidden off-screen by default on mobile */
  aside.left {
    position: fixed;
    top: 0;
    left: -280px;
    height: 100vh;
    width: 260px;
    z-index: 150;
    transition: left 0.3s ease;
    padding-top: 72px;
  }
 
  /* Sidebar open state toggled by JS */
  aside.left.open { left: 0; }
 
  /* Shell becomes single column */
  .shell {
    grid-template-columns: 1fr;
  }
 
  main { padding: 28px 24px 60px; }
 
  /* Stack hero content */
  .hero { padding: 22px 20px; }
  .hero h1 { font-size: 1.3rem; }
}
 
/* ── Mobile — 480px ──────────────────────────────────────── */
@media (max-width: 480px) {
 
  header { height: 54px; }
  
  /* Show hamburger */
  .hamburger { display: grid; }
  /* Hide search bar text, keep icon visible */
  .search-wrap input { font-size: 0.8rem; padding: 8px 12px 8px 34px; }
 
  main { padding: 20px 16px 48px; }
 
  /* Hero */
  .hero { padding: 18px 16px; }
  .hero h1 { font-size: 1.15rem; }
  .hero p  { font-size: 0.82rem; }
 
  /* Content blocks */
  .content-block { padding: 18px 16px; }
 
  /* Breadcrumb wraps cleanly */
  .breadcrumb { flex-wrap: wrap; font-size: 0.75rem; }
 
  /* Section heading */
  .section-heading { font-size: 0.65rem; }
 
  /* Block header stacks on very small screens */
  .block-header { gap: 10px; }
  .block-title  { font-size: 0.95rem; }
  .block-body   { font-size: 0.835rem; }
}
/* ─────────────────────────────────────────── */
/* ── Community Page — Member Cards          ── */
/* ─────────────────────────────────────────── */

.members-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 24px;
}

.member-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 28px;
  display: flex;
  align-items: center;
  gap: 24px;
  transition: box-shadow 0.25s, border-color 0.25s, transform 0.2s;
}

.member-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.07);
  border-color: var(--accent);
}

.member-avatar {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  border-radius: 12px;
  background: var(--accent-soft);
  border: 1px solid var(--border);
  display: grid;
  place-items: center;
  color: var(--accent);
}

[data-theme="dark"] .member-avatar {
  background: var(--accent-soft);
}

.member-avatar svg {
  width: 36px;
  height: 36px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
}

.member-content {
  flex: 1;
  min-width: 0;
}

.member-content p {
  color: var(--muted);
  font-size: 0.875rem;
  line-height: 1.75;
  margin: 0;
}

.member-name {
  flex-shrink: 0;
  width: 150px;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--text);
}

@media (max-width: 768px) {
  .member-card {
    flex-direction: column;
    align-items: flex-start;
  }
  .member-name {
    width: auto;
  }
}

/* Premium Footer */
.premium-footer {
  margin-top: 80px;
  padding: 60px 0 30px;
  background: linear-gradient(to bottom, transparent, var(--accent-soft));
  border-top: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

[data-theme="dark"] .premium-footer {
  background: linear-gradient(to bottom, transparent, rgba(79, 142, 247, 0.05));
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
}

.footer-brand-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.footer-brand .logo-icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--accent), #76aaff);
  border-radius: 10px;
  display: grid;
  place-items: center;
  box-shadow: 0 4px 12px rgba(79, 142, 247, 0.3);
  transition: transform 0.3s ease;
}

.footer-brand:hover .logo-icon {
  transform: rotate(-10deg) scale(1.05);
}

.footer-brand .logo-icon svg { width: 18px; height: 18px; fill: white; }

.footer-brand .brand-name {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--text);
  letter-spacing: -0.5px;
}
.footer-brand .brand-name span { color: var(--accent); }

.footer-brand p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.7;
  max-width: 300px;
}

.footer-socials {
  display: flex;
  gap: 14px;
  margin-top: 24px;
}

.footer-socials a {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--muted);
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.footer-socials a::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--accent);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 0;
}

.footer-socials a:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
  color: white;
  box-shadow: 0 6px 16px rgba(79, 142, 247, 0.2);
}

.footer-socials a:hover::before {
  opacity: 1;
}

.footer-socials svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  position: relative;
  z-index: 1;
}

.footer-column .footer-heading {
  font-family: 'Syne', sans-serif;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 24px;
  position: relative;
  display: inline-block;
}

.footer-column .footer-heading::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 20px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
  transition: width 0.3s ease;
}

.footer-column:hover .footer-heading::after {
  width: 100%;
}

.footer-column ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 0;
  margin: 0;
}

.footer-column a {
  text-decoration: none;
  font-size: 0.9rem;
  color: var(--muted);
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
  font-weight: 500;
  position: relative;
}

.footer-column a::before {
  content: '→';
  position: absolute;
  left: -20px;
  opacity: 0;
  color: var(--accent);
  transition: all 0.25s ease;
  font-size: 1.1rem;
}

.footer-column a:hover {
  color: var(--accent);
  transform: translateX(20px);
}

.footer-column a:hover::before {
  opacity: 1;
}

.footer-bottom {
  margin-top: 60px;
  padding: 24px 40px 0;
  border-top: 1px dashed var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.footer-bottom p {
  font-size: 0.85rem;
  color: var(--muted);
  font-weight: 500;
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  transition: color 0.2s;
  position: relative;
}

.footer-bottom-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

.footer-bottom-links a:hover {
  color: var(--text);
}

.footer-bottom-links a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* Footer Responsive */
@media (max-width: 1024px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 50px;
  }
}

@media (max-width: 600px) {
  .premium-footer {
    padding: 40px 0 20px;
    margin-top: 40px;
  }
  
  .footer-top {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 0 24px;
  }

  .footer-column a:hover {
    transform: translateX(10px);
  }
  
  .footer-column a::before {
    left: -12px;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    justify-content: center;
    padding: 20px 24px 0;
    margin-top: 40px;
  }
}