/* =========================================================
   10th Ranger Regiment - Homepage (Forumify)
   File: themes/custom/homepage.css
   ========================================================= */

/* ===== TOKENS ===== */
:root {
  --green-950: #08110d;
  --green-900: #0b1a14;
  --green-850: #0e1d17;
  --green-800: #10241b;
  --green-750: #133025;
  --green-700: #173828;
  --green-650: #1b4230;
  --green-600: #1f4b36;

  --gold: #d4a017;
  --gold-glow: rgba(212, 160, 23, 0.12);
  --green-glow: rgba(33, 80, 58, 0.18);
  --blue: #2e3b4e;

  --text: #e9f0ec;
  --muted: #b9c6bf;

  --shadow: 0 14px 40px rgba(0, 0, 0, .38);
  --header-offset: 70px;

  /* Parallax glow anchors (updated by JS) */
  --glow-x: 50%;
  --glow-y: 50%;
}

/* ===== BASE / RESETS ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  background-color: var(--green-950);
  overscroll-behavior: none;
}

body {
  min-height: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  background: var(--green-950);
  color: var(--text);
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Inter, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overscroll-behavior: none;
}

/* Pin the header but keep DEFAULT theme styles (background) */
/* REMOVED border/shadow to fix the 'secondary line' issue */
body>header,
header:first-of-type,
.navbar {
  position: sticky;
  top: 0;
  z-index: 999;
  margin-bottom: 0 !important;
}

/* Force body to not have extra spacing from theme */
body {
  padding-top: 0 !important;
}

/* Attempt to hide the 'secondary line/bar' (likely breadcrumbs or subheader) */
.breadcrumb,
.breadcrumbs,
.page-header,
.subheader,
.secondary-nav,
.toolbar,
.page-content-header {
  display: none !important;
}

/* ===== UNIFIED PAGE CANVAS (FULL SCREEN BREAKOUT) ===== */
.page-glow {
  position: relative;
  /* Break out of parent container constraints */
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);

  overflow: hidden;
  /* prevents horizontal scrollbar from glow layers */
  background:
    /* Ambient gold glow at top (bleeds from hero) */
    radial-gradient(900px 500px at 50% 8%, rgba(212, 160, 23, 0.035), transparent 55%),
    /* Green atmosphere mid-page */
    radial-gradient(1100px 700px at 40% 40%, rgba(33, 80, 58, 0.08), transparent 50%),
    /* Deep continuous gradient */
    linear-gradient(180deg,
      var(--green-900) 0%,
      var(--green-800) 18%,
      var(--green-750) 32%,
      var(--green-800) 52%,
      var(--green-900) 72%,
      var(--green-950) 100%);
}

/* Noise texture removed for performance */
/* .page-glow::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: .025;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml, ... ");
  background-repeat: repeat;
} */

/* Ambient glow layer — GPU accelerated */
.glow-wrap {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  /* Soften the edges */
  opacity: 0.45;
  will-change: transform;
  /* Hint to browser for new layer */
}

