/*
* Dreams Uncharted - Main Stylesheet
* Based on wireframes and design documentation
*/

/* === Variables === */
:root {
    /* Primary Colors */
    --primary: #003265;
    --secondary: #f81a36;
    --tertiary: #6BCB77;
    
    /* Neutral Colors */
    --background: #F8F9FA;
    --surface: #FFFFFF;
    --text-primary: #212529;
    --text-secondary: #6C757D;
    --border: #DEE2E6;
    
    /* Semantic Colors */
    --success: #28A745;
    --warning: #FFC107;
    --danger: #DC3545;
    --info: #17A2B8;
    
    /* Spacing */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-xxl: 3rem;
    
    /* Border Radius */
    --border-radius-sm: 0.25rem;
    --border-radius-md: 0.5rem;
    --border-radius-lg: 1rem;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-medium: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Typography Scale */
    --font-size-base: 16px;
    --font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size-md: 1rem;
    --font-size-lg: 1.25rem;
    --font-size-xl: 1.5rem;
    --font-size-xxl: 2rem;
    --font-size-xxxl: 2.5rem;
}

/* === Base Styles === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.text-custom {
  color: #FFFFFF; /* Replace with your desired color */
}

html {
    font-size: var(--font-size-base);
    scroll-behavior: smooth;
}

html, body {
    margin: 0;
    padding: 0;
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background: url("/assets/Images/background.webp") no-repeat center center fixed;
    background-size: cover;
}

main {     
    flex: 1 0 auto;
    margin: 0;       /* remove browser default gap */
    padding: 0;      /* remove extra space */
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--spacing-md);
}

h1 {
    font-size: var(--font-size-xxxl);
}

h2 {
    font-size: var(--font-size-xxl);
}

h3 {
    font-size: var(--font-size-xl);
}

h4 {
    font-size: var(--font-size-lg);
}

p {
    margin-bottom: var(--spacing-md);
}

a {
    color: #F8F9FA;
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    text-shadow 0 0 25px #FFD700;
    animation: step-end 0.2s;
    text-decoration: underline;
}

img {
    max-width: 100%;
    height: auto;
}

ul, ol {
    margin-bottom: var(--spacing-md);
    padding-left: var(--spacing-lg);
}

/* === Layout === */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.hidden {
    display: none !important;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: var(--spacing-sm) var(--spacing-md);
    background-color: var(--secondary) !important;
    color: #fff !important;
    border: none !important;
    border-radius: var(--border-radius-sm);
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: box-shadow 0.2s, transform 0.2s, background 0.2s;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(0,0,0,0.12) !important;
    font-size: 1.1rem !important;
}

.btn:hover {
    background-color: #c9142a !important;
    color: #FFD700 !important;
    box-shadow: 0 6px 18px rgba(0,0,0,0.18) !important;
    transform: translateY(-3px) scale(1.04);
    text-shadow: 0 0 15px #FFD700
}

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

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

.btn-tertiary {
    background-color: transparent;
    color: var(--primary);
    border: 1px solid var(--primary);
}

.btn-large {
    padding: var(--spacing-lg) var(--spacing-lg) !important;
    font-size: var(--font-size-lg) !important; 
}

/* Forms */
input, textarea, select {
    padding: var(--spacing-md);
    border: 1px solid var(--border);
    border-radius: var(--border-radius-sm);
    font-family: 'Open Sans', sans-serif;
    font-size: var(--font-size-md);
    width: 100%;
}

