/* ============================================================
   NENSW Hunting Club — Modern Redesign
   Family-friendly, nature-inspired theme
   ============================================================ */

/* --- Custom Properties ------------------------------------ */
:root {
  --forest:    #1b4332;
  --emerald:   #2d6a4f;
  --meadow:    #40916c;
  --fern:      #74c69d;
  --mint:      #d8f3dc;
  --sky:       #edf7f1;
  --gold:      #c9a84c;
  --amber:     #f4d58d;
  --cream:     #fdfcf7;
  --white:     #ffffff;
  --charcoal:  #1a2421;
  --slate:     #3d5a50;
  --mist:      #7a9e94;
  --border:    #cde2d8;

  --radius-sm: 8px;
  --radius:    14px;
  --radius-lg: 24px;

  --shadow-sm: 0 2px 8px rgba(27,67,50,.08);
  --shadow:    0 4px 20px rgba(27,67,50,.12);
  --shadow-lg: 0 8px 40px rgba(27,67,50,.18);

  --font-body: system-ui, -apple-system, "Segoe UI", Helvetica, Arial, sans-serif;
  --font-head: Georgia, "Times New Roman", serif;

  --max-w: 1100px;
  --nav-h: 68px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--charcoal);
  background: var(--cream);
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* --- Typography ------------------------------------------- */
h1, h2, h3, h4 {
  font-family: var(--font-head);
  line-height: 1.25;
  font-weight: normal;
}

h1 { font-size: clamp(2rem, 5vw, 3rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2rem); }
h3 { font-size: 1.2rem; }

p { max-width: 65ch; }

.lead {
  font-size: 1.1rem;
  color: var(--slate);
  line-height: 1.8;
}

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

.section { padding: 4.5rem 0; }
.section--alt { background: var(--sky); }
.section--dark { background: var(--forest); color: var(--white); }

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.eyebrow {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .6rem;
}

.section-header h2 {
  color: var(--forest);
  margin-bottom: .75rem;
}

.section--dark .section-header h2 { color: var(--white); }

.section-header p {
  margin: 0 auto;
  color: var(--slate);
  font-size: 1.05rem;
}

.section--dark .section-header p { color: var(--fern); }

/* --- Buttons ---------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .75rem 1.75rem;
  border-radius: 50px;
  font-size: .95rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform .15s, box-shadow .15s, background .15s;
  border: 2px solid transparent;
  text-decoration: none;
  font-family: var(--font-body);
}

.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--gold);
  color: var(--forest);
  border-color: var(--gold);
}

.btn-primary:hover { background: #b8952e; border-color: #b8952e; }

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.55);
}

.btn-outline:hover {
  background: rgba(255,255,255,.12);
  border-color: var(--white);
}

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

.btn-green:hover { background: var(--forest); border-color: var(--forest); }

.btn-ghost {
  background: transparent;
  color: var(--emerald);
  border-color: var(--border);
}

.btn-ghost:hover { background: var(--sky); border-color: var(--meadow); }

/* --- Navigation ------------------------------------------- */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 12px rgba(27,67,50,.06);
  height: var(--nav-h);
  display: flex;
  align-items: center;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.25rem;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: .8rem;
  text-decoration: none;
}

.nav-logo {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: contain;
  border: 2px solid var(--border);
  background: var(--white);
}

.nav-brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}

.nav-brand-text strong {
  font-family: var(--font-head);
  font-size: 1rem;
  color: var(--forest);
  font-weight: normal;
}

.nav-brand-text span {
  font-size: .7rem;
  color: var(--mist);
  letter-spacing: .04em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: .2rem;
}

.nav-links a {
  padding: .5rem .9rem;
  border-radius: 50px;
  font-size: .88rem;
  font-weight: 500;
  color: var(--slate);
  transition: background .15s, color .15s;
  white-space: nowrap;
}

.nav-links a:hover {
  background: var(--sky);
  color: var(--forest);
}

.nav-links a.active {
  background: var(--forest);
  color: var(--white);
}