/* Green Orb */
.glow-orb--1 {
  width: 900px;
  height: 900px;
  background: radial-gradient(circle, rgba(33, 80, 58, 0.25) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  margin-top: -450px;
  margin-left: -450px;
  /* Initial position centered */
}

/* Gold Orb */
.glow-orb--2 {
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(212, 160, 23, 0.15) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  margin-top: -350px;
  margin-left: -350px;
}

.forumify-container,
.forumify-content,
.container {
  padding: 0 !important;
  max-width: 100vw !important;
  /* Force containers to allow full width */
}

/* Fix vertical gaps without breaking horizontal centering */
main,
.responsive,
.forum-page-layout {
  padding-top: 0 !important;
  margin-top: 0 !important;
}

/* Full-bleed sections — using 100% width of the breakout parent */
section {
  position: relative;
  width: 100%;
  padding: 72px 0;
  z-index: 1;
}

/* Normal content width */
.wrap {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}

/* Wide content width */
.wrap--full {
  max-width: 1600px;
  margin: 0 auto;
  width: 100%;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  /* margin-top: calc(var(--header-offset) * -1); Removed to allow standard flow */
  min-height: 85vh;
  /* Adjusted since it no longer starts at very top */
  /* padding-top: var(--header-offset); Removed */
  display: flex;
  align-items: center;
  text-align: center;
  overflow: hidden;
  box-shadow: var(--shadow);
  background:
    linear-gradient(rgba(6, 14, 11, .55), rgba(6, 14, 11, .65)),
    url('https://10thrr.com/storage/media/2025/8db8e47ed465e3b34ba91e15a89f3269.jpg') 60% center / cover no-repeat;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(900px 500px at 25% 25%, rgba(33, 80, 58, .28), transparent 60%),
    radial-gradient(700px 400px at 75% 70%, rgba(26, 63, 46, .28), transparent 60%);
}

.hero .wrap {
  display: flex;
  justify-content: center;
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  width: 100%;
  transform: translateY(-12vh);
}

@media (max-width:768px) {
  .hero__content {
    transform: translateY(-6vh);
  }
}

.hero__logo {
  width: 110px;
  margin: 0 auto 14px;
  filter: drop-shadow(0 6px 16px rgba(0, 0, 0, .35));
}

.hero__title {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  line-height: 1.2;
  margin: .1rem 0 .25rem;
}

.hero__subtitle {
  margin: .55rem 0 2.2rem;
  color: var(--muted);
}

/* Stats */
.hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin: 0 auto 22px;
}

.stat {
  padding: 14px 22px;
  min-width: 220px;
  background: rgba(14, 30, 22, .55);
  border: 1px solid rgba(255, 255, 255, .09);
  border-radius: 40px;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}

.stat:hover {
  background: rgba(14, 30, 22, .7);
  box-shadow: 0 0 20px rgba(33, 80, 58, .30);
  transform: translateY(-3px);
}

.stat__value {
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 4px;
  font-weight: 800;
}

.count {
  font-size: 1.9rem;
  line-height: 1.35;
}

.suffix {
  font-size: 1.2rem;
  opacity: .9;
}

.stat__label {
  font-size: .9rem;
  color: var(--muted);
  line-height: 1.45;
  margin: 6px 0 0;
}

/* CTAs */
.hero__primary-cta {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.hero__secondary-ctas {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 12px;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 12px 22px;
  border-radius: 12px;
  font-weight: 700;
  text-decoration: none;
  transition: transform .2s ease, filter .2s ease, background .2s ease, box-shadow .2s ease;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .25);
}

.btn--solid {
  background: #2b7a4b;
  color: #fff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .25), 0 0 20px rgba(43, 122, 75, .12);
}

.btn--solid:hover {
  filter: brightness(1.12);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, .3), 0 0 30px rgba(43, 122, 75, .2);
}

.btn--outline {
  border: 2px solid #fff;
  background: transparent;
  color: #fff;
}

.btn--outline:hover {
  background: rgba(255, 255, 255, .1);
  transform: translateY(-3px);
}

/* Hero edge fade */
.hero__edge {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 120px;
  z-index: 1;
  background: linear-gradient(to bottom,
      rgba(11, 26, 20, 0) 0%,
      rgba(11, 26, 20, .7) 35%,
      var(--green-900) 100%);
}

/* ===== SECTIONS: FLOWING OVERLAYS ===== */
.mission {
  background: linear-gradient(180deg,
      rgba(8, 17, 13, 0.80) 0%,
      rgba(19, 48, 37, 0.30) 50%,
      rgba(19, 48, 37, 0.12) 100%);
  text-align: center;
  padding: 108px 0;
}

/* Ambient glow — right side, green tint */
/* .mission::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background: radial-gradient(550px 400px at 78% 30%, var(--green-glow), transparent 60%);
  opacity: .6;
  animation: glowPulse 10s ease-in-out infinite;
} */

.info {
  background: radial-gradient(ellipse 100% 70% at 50% 40%,
      rgba(27, 66, 48, 0.25) 0%,
      rgba(16, 36, 27, 0.15) 50%,
      transparent 80%);
  text-align: center;
  padding: 108px 0;
  position: relative;
  z-index: 1;
}

