/* ============================================
   Inner World Counseling Services — Main Stylesheet
   Migration from WordPress (Brighter Vision Paris theme)
   Design tokens extracted from live site
   ============================================ */

/* --- CSS Custom Properties --- */
:root {
  /* Primary Colors */
  --color-olive: #646756;
  --color-sage: #5F7C54;
  --color-light-sage: #C9D8BD;

  /* Secondary Colors */
  --color-taupe: #9A9085;
  --color-warm-brown: #96836E;

  /* Neutrals */
  --color-body-text: #363636;
  --color-white: #FFFFFF;
  --color-cream: #F1EEE3;
  --color-light-gray: #F3F3F3;
  --color-black: #000000;

  /* Functional */
  --color-link: #96836E;
  --color-link-hover: #5F7C54;
  --color-border: rgba(100, 103, 86, 0.36);

  /* Typography */
  --font-body: 'Work Sans', sans-serif;
  --font-heading: 'PT Serif', Georgia, serif;
  --font-ui: 'Raleway', 'Helvetica Neue', sans-serif;
  --font-decorative: 'Satisfy', cursive;

  /* Spacing */
  --section-padding: 4.5rem 0;
  --container-width: 1200px;
  --container-padding: 0 1.5rem;
}

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

html {
  font-size: 100%;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--color-body-text);
  background-color: var(--color-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: var(--color-link);
  text-decoration: none;
  transition: color 0.25s ease;
}

a:hover, a:focus {
  color: var(--color-link-hover);
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  line-height: 1.3;
  margin-bottom: 0.75em;
}

h1 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 400;
  color: var(--color-olive);
}

h2 {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 400;
  color: var(--color-olive);
}

h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--color-taupe);
}

h4 {
  font-family: var(--font-ui);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-olive);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

p {
  margin-bottom: 1.25rem;
}

strong, b {
  font-weight: 600;
}

ul, ol {
  margin-bottom: 1.25rem;
  padding-left: 1.5rem;
}

li {
  margin-bottom: 0.5rem;
}

/* --- Layout --- */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: var(--container-padding);
}

.section {
  padding: var(--section-padding);
}

.section--cream {
  background-color: var(--color-cream);
}

.section--sage {
  background-color: var(--color-light-sage);
}

.section--gray {
  background-color: var(--color-light-gray);
}

/* --- Top Bar --- */
.top-bar {
  background-color: var(--color-white);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  padding: 0.4rem 0;
  font-size: 0.8125rem;
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar__social {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.top-bar__social a {
  color: var(--color-olive);
  display: flex;
  align-items: center;
  transition: color 0.25s ease;
}

.top-bar__social a:hover {
  color: var(--color-sage);
}

.top-bar__contact {
  font-family: var(--font-ui);
  color: var(--color-body-text);
  font-size: 0.8125rem;
}

.top-bar__contact a {
  color: var(--color-body-text);
  margin-left: 0.25rem;
}

.top-bar__contact a:hover {
  color: var(--color-sage);
}

/* --- Header / Navigation --- */
.site-header {
  background-color: var(--color-cream);
  padding: 0.5rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}

.main-nav {
  display: flex;
  align-items: center;
  width: 100%;
  position: relative;
  min-height: 80px;
}

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

.main-nav__list--left {
  flex: 1;
  justify-content: flex-start;
}

.main-nav__list--right {
  flex: 1;
  justify-content: flex-end;
}

.main-nav__item {
  position: relative;
  margin-bottom: 0;
}

.main-nav__link {
  font-family: var(--font-ui);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-olive);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.5rem 0;
  display: inline-block;
  transition: color 0.25s ease;
  white-space: nowrap;
}

.main-nav__link:hover,
.main-nav__link--active {
  color: var(--color-sage);
}

/* Logo */
.site-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin: 0 2rem;
  z-index: 10;
}

.site-logo img {
  height: 110px;
  width: auto;
}

/* Dropdown */
.main-nav__dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: var(--color-white);
  min-width: 260px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
  border-top: 2px solid var(--color-sage);
  list-style: none;
  padding: 0.5rem 0;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
  z-index: 200;
}

.main-nav__item:hover .main-nav__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.main-nav__dropdown li {
  margin-bottom: 0;
}