/* --- Hero ------------------------------------------------- */
.hero {
  background: linear-gradient(150deg, var(--forest) 0%, var(--emerald) 55%, #3a7d5a 100%);
  color: var(--white);
  padding: 5.5rem 0 4.5rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 80%, rgba(201,168,76,.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(116,198,157,.1) 0%, transparent 40%);
  pointer-events: none;
}

.hero-content { position: relative; max-width: 700px; }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(201,168,76,.2);
  border: 1px solid rgba(201,168,76,.4);
  color: var(--amber);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .3rem .85rem;
  border-radius: 50px;
  margin-bottom: 1.4rem;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 1.2rem;
  text-shadow: 0 2px 8px rgba(0,0,0,.2);
}

.hero h1 em {
  font-style: normal;
  color: var(--amber);
}

.hero .lead {
  color: rgba(255,255,255,.85);
  margin-bottom: 2.25rem;
  max-width: 56ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
  margin-top: 3rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  color: rgba(255,255,255,.85);
  font-size: .78rem;
  padding: .28rem .75rem;
  border-radius: 50px;
}

/* --- Page Hero (inner pages) ------------------------------ */
.page-hero {
  background: linear-gradient(135deg, var(--forest) 0%, var(--emerald) 100%);
  color: var(--white);
  padding: 3rem 0;
  text-align: center;
}

.page-hero h1 {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  margin-bottom: .5rem;
}

.page-hero p {
  color: rgba(255,255,255,.8);
  font-size: 1rem;
  margin: 0 auto;
  text-align: center;
  max-width: 52ch;
}

/* --- Cards ------------------------------------------------ */
.card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: transform .2s, box-shadow .2s;
}

.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }

.card-body { padding: 1.75rem; }

.card-icon {
  width: 50px;
  height: 50px;
  background: var(--mint);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.1rem;
}

.card h3 { color: var(--forest); margin-bottom: .6rem; }
.card p  { color: var(--slate); }

/* --- Grids ------------------------------------------------ */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }

/* --- Stat Strip ------------------------------------------- */
.stat-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.stat-item {
  padding: 2rem 1.5rem;
  text-align: center;
  border-right: 1px solid var(--border);
}

.stat-item:last-child { border-right: none; }

.stat-item .num {
  font-family: var(--font-head);
  font-size: 2.4rem;
  color: var(--forest);
  line-height: 1;
  display: block;
  margin-bottom: .3rem;
}

.stat-item .lbl {
  font-size: .82rem;
  color: var(--mist);
  font-weight: 500;
}

/* --- Area Cards ------------------------------------------- */
.area-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.area-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem 1.25rem;
  text-align: center;
  transition: border-color .2s, box-shadow .2s, transform .2s;
}

.area-card:hover {
  border-color: var(--meadow);
  box-shadow: var(--shadow-sm);
  transform: translateY(-3px);
}

.area-card .area-icon {
  font-size: 2rem;
  display: block;
  margin-bottom: .75rem;
}

.area-card h3 { font-size: .95rem; color: var(--forest); margin-bottom: .3rem; }
.area-card p  { font-size: .8rem; color: var(--mist); }

/* --- CTA Banner ------------------------------------------- */
.cta-banner {
  background: linear-gradient(135deg, var(--gold) 0%, #b8952e 100%);
  border-radius: var(--radius-lg);
  padding: 3.5rem 2.5rem;
  text-align: center;
  color: var(--forest);
}

.cta-banner h2 { color: var(--forest); margin-bottom: .75rem; }

.cta-banner p {
  color: rgba(27,67,50,.7);
  margin: 0 auto 2rem;
  font-size: 1.05rem;
}

/* --- Contact Cards ---------------------------------------- */
.contact-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: .45rem;
  transition: transform .2s, box-shadow .2s;
}

.contact-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }

.contact-card .role {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
}

.contact-card .name {
  font-family: var(--font-head);
  font-size: 1.25rem;
  color: var(--forest);
  margin-bottom: .25rem;
}

.contact-card .contact-line {
  display: flex;
  align-items: center;
  gap: .5rem;
  color: var(--slate);
  font-size: .88rem;
}

.contact-card .contact-line a {
  color: var(--emerald);
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.contact-card .placeholder-text {
  font-size: .85rem;
  color: var(--mist);
  font-style: italic;
}

/* --- Venue Cards ------------------------------------------ */
.venue-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.4rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  transition: transform .2s, box-shadow .2s;
}

.venue-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }

.venue-icon {
  width: 44px;
  height: 44px;
  background: var(--mint);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  flex-shrink: 0;
}