/* Ambient glow — center spotlight */
/* .info::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(450px 300px at 50% 25%, rgba(212, 160, 23, 0.04), transparent 55%),
    radial-gradient(700px 450px at 50% 50%, rgba(33, 80, 58, 0.10), transparent 50%);
  opacity: .7;
  animation: glowPulse 10s ease-in-out infinite 2.5s;
} */

.community {
  background: linear-gradient(180deg,
      rgba(19, 48, 37, 0.10) 0%,
      rgba(11, 26, 20, 0.40) 50%,
      rgba(11, 26, 20, 0.65) 100%);
  text-align: center;
  padding: 108px 0;
}

/* Ambient glow — left side */
/* .community::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(450px 350px at 18% 55%, rgba(33, 80, 58, 0.12), transparent 55%),
    radial-gradient(350px 250px at 82% 30%, rgba(212, 160, 23, 0.035), transparent 50%);
  opacity: .6;
  animation: glowPulse 10s ease-in-out infinite 5s;
} */

.cta {
  background: linear-gradient(180deg,
      rgba(11, 26, 20, 0.45) 0%,
      rgba(5, 13, 10, 0.80) 100%);
  text-align: center;
  padding: 108px 0;
}

/* Ambient glow — centered gold for CTA emphasis */
/* .cta::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(450px 300px at 50% 50%, rgba(212, 160, 23, 0.07), transparent 50%),
    radial-gradient(280px 180px at 50% 75%, rgba(43, 122, 75, 0.08), transparent 45%);
  opacity: .8;
  animation: glowPulse 10s ease-in-out infinite 7.5s;
} */

.mission h2,
.info h2,
.cta h2 {
  font-size: clamp(1.9rem, 3vw, 2.5rem);
  margin: 0 0 14px;
}

.mission p,
.info p,
.cta p {
  color: var(--muted);
  margin: 0 auto 18px;
  line-height: 1.65;
  max-width: 900px;
}

.mission__actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 10px;
}

/* ===== INFO GRID ===== */
.info-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(280px, 1fr));
  gap: 18px;
  align-items: stretch;
  margin-top: 22px;
}

/* Cards — depth via shadow and border, NO backdrop-filter */
.info-grid .card {
  background:
    linear-gradient(180deg,
      rgba(27, 66, 48, 0.50) 0%,
      rgba(27, 66, 48, 0.30) 100%);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 16px;
  padding: 22px 20px;
  box-shadow:
    var(--shadow),
    inset 0 1px 0 rgba(255, 255, 255, .06);
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  text-align: center;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

/* Subtle top edge glow on cards */
.info-grid .card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .12), transparent);
  border-radius: 1px;
  pointer-events: none;
}

/* Info Card Icons */
.info-grid .card h3 {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin: 0 0 10px;
  font-size: 1.05rem;
  font-weight: 700;
}

.info-grid .card h3 svg {
  width: 22px;
  height: 22px;
  fill: var(--gold);
  margin-bottom: 0;
  opacity: 0.9;
  filter: drop-shadow(0 2px 8px rgba(212, 160, 23, 0.25));
  transition: filter .3s ease;
}

.info-grid .card:hover h3 svg {
  filter: drop-shadow(0 2px 12px rgba(212, 160, 23, 0.45));
}

.info-grid .card p {
  margin: 0;
  line-height: 1.65;
}

/* Featured emphasis */
.info-grid .featured-card {
  box-shadow:
    0 16px 44px rgba(0, 0, 0, .42),
    0 0 30px rgba(33, 80, 58, .06),
    inset 0 1px 0 rgba(255, 255, 255, .08);
  border-color: rgba(255, 255, 255, .14);
}

/* Ribbon */
.info-grid .featured-card .card-ribbon {
  position: absolute;
  top: -14px;
  left: 50% !important;
  right: auto !important;
  transform: translateX(-50%) !important;
  background: var(--green-600);
  color: var(--text);
  font-size: .75rem;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 7px 7px 0 0;
  z-index: 2;
  white-space: nowrap;
}

/* ===== CTA BUTTON COLORS ===== */
.cta .wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.btn--gold {
  background: var(--gold);
  color: #221e13;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .25), 0 0 20px rgba(212, 160, 23, .12);
}

.btn--blue {
  background: var(--blue);
  color: #fff;
}

.btn--gold:hover,
.btn--blue:hover {
  transform: translateY(-3px);
  filter: brightness(1.08);
}