.main-nav__dropdown a {
  display: block;
  padding: 0.5rem 1.25rem;
  font-family: var(--font-ui);
  font-size: 0.8125rem;
  color: var(--color-body-text);
  transition: background 0.2s ease, color 0.2s ease;
}

.main-nav__dropdown a:hover {
  background-color: var(--color-cream);
  color: var(--color-sage);
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 200;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--color-olive);
  margin: 5px 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* --- Hero Section (Homepage) --- */
.hero {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.15), rgba(0,0,0,0.4));
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  padding: 3rem 2rem;
}

.hero__tagline {
  font-family: var(--font-decorative);
  font-size: 2.75rem;
  color: var(--color-white);
  margin-bottom: 2rem;
  line-height: 1.4;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.hero__cta {
  display: inline-flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

/* --- Page Banner --- */
.page-banner {
  position: relative;
  background-size: cover;
  background-position: center;
  padding: 3.5rem 0;
  min-height: 180px;
  display: flex;
  align-items: center;
}

.page-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35);
}

.page-banner__title {
  position: relative;
  z-index: 1;
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 400;
  color: var(--color-white);
  margin-bottom: 0;
}

/* --- Buttons --- */
.btn {
  display: inline-block;
  font-family: var(--font-ui);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 0.75rem 1.75rem;
  border: 2px solid var(--color-olive);
  text-align: center;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

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

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

.btn--outline {
  background-color: transparent;
  color: var(--color-olive);
  border-color: var(--color-olive);
}

.btn--outline:hover {
  background-color: var(--color-olive);
  color: var(--color-white);
}

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

.btn--white:hover {
  background-color: transparent;
  color: var(--color-white);
  border-color: var(--color-white);
}

.btn--hero-outline {
  background-color: transparent;
  color: var(--color-white);
  border-color: var(--color-white);
}

.btn--hero-outline:hover {
  background-color: var(--color-white);
  color: var(--color-olive);
}

/* --- Two Column Layout --- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.two-col--text-right .two-col__image {
  order: -1;
}

.two-col__image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* --- Full-bleed two-column (image + text side by side) --- */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 450px;
}

.split-section__image {
  background-size: cover;
  background-position: center;
  min-height: 400px;
}

.split-section__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 3rem 3.5rem;
}

.split-section__content h2 {
  margin-bottom: 1rem;
}

.split-section__content p:last-of-type {
  margin-bottom: 0;
}

/* --- Service Cards --- */
.service-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
}

.service-card {
  background: var(--color-white);
  border: 1px solid rgba(0,0,0,0.08);
  overflow: hidden;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.service-card:hover {
  box-shadow: 0 6px 24px rgba(0,0,0,0.1);
  transform: translateY(-2px);
}

.service-card__image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.service-card__body {
  padding: 1.5rem;
}

.service-card__title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--color-olive);
  margin-bottom: 0.5rem;
}

.service-card__text {
  font-size: 0.9375rem;
  color: var(--color-taupe);
  margin-bottom: 1rem;
}

.service-card__link {
  font-family: var(--font-ui);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-sage);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* --- Checklist --- */
.checklist {
  list-style: none;
  padding: 0;
  max-width: 800px;
}

.checklist li {
  margin-bottom: 1.125rem;
  line-height: 1.65;
}

.checklist__label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
  -webkit-user-select: none;
  user-select: none;
}

.checklist__input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}

.checklist__box {
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  border: 2px solid var(--color-sage);
  border-radius: 3px;
  margin-top: 0.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.checklist__box::after {
  content: '';
  display: block;
  width: 0.7rem;
  height: 0.7rem;
  background-color: transparent;
  border-radius: 1px;
  transition: background-color 0.2s ease;
}

.checklist__input:checked ~ .checklist__box {
  border-color: var(--color-forest);
}

.checklist__input:checked ~ .checklist__box::after {
  background-color: var(--color-forest);
}

.checklist__input:checked ~ .checklist__text {
  opacity: 0.7;
  text-decoration: line-through;
}

.checklist__input:focus-visible ~ .checklist__box {
  outline: 2px solid var(--color-sage);
  outline-offset: 2px;
}

.checklist__text {
  flex: 1;
}

/* --- FAQ Accordion --- */
.faq-item {
  border-bottom: 1px solid var(--color-border);
  padding: 1.25rem 0;
}

.faq-item:first-child {
  border-top: 1px solid var(--color-border);
}

.faq-item__question {
  font-family: var(--font-heading);
  font-size: 1.1875rem;
  font-weight: 400;
  color: var(--color-olive);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0;
  user-select: none;
}

.faq-item__question::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--color-taupe);
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 1rem;
}