.venue-card h3 { font-size: .95rem; color: var(--forest); margin-bottom: .3rem; }
.venue-card p  { font-size: .85rem; color: var(--slate); line-height: 1.5; }
.venue-card a  { color: var(--emerald); font-weight: 600; font-size: .88rem; text-decoration: underline; text-underline-offset: 2px; }

/* --- Info / Warning Boxes --------------------------------- */
.info-box {
  background: var(--mint);
  border: 1px solid var(--fern);
  border-left: 4px solid var(--meadow);
  border-radius: var(--radius-sm);
  padding: 1.1rem 1.35rem;
  display: flex;
  gap: .75rem;
  align-items: flex-start;
}

.info-box .icon { font-size: 1.15rem; flex-shrink: 0; margin-top: .15rem; }
.info-box p  { color: var(--slate); font-size: .9rem; max-width: none; }
.info-box p strong { color: var(--forest); }
.info-box a  { color: var(--meadow); text-decoration: underline; text-underline-offset: 2px; }

.warning-box {
  background: #fff9e6;
  border: 1px solid #e9c46a;
  border-left: 4px solid var(--gold);
  border-radius: var(--radius-sm);
  padding: 1.1rem 1.35rem;
  display: flex;
  gap: .75rem;
  align-items: flex-start;
}

.warning-box .icon { font-size: 1.15rem; flex-shrink: 0; }
.warning-box p { color: #5a4a1a; font-size: .9rem; max-width: none; }

/* --- Steps ------------------------------------------------ */
.steps { display: flex; flex-direction: column; gap: 1rem; }

.step {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.4rem 1.4rem 1.4rem 1.2rem;
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
  box-shadow: var(--shadow-sm);
}

.step-num {
  width: 36px;
  height: 36px;
  background: var(--forest);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: .95rem;
  flex-shrink: 0;
}

.step-body h4 { color: var(--forest); margin-bottom: .3rem; font-family: var(--font-head); font-size: 1rem; }
.step-body p  { font-size: .88rem; color: var(--slate); max-width: none; line-height: 1.65; }
.step-body a  { color: var(--meadow); text-decoration: underline; text-underline-offset: 2px; }

/* --- Genuine Reason Cards --------------------------------- */
.reason-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.reason-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.4rem;
  box-shadow: var(--shadow-sm);
}

.reason-card.featured {
  border-color: var(--meadow);
  background: var(--sky);
}

.reason-num {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: .4rem;
}

.reason-card h4 { font-size: 1rem; color: var(--forest); margin-bottom: .45rem; }
.reason-card p  { font-size: .85rem; color: var(--slate); line-height: 1.65; max-width: none; }

/* --- Licence Category Cards ------------------------------- */
.licence-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}

.licence-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem 1rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: border-color .2s, transform .2s;
}

.licence-card:hover { border-color: var(--meadow); transform: translateY(-3px); }

.licence-badge {
  width: 46px;
  height: 46px;
  background: var(--forest);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 1.25rem;
  margin: 0 auto .85rem;
}

.licence-card h4 { font-size: .88rem; color: var(--forest); margin-bottom: .4rem; }
.licence-card p  { font-size: .78rem; color: var(--slate); line-height: 1.5; }

/* --- Tables ----------------------------------------------- */
.table-wrap {
  overflow-x: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}

table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  font-size: .88rem;
}

thead { background: var(--forest); color: var(--white); }

thead th {
  padding: .9rem 1rem;
  text-align: left;
  font-weight: 600;
  font-size: .75rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  font-family: var(--font-body);
}

tbody tr {
  border-bottom: 1px solid var(--border);
  transition: background .1s;
}

tbody tr:last-child { border-bottom: none; }
tbody tr:hover { background: var(--sky); }

tbody td {
  padding: .85rem 1rem;
  vertical-align: middle;
  color: var(--slate);
}

tbody td:first-child {
  font-weight: 600;
  color: var(--charcoal);
  white-space: nowrap;
}

/* --- Badges ----------------------------------------------- */
.badge {
  display: inline-flex;
  align-items: center;
  gap: .25rem;
  padding: .2rem .65rem;
  border-radius: 50px;
  font-size: .73rem;
  font-weight: 600;
  white-space: nowrap;
}

.badge + .badge { margin-left: .25rem; }