.btn--gold:hover {
  box-shadow: 0 12px 32px rgba(0, 0, 0, .3), 0 0 35px rgba(212, 160, 23, .2);
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--green-950);
  color: var(--muted);
  text-align: center;
}

/* ===== FADE-IN (scale pop) ===== */
.fade-in {
  opacity: 0;
  transform: translateY(18px) scale(0.97);
  transition: opacity .55s cubic-bezier(0.22, 1, 0.36, 1),
    transform .55s cubic-bezier(0.22, 1, 0.36, 1);
}

.fade-in.appear {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* ===== CARD HOVER ===== */
.info-grid .card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 18px 44px rgba(0, 0, 0, 0.45),
    0 0 25px rgba(33, 80, 58, .10);
  border-color: rgba(255, 255, 255, 0.16);
}

/* ===== RESPONSIVE ===== */
@media (max-width:1024px) {
  .wrap {
    max-width: 920px;
  }

  .info-grid {
    grid-template-columns: repeat(2, minmax(260px, 1fr));
  }
}

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

  .wrap {
    padding: 0 18px;
  }

  .wrap--full {
    padding: 0 18px;
  }

  .hero__secondary-ctas {
    gap: 10px;
  }
}

@media (max-width:640px) {
  .hero__logo {
    width: 90px;
  }

  .stat {
    width: 100%;
  }

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

/* ================================
   HARD FIX: INFO CARDS ALWAYS EVEN
   ================================ */

.info .wrap,
.info .wrap--full {
  max-width: 1400px !important;
  margin: 0 auto !important;
}

.info .info-grid,
.info .info-row {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 18px !important;
  align-items: stretch !important;
  justify-items: stretch !important;
}

.info .card,
.info .info-grid>article,
.info .info-row>article {
  width: 100% !important;
  max-width: none !important;
  min-width: 0 !important;
  margin: 0 !important;
  min-height: 0 !important;
  padding: 22px 20px !important;
  display: flex !important;
  flex-direction: column !important;
}

.info .card-left,
.info .card-right,
.info .card-featured,
.info .featured-card {
  width: 100% !important;
  max-width: none !important;
  min-height: 0 !important;
  margin: 0 !important;
  padding: 22px 20px !important;
}

.info .card-ribbon {
  position: absolute !important;
  top: -14px !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  white-space: nowrap !important;
  z-index: 2 !important;
}

@media (max-width: 1024px) {

  .info .info-grid,
  .info .info-row {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 640px) {

  .info .info-grid,
  .info .info-row {
    grid-template-columns: 1fr !important;
  }
}

/* =========================================
   Animations
   ========================================= */

/* Float animation removed */
/* @keyframes float { ... } */

.animate-float {
  /* animation: float 6s ease-in-out infinite; */
}

/* Slow ambient pulse removed for performance */
/* @keyframes glowPulse { ... } */

/* Community Section Layout */
.community h2 {
  font-size: clamp(1.9rem, 3vw, 2.5rem);
  margin: 0 0 52px;
}

.community-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  align-items: start;
}

.community-col {
  position: relative;
  background:
    linear-gradient(180deg,
      rgba(14, 30, 22, 0.45) 0%,
      rgba(14, 30, 22, 0.25) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 24px;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 16px;
  height: 100%;
  box-shadow:
    0 10px 30px rgba(0, 0, 0, .28),
    inset 0 1px 0 rgba(255, 255, 255, .05);
  transition: border-color .3s ease, box-shadow .3s ease;
}

/* Top edge glow on community cards */
.community-col::before {
  content: "";
  position: absolute;
  top: 0;
  left: 15%;
  right: 15%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .10), transparent);
  border-radius: 1px;
  pointer-events: none;
}

.community-col:hover {
  border-color: rgba(255, 255, 255, .12);
  box-shadow:
    0 14px 40px rgba(0, 0, 0, .32),
    0 0 16px rgba(33, 80, 58, .06),
    inset 0 1px 0 rgba(255, 255, 255, .06);
}

/* Headers with Icons */
.community-col h3 {
  margin: 0 0 8px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 1.35rem;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
}