/* === Header === */
.site-header {
    background: linear-gradient(to bottom, #9ebaea 0%, #6c69a1 40%, #183066 100%);
    background-color: #9ebaea;
    height: 178px;        /* lock header height */
    width: 100%;          /* full browser width */   
    position: sticky;
    top: 0;
    z-index: 100;
    margin: 0;            /* remove any outside spacing */
    padding: 0;           /* remove inside spacing */
}

/* force container to fill header width and height */
.site-header .container {
   display: flex;
   align-items: center;          /* keeps nav vertically centered */
   justify-content: space-between;
   height: 100%;
   width: 100%;
   max-width: 100% !important;
   margin: 0 !important;
   padding: 0 2rem !important;   /* just left/right breathing room */
   box-sizing: border-box;
}

/* Logo setup */
.logo {
  position: relative;
  width: 250px;                 /* reserves horizontal space */
  height: 250px;
}

.logo img {
  position: absolute;
  bottom: -10px;                /* overlap hero by ~40px */
  left: 0;
  height: 220px;
  width: auto;
  z-index: 300;
  margin-left: 50px; 
}

.header-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.main-nav ul {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

/* Desktop: mobile nav is hidden by default */
.mobile-nav {
  display: none;
}

/* Desktop: hide hamburger by default */
.menu-toggle {
  display: none;
}

.main-nav a {
    font-size: 1rem;
    padding: 0.3rem 0.7rem;
    border-radius: var(--border-radius-sm);
    color: #fff;
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

.main-nav a:hover {
  color: #FFD700; /* Gold text */
  text-shadow: 0 0 6px #FFD700, 0 0 12px #FFD700, 0 0 18px #FFD700;
}

/* Holographic Container for Buttons */
.holographic-container {
  display: inline-flex; /* Changed to inline-flex to fit within nav */
  justify-content: center;
  align-items: center;
}

/* Holographic Card (Button) */
.holographic-card {
  width: auto; /* Adjust width to content */
  min-width: 100px; /* Minimum width for consistency */
  height: 40px; /* Fixed height for button-like appearance */
  background: #f81a36; /* Red background */
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  border-radius: var(--border-radius-sm, 8px); /* Use existing variable or default */
  transition: all 0.5s ease;
  transform: translateY(-3px) scale(1.04);
  font-weight: 700; /* Bold text */
}

/* Style the Link Inside the Card */
.holographic-card a {
  color: #FFFFFF; /* white text color */
  font-size: 1rem;
  text-decoration: none; /* Remove underline */
  padding: 0.4rem 0.7rem; /* Maintain padding from original */
  position: relative;
  z-index: 2; /* Ensure text is above the ::before effect */
}

/* Holographic Effect */
.holographic-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    0deg,
    transparent,
    transparent 30%,
    rgba(201, 20, 42, 1) /* Red Sheen */
  );
  transform: rotate(-45deg);
  transition: all 0.5s ease;
  opacity: 0;
}

.btn-holographic {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-width: 120px;
  height: 45px;
  padding: 0.4rem 0.7rem;
  background: #f81a36; /* red base */
  border-radius: var(--border-radius-sm, 8px);
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
  text-decoration: none;
  overflow: hidden;
  transition: all 0.5s ease, color 0.3s ease, text-shadow 0.3s ease;
  transform: translateY(-3px) scale(1.04); /* subtle float */
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
  z-index: 1;
  margin: 1rem;
}

.btn-holographic::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    0deg,
    transparent,
    transparent 30%,
    rgba(201, 20, 42, 1) /* red sheen */
  );
  transform: rotate(-45deg);
  transition: all 0.5s ease;
  opacity: 0;
  z-index: 0;
}

.btn-holographic:hover {
  color: #FFD700; /* gold text */
  text-shadow: 0 0 6px #FFD700, 0 0 12px #FFD700, 0 0 18px #FFD700; /* glowing gold text */
  transform: scale(1.05);
  box-shadow: 0 0 20px #FFFFFF, 0 0 30px #FFFFFF, 0 0 40px #FFFFFF; /* outer glow stays white */
}

.btn-holographic:hover::before {
  opacity: 1;
  transform: rotate(-45deg) translateY(100%);
}

.like-btn {
  display: inline-flex;   /* put icon + number side by side */
  align-items: center;    /* vertical centering */
  gap: 6px;               /* space between heart and number */
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  font-size: 1rem;
}

.like-btn:hover {
  color: #ff6666;
}


.like-btn.liked .like-icon {
  color: red;
}


.like-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.like-btn.liked {
    color: red;
    font-weight: bold;
}

/* Animation Keyframes */
@keyframes holographic {
    0% { transform: rotate(30deg) translateX(-100%); }
    100% { transform: rotate(30deg) translateX(100%); }
}