.faq-item.is-open .faq-item__question::after {
  content: '−';
}

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding-top: 0;
}

.faq-item.is-open .faq-item__answer {
  max-height: 600px;
  padding-top: 1rem;
}

/* --- Quick Links Row --- */
.quick-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  text-align: center;
}

.quick-link {
  display: block;
  padding: 2.5rem 1.5rem;
  background: var(--color-white);
  border: 1px solid rgba(0,0,0,0.08);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  text-decoration: none;
}

.quick-link:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  transform: translateY(-2px);
}

.quick-link__title {
  font-family: var(--font-heading);
  font-size: 1.375rem;
  color: var(--color-olive);
  margin-bottom: 0.5rem;
}

.quick-link__text {
  font-size: 0.9375rem;
  color: var(--color-taupe);
  margin-bottom: 0;
}

/* --- About Intro --- */
.about-intro {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  align-items: start;
}

.about-intro__image img {
  width: 100%;
  height: auto;
}

/* --- Sidebar Layout --- */
.content-with-sidebar {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 3rem;
  align-items: start;
}

.sidebar {
  position: sticky;
  top: 140px;
}

.sidebar__logo {
  max-width: 200px;
  margin: 0 auto 1.5rem;
}

.sidebar__contact {
  text-align: center;
  margin-bottom: 1.5rem;
}

/* --- SimplePractice Widget Area --- */
/* Clean widget styling - no dashed borders or branding text */

/* --- Contact Info Block --- */
.contact-info {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
}

.contact-info__item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-ui);
  font-size: 0.9375rem;
}

/* --- Footer --- */
.site-footer {
  background-color: var(--color-cream);
  color: var(--color-body-text);
  padding: 3rem 0 0;
}

.footer__badge-row {
  background-color: var(--color-cream);
  padding: 1rem 0;
  margin-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8125rem;
}

.footer__badge-row,
.footer__badge-row a,
.footer__badge-row span {
  color: var(--color-olive);
  opacity: 1;
}

.footer__badge-row .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer__badge-row img {
  height: 24px;
  width: auto;
}

.site-footer a {
  color: var(--color-olive);
  opacity: 1;
  transition: opacity 0.25s ease;
}

.site-footer a:hover {
  opacity: 0.7;
}

.footer__top {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer__col h4 {
  color: var(--color-olive);
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.footer__col ul {
  list-style: none;
  padding: 0;
}

.footer__col li {
  margin-bottom: 0.5rem;
  font-size: 0.9375rem;
}

.footer__social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
}

.footer__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: 1px solid var(--color-border);
  border-radius: 50%;
  transition: background 0.25s ease, border-color 0.25s ease;
}

.footer__social a:hover {
  background-color: rgba(100,103,86,0.15);
  border-color: var(--color-olive);
}

.footer__social svg {
  width: 14px;
  height: 14px;
  fill: var(--color-olive);
}

.footer__bottom {
  border-top: 1px solid var(--color-border);
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8125rem;
  opacity: 0.7;
}

.footer__bottom a {
  margin-left: 1rem;
}

/* --- Blog Cards --- */
.blog-grid {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.blog-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 6px;
  padding: 2rem;
  transition: box-shadow 0.25s ease;
}

.blog-card:hover {
  box-shadow: 0 4px 16px rgba(100,103,86,0.12);
}

.blog-card h3 {
  font-family: var(--font-heading);
  font-size: 1.375rem;
  margin-bottom: 0.5rem;
}

.blog-card h3 a {
  color: var(--color-body-text);
  text-decoration: none;
}

.blog-card h3 a:hover {
  color: var(--color-sage);
}

.blog-card__meta {
  font-family: var(--font-ui);
  font-size: 0.8125rem;
  color: var(--color-taupe);
  margin-bottom: 1rem;
}