.badge-rimfire  { background: #d4edda; color: #155724; }
.badge-centre   { background: #d1ecf1; color: #0c5460; }
.badge-clay     { background: #ffeaa7; color: #6c5700; }
.badge-pistol   { background: #e2d9f3; color: #4a2c7a; }
.badge-agm      { background: #f8d7da; color: #721c24; }

.cost {
  display: inline-flex;
  align-items: center;
  background: var(--mint);
  color: var(--forest);
  font-size: .76rem;
  font-weight: 700;
  padding: .2rem .6rem;
  border-radius: 50px;
}

.note { font-size: .78rem; color: var(--mist); font-style: italic; }

/* --- Address Box ------------------------------------------ */
.address-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
}

.address-box address {
  font-style: normal;
  line-height: 2;
  color: var(--slate);
}

/* --- Checklist -------------------------------------------- */
.checklist { display: flex; flex-direction: column; gap: .6rem; }

.checklist li {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  font-size: .9rem;
  color: var(--slate);
}

.checklist li::before {
  content: "✓";
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  background: var(--mint);
  color: var(--emerald);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .8rem;
  font-weight: 700;
  margin-top: .1rem;
}

/* --- Content blocks within sections ----------------------- */
.content-block {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
}

.content-block h3 {
  color: var(--forest);
  margin-bottom: .75rem;
  padding-bottom: .65rem;
  border-bottom: 1px solid var(--border);
}

.content-block p { color: var(--slate); font-size: .92rem; margin-bottom: .75rem; }
.content-block p:last-child { margin-bottom: 0; }
.content-block a { color: var(--meadow); text-decoration: underline; text-underline-offset: 2px; }

/* --- Footer ----------------------------------------------- */
.site-footer {
  background: var(--charcoal);
  color: rgba(255,255,255,.65);
  padding: 3.5rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.7fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: 1rem;
}

.footer-logo {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,.2);
  background: rgba(255,255,255,.05);
}

.footer-brand strong {
  font-family: var(--font-head);
  font-size: .95rem;
  color: var(--white);
  font-weight: normal;
  line-height: 1.3;
}

.footer-col h4 {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--fern);
  margin-bottom: 1rem;
}

.footer-col ul li { margin-bottom: .5rem; }

.footer-col ul a {
  font-size: .88rem;
  color: rgba(255,255,255,.55);
  transition: color .15s;
}

.footer-col ul a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: .8rem;
}

.footer-bottom a { color: var(--fern); }
.footer-bottom a:hover { text-decoration: underline; }

/* --- Utilities -------------------------------------------- */
.text-center { text-align: center; }
.text-forest { color: var(--forest); }
.mb-1  { margin-bottom: 1rem; }
.mb-2  { margin-bottom: 2rem; }
.mb-3  { margin-bottom: 3rem; }
.mt-1  { margin-top: 1rem; }
.mt-2  { margin-top: 2rem; }
.mt-3  { margin-top: 3rem; }
.gap-1 { gap: 1rem; }

.divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 2.5rem 0;
}

.disclaimer {
  font-size: .8rem;
  color: var(--mist);
  line-height: 1.6;
  max-width: none;
}

/* --- Responsive ------------------------------------------- */
@media (max-width: 900px) {
  .grid-3     { grid-template-columns: 1fr 1fr; }
  .grid-4     { grid-template-columns: 1fr 1fr; }
  .area-grid  { grid-template-columns: 1fr 1fr; }
  .reason-grid { grid-template-columns: 1fr; }
  .licence-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid  { grid-template-columns: 1fr 1fr; }

  .stat-strip {
    grid-template-columns: 1fr 1fr;
  }

  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3) { border-top: 1px solid var(--border); }
  .stat-item:nth-child(4) { border-top: 1px solid var(--border); border-right: none; }
}

@media (max-width: 640px) {
  :root { --nav-h: 60px; }

  .section { padding: 2.75rem 0; }

  .nav-brand-text { display: none; }
  .nav-links a { padding: .4rem .6rem; font-size: .82rem; }

  .hero { padding: 3rem 0 2.5rem; }

  .grid-3, .grid-2, .grid-4,
  .area-grid, .licence-grid,
  .reason-grid { grid-template-columns: 1fr; }

  .stat-strip { grid-template-columns: 1fr 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .cta-banner { padding: 2.25rem 1.5rem; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
}