/* Hover Effects */
.holographic-card:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px #FFFFFF, 0 0 30px #FFFFFF, 0 0 40px #FFFFFF;
}

.holographic-card:hover::before {
  opacity: 1;
  transform: rotate(-45deg) translateY(100%);
}

.search-bar {
  display: flex;
  align-items: center;
  background: #111;
  border: 1px solid #f81a36;
  border-radius: 20px;
  padding: 2px 8px;
}

.search-bar form {
  display: flex;
  width: 100%;
}

.search-bar input {
  border: none;
  outline: none;
  background: transparent;
  color: #fff;
  padding: 5px 8px;
  width: 150px;
}

.search-bar button {
    font-size: 0.95rem;
    padding: 0.2rem 0.5rem;
    border-radius: 0 var(--border-radius-sm) var(--border-radius-sm) 0;
}

.user-nav {
    margin-left: 0.5rem;
}

/* === Footer === */
/* Make footer full width and background stretch */
.site-footer {
    background-color: var(--text-primary);
    color: white;
    width: 100%;
    padding: var(--spacing-xl) 0;
    margin-top: var(--spacing-xxl);
    padding-bottom: var(--spacing-sm);
}

.site-footer .container {
    max-width: none;
    width: 100%;
    margin: 0;
    padding: 0 2rem;
    box-sizing: border-box;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-lg);
}

.footer-logo h2 {
    color: white;
    font-size: var(--font-size-xl);
    margin-bottom: var(--spacing-md);
}

.footer-links h3 {
    font-size: var(--font-size-md);
    margin-bottom: var(--spacing-md);
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: var(--spacing-sm);
}

.footer-links a {
    color: var(--border);
    text-decoration: none;
}

.footer-links a:hover {
    color: white;
}

.footer-newsletter h3 {
    font-size: var(--font-size-md);
    margin-bottom: var(--spacing-sm);
}

.footer-newsletter p {
    margin-bottom: var(--spacing-md);
}

.footer-newsletter form {
    display: flex;
}

.footer-newsletter input {
    flex-grow: 1;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.footer-newsletter button {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.footer-bottom {
    margin-top: var(--spacing-xl);
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

/* === Home Page === */
.hero {
  padding-top: 0;
  margin-top: -20px; /* match logo overlap */
}

.hero-banner {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  background: url("/assets/Images/defaultheroimage.webp") no-repeat top center;
  height: 400px;
  background-size: cover;
  color: white;
  border-radius: var(--border-radius-lg);
  padding: var(--spacing-xxl);
  text-align: center;
  margin-bottom: 80px; 
  margin-top: 0;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.hero-content {
    margin-top: 60px;
}

.hero-content h1 {
    font-size: var(--font-size-xxl);
    margin: var(--spacing-xxxl);
}

.hero-content p {
    font-size: var(--font-size-lg);
    margin-top var(--spacing-sm);
    margin-bottom: var(--spacing-lg);
    font-weight: 700;
}

.content-categories {
    margin-bottom: var(--spacing-xl);
}

/* Two-column layout for categories */
.categories-two-column {
    display: flex;
    gap: var(--spacing-lg);
    justify-content: center;
    margin: 0 auto;              /* Center the flex container */
    max-width: 700px;            /* Optional: limits the total width */
}

.categories-two-column .category-box {
    flex: 1 1 0;
    min-width: 220px;
}

.category-box {
    background-color: var(--surface);
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-xl);
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.category-box h2 {
    margin-bottom: var(--spacing-md);
}

.content-section {
    margin-bottom: var(--spacing-xxl);
}

.section-title {
    margin-bottom: var(--spacing-md);
    position: relative;
    padding-bottom: var(--spacing-sm);
    margin-top: 3rem; 
}

/* Section Titles: white with shadow for emphasis */
.section-title {
    color: #fff !important;
    text-shadow: 0 2px 8px rgba(0,0,0,0.18), 0 1px 0 #003265;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: white;
}

/* === Content Grid Layout and Content Cards === */
.content-grid {
  display: grid;
  column-gap: 25px !important;
  row-gap: 25px !important;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 20px;
  margin-top: 30px;
  margin-bottom: 50px;
  padding: 20px;
}

/* Each comic card */
.content-card {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  transition: transform 0.2s ease;
  background: #111;
  height: 100%;
  color: #fff;              /* white by default */
  text-decoration: none;
  transition: color 0.3s ease, text-decoration 0.3s ease;
}

.content-card:hover {
  transform: translateY(-5px);
  color: #f81a36;           /* red hover */
  text-decoration: underline;
}


/* Force portrait shape for covers */
.content-card .card-image {
  width: 100%;
  aspect-ratio: 2 / 3;   /* portrait comic cover ratio */
  overflow: hidden;
}

.content-card .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Overlay for hover effect */
.content-card .overlay {
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.15); /* light translucent white */
  backdrop-filter: blur(0.5px);         /* subtle blur */
  -webkit-backdrop-filter: blur(0.5px); /* Safari/Chrome support */
  border-radius: 8px;

  color: #fff;
  opacity: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 12pt;
  text-align: center;
}

.content-card:hover .overlay {
  opacity: 1;
  transform: scale(1); /* smooth zoom in */
  box-shadow: 0 0 25px rgba(255, 255, 255, 0.6); /* subtle white glow */
}

/* Title + stats styling */
.content-card .overlay .title {
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: 0.5px;
 
}

.content-card .overlay .title a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease, text-shadow 0.3s ease;
  
}

.content-card .overlay .title a:hover {
  color: #FFD700;
  text-shadow: 0 0 25px #FFD700;
  text-decoration: underline;
  color: #FFD700; /* Gold text */
}

.content-card.holographic-card {
  position: relative;
  overflow: hidden;
}

.content-card.holographic-card::before {
  content: "";
  position: absolute;
  top: 0; left: -75%;
  width: 50%; height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,0.6) 50%,
    rgba(255,255,255,0) 100%
  );
  transform: skewX(-20deg);
  animation: shimmer 4s infinite;
}