.community-col h3 svg {
  width: 24px;
  height: 24px;
  opacity: 0.8;
  fill: var(--gold);
  filter: drop-shadow(0 2px 6px rgba(212, 160, 23, 0.2));
}

/* SMOOTH ITEM CARDS */
.community-col ul,
.community-col .widget-list,
.community-col .item-list,
.open-positions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
}

/* FORCE WIDGET TRANSPARENCY */
.community-col .forum-block,
.community-col .forum-block-body,
.community-col .card,
.community-col .widget-content,
.community-col .box {
  background: transparent !important;
  box-shadow: none !important;
  border: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

/* Hide default widget headers since we have our own */
.community-col .forum-block-header,
.community-col .card-header,
.community-col h4 {
  display: none !important;
}

/* The actual items */
.community-col li,
.community-col .widget-item,
.community-col .item,
.open-positions li {
  background: rgba(20, 42, 32, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 10px;
  padding: 12px 16px;
  transition: transform 0.2s ease, background 0.2s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Hover effect for items */
.community-col li:hover,
.community-col .widget-item:hover,
.community-col .item:hover,
.open-positions li:hover {
  background: rgba(20, 42, 32, 0.6);
  transform: translateX(4px);
}

/* Remove internal borders from widgets */
.community-col *,
.community-col *::before,
.community-col *::after {
  border-color: transparent !important;
}

/* Restore our specific border for items */
.community-col li,
.community-col .widget-item,
.community-col .item,
.open-positions li {
  border: 1px solid rgba(255, 255, 255, 0.04) !important;
}

/* ===== RECENT POSTS (forum-topics) ===== */
.community-col .forum-topics {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 0;
  margin: 0;
  background: transparent !important;
  box-shadow: none !important;
  border: none !important;
}

.community-col .forum-topics hr {
  display: none;
}

.community-col .forum-topics .forum-topic {
  background: rgba(20, 42, 32, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.04) !important;
  border-radius: 10px;
  padding: 12px 16px;
  margin-bottom: 8px;
  text-decoration: none;
  color: var(--text);
  transition: transform 0.2s ease, background 0.2s ease;
}

.community-col .forum-topics .forum-topic:last-child {
  margin-bottom: 0;
}

.community-col .forum-topics .forum-topic:hover {
  background: rgba(20, 42, 32, 0.6);
  transform: translateX(4px);
}

.community-col .forum-topics .forum-topic p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.4;
}

.community-col .forum-topics .forum-topic .date {
  font-size: 0.75rem;
  color: var(--muted);
  margin-top: 4px;
}

.community-col .read-more {
  color: var(--gold);
  font-size: 0.85rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 12px;
  opacity: .8;
  transition: opacity .2s ease;
}

.community-col .read-more:hover {
  opacity: 1;
}

/* Open Positions Specifics */
.open-positions .role {
  font-weight: 600;
  color: var(--text);
  font-size: 0.95rem;
}

.open-positions .status {
  font-size: 0.75rem;
  padding: 3px 10px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.08);
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.open-positions .status.open {
  background: rgba(46, 204, 113, 0.15);
  color: #2ecc71;
  box-shadow: 0 0 12px rgba(46, 204, 113, 0.12);
}

.open-positions .status.closed {
  background: rgba(231, 76, 60, 0.15);
  color: #e74c3c;
}

@media (max-width: 1024px) {
  .community-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================================
   Visual Polish: Separators
   ========================================= */

.section-separator {
  height: 2px;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  border: none;
  position: relative;
  z-index: 2;
  pointer-events: none;

  background:
    radial-gradient(ellipse at center,
      rgba(212, 160, 23, 0.30) 0%,
      rgba(212, 160, 23, 0.06) 40%,
      transparent 60%),
    radial-gradient(ellipse at center,
      rgba(33, 80, 58, 0.18) 0%,
      transparent 45%);

  filter: blur(1px);
  opacity: 0.7;
}

/* Wider ambient halo behind separator */
.section-separator::before {
  content: "";
  position: absolute;
  top: -18px;
  left: 12%;
  right: 12%;
  height: 36px;
  background: radial-gradient(ellipse at center,
      rgba(212, 160, 23, 0.03) 0%,
      transparent 65%);
  pointer-events: none;
}