.blog-card__read-more {
  display: inline-block;
  margin-top: 1rem;
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--color-sage);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.blog-card__read-more:hover {
  color: var(--color-olive);
}

/* --- Breadcrumbs --- */
.breadcrumbs {
  font-family: var(--font-ui);
  font-size: 0.8125rem;
  color: var(--color-taupe);
  padding: 0.75rem 0;
}

.breadcrumbs a {
  color: var(--color-taupe);
}

.breadcrumbs a:hover {
  color: var(--color-sage);
}

.breadcrumbs span {
  margin: 0 0.4rem;
  opacity: 0.5;
}

/* --- Content Area (inner pages) --- */
.content-area h2 {
  margin-top: 2rem;
}

.content-area h3 {
  margin-top: 1.5rem;
}

.content-area ul,
.content-area ol {
  margin-bottom: 1.5rem;
}

.content-area a {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.content-area a:hover {
  color: var(--color-sage);
}

.content-area blockquote {
  border-left: 3px solid var(--color-sage);
  padding-left: 1.25rem;
  margin: 1.5rem 0;
  color: var(--color-taupe);
  font-style: italic;
}

/* --- Blog Cards --- */
.blog-grid {
  display: grid;
  gap: 2rem;
}

.blog-card {
  background: var(--color-white);
  border: 1px solid rgba(0,0,0,0.08);
  border-left: 4px solid var(--color-sage);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.blog-card:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  transform: translateY(-2px);
}

.blog-card__body {
  padding: 2rem;
}

.blog-card__date {
  font-family: var(--font-ui);
  font-size: 0.8125rem;
  color: var(--color-taupe);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.blog-card__title {
  font-family: var(--font-heading);
  font-size: 1.375rem;
  font-weight: 400;
  color: var(--color-olive);
  margin: 0.5rem 0 0.75rem;
}

.blog-card__title a {
  color: inherit;
  text-decoration: none;
}

.blog-card__title a:hover {
  color: var(--color-sage);
}

.blog-card__excerpt {
  font-size: 0.9375rem;
  color: var(--color-body-text);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.blog-card__link {
  font-family: var(--font-ui);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-sage);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  text-decoration: none;
}

.blog-card__link:hover {
  color: var(--color-olive);
}

/* --- Utility --- */
.text-center { text-align: center; }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

/* --- Responsive --- */
@media (max-width: 1024px) {
  .site-logo img {
    height: 80px;
  }

  .main-nav__list {
    gap: 1rem;
  }

  .main-nav__link {
    font-size: 0.8125rem;
  }

  .split-section {
    grid-template-columns: 1fr;
  }

  .split-section__image {
    min-height: 300px;
  }

  .split-section__content {
    padding: 2.5rem 1.5rem;
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 2.5rem 0;
  }

  .top-bar {
    display: none;
  }

  .site-header .container {
    position: relative;
  }

  .site-logo {
    margin: 0 auto;
  }

  .site-logo img {
    height: 70px;
  }

  .nav-toggle {
    display: block;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
  }

  .main-nav {
    flex-wrap: wrap;
    justify-content: center;
  }

  .main-nav__list {
    display: none;
    flex-direction: column;
    width: 100%;
    background: var(--color-white);
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
    padding: 1rem;
    gap: 0;
    order: 3;
  }

  .main-nav__list.is-open {
    display: flex;
  }

  .main-nav__list {
    background: var(--color-cream);
  }

  .main-nav__link {
    padding: 0.75rem 0;
    display: block;
    border-bottom: 1px solid rgba(0,0,0,0.05);
  }

  .main-nav__dropdown {
    position: static;
    box-shadow: none;
    border-top: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
    padding-left: 1rem;
    min-width: 0;
  }

  .main-nav__item.is-open .main-nav__dropdown {
    display: block;
  }

  .two-col,
  .about-intro,
  .content-with-sidebar,
  .split-section {
    grid-template-columns: 1fr;
  }

  .split-section__content {
    padding: 2rem 1.5rem;
  }

  .footer__top {
    grid-template-columns: 1fr;
  }

  .quick-links {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 320px;
  }

  .hero__tagline {
    font-size: 2rem;
  }

  h1 { font-size: 2rem; }
  h2 { font-size: 1.625rem; }
  h3 { font-size: 1.25rem; }

  .footer__bottom {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }
}