@keyframes shimmer {
  0%   { left: -75%; }
  100% { left: 125%; }
}

.content-card .overlay .stats {
  display: flex;
  gap: 12px; /* space between view and like sections */
  align-items: center;
  justify-content: flex-start;
  color: #fff;              /* all text white */
  font-weight: bold;        /* all stats bold */
}

.content-card .overlay .stats span {
  display: inline-flex;
  align-items: center;
  gap: 6px;                 /* space between icon and number */
  font-size: 0.9rem;
  color: #fff;              /* ensure icons + text are white */
  font-weight: bold;
}


/* Donations Functions */
.funding-progress {
  margin: 20px 0;
  color: #fff;
  font-weight: 600;
}

.progress-label {
  margin-bottom: 8px;
}

.progress-bar {
  width: 100%;
  height: 20px;
  background: rgba(255, 255, 255, 0.15); 
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0,0,0,0.3) inset;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #FFD700, #FFA500);
  transition: width 0.4s ease;
}


/*=== Mobile Friendly Settings === */
/* === Extra Small Mobile Styles === */
@media (max-width: 576px) {
  /* Single column content */
  .content-grid {
    grid-template-columns: 1fr;
  }

  /* Footer stacks vertically */
  .footer-content {
    grid-template-columns: 1fr;
  }

  /* Hero content text scaling */
  .hero-content h1 {
    font-size: var(--font-size-xxl);
  }

  .hero-content p {
    font-size: var(--font-size-md);
  }

  /* Chapter list items stack */
  .chapter-item {
    flex-direction: column;
    align-items: flex-start;
  }

  .chapter-item .btn-read {
    margin-top: var(--spacing-sm);
  }

  /* Tabs navigation wraps neatly */
  .tabs-nav {
    flex-wrap: wrap;
  }

  .tabs-nav li {
    flex-basis: 50%;
    text-align: center;
    margin-right: 0;
  }
}


/* === Standard Mobile Styles === */
@media (max-width: 768px) {
  .html .body  { 
    background-attachment: scroll !important;
    height: 100% !important;
    min-height: 100% !important;
    overflow-x: hidden !important; /* prevent sideways white flash */
    background-color: #000 !important; /* fallback color */
  }
  
  /* Hamburger menu button */
  .menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 40px;
    height: 30px;                   /* height of three lines */
    position: absolute;
    top: 70px;                       /* distance from top */
    left: 20px;                      /* distance from left edge */
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
  }

  .menu-toggle span {
    display: block;
    height: 4px;                     /* line thickness */
    width: 100%;
    background: #fff;
    border-radius: 2px;
    transition: all 0.3s ease;
  }

  /* Menu toggle open/close animation */
  .menu-toggle.open span:nth-child(1) {
    transform: rotate(45deg) translateY(18px);
  }
  
  .menu-toggle.open span:nth-child(2) {
    opacity: 0;
  }
  
  .menu-toggle.open span:nth-child(3) {
    transform: rotate(-45deg) translateY(-18px);
  }

  /* Hide desktop nav on mobile */
  .main-nav {
    display: none;
  }
  
  .site-header {
    height: 200px;
    min-height: 200px;       /* enough space for logo + hamburger */
    padding: 0;
  }

  .site-header .container {
    justify-content: space-between !important; /* hamburger left, logo right */
    align-items: flex-start;
    padding: 0px !important;
  }

  .site-header .logo {
    margin-left: auto;
    margin-right: 10px; 
    width: auto;
    height: auto;
    display: flex;
    align-items: flex-start;
  }
  
  .site-header .logo img {
    display: block;       
    position: relative !important;
    height: 190px !important;
    width: auto !important;
    margin: 0 !important;
  }
  
  .site-header .logo a {
    display: block;
    margin: 0 !important;
    padding: 0 !important;
    line-height: 0;      
   }
   
  .logo img { 
    left: auto !important; 
    bottom: auto !important; 
    margin-left: 0 !important; 
  }
  
  .holographic card a {
    font-size: 0.2rem;
  }
  
  /* Mobile nav drawer */
  .mobile-nav {
    display: block;
    position: fixed;
    top: 0;
    left: -50vw;                     /* off-screen initially */
    width: 50vw;                      /* half viewport width */
    height: 100vh;                    /* full height */
    background-color: #23386e;
    overflow-y: auto;
    transition: left 0.3s ease;
    padding-top: 100px;               /* below header */
    z-index: 1000;
  }

  .mobile-nav.open {
    left: 0;
  }

  .mobile-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .mobile-nav li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  }

  .mobile-nav a {
    display: block;
    padding: 1rem 1.5rem;
    font-size: 1.1rem;
    color: #fff;
    text-decoration: none;
    transition: color 0.2s ease;
  }

  .mobile-nav a:hover,
  .mobile-nav a:active {
    color: #FFD700;
  }

  /* Other responsive tweaks */
  .content-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .content-categories {
    grid-template-columns: 1fr;
  }
  
  /* Hide search bar on screens < 768px */
  .search-bar {
    display: none !important;
  }
  
    /* Mobile search bar button */
    .site-search-mobile button {
      background-color: #f81a36;   /* bright red */
      color: #fff;                 /* white text */
      font-size: 1rem;             /* medium text */
      padding: 8px 14px;           /* comfortable touch area */
      margin: 8px auto 0 auto;     /* space above, centered */
      border: none;                /* clean look */
      border-radius: 6px;          /* soft corners */
      cursor: pointer;
      width: 85%;                  /* slightly smaller than menu width */
      display: block;
      transition: background 0.3s ease;
      text-align: center;
    }
    
    .site-search-mobile button:hover {
      background-color: #d40e2c;   /* darker red on hover */
    }

/* Hero section adjustment */
  .hero {
    margin-top: 0;
    padding-top: 0;
  }

  .hero-banner {
    margin-top: 0;
    height: 400px;
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-xxl);
  }

  .series-actions, 
  .profile-actions {
    flex-wrap: wrap;
  }

  .series-actions button,
  .profile-actions button {
    flex-basis: calc(50% - var(--spacing-sm));
    margin-bottom: var(--spacing-sm);
  }

  .profile-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

/* === Narrow two-column categories collapse === */
@media (max-width: 700px) {
  .categories-two-column {
    flex-direction: column;
    gap: var(--spacing-md);
  }
}


