/* ============================================================
   CRCGS — JOURNAL PAGE — journal.css
   Prefix: crcgs-jrn-
   Variables + reset are SCOPED to .crcgs-jrn-root (not :root),
   so this file cannot leak into / collide with any other page,
   and no other stylesheet can affect this page either.
   Brand colours match styles.css / events.css / about.css exactly.
   ============================================================ */

/* ── SCOPED RESET ─────────────────────────────────────────── */
.crcgs-jrn-root *,
.crcgs-jrn-root *::before,
.crcgs-jrn-root *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* ── SCOPED DESIGN TOKENS (BRAND PALETTE) ───────────────────── */
.crcgs-jrn-root {
  --jrn-navy:        #1D3461;
  --jrn-navy-deep:   #111F3D;
  --jrn-navy-mid:    #243a6e;
  --jrn-gold:        #D4A84A;
  --jrn-gold-light:  #E8C97A;
  --jrn-gold-pale:   #f5e8c4;
  --jrn-orange:      #C4572D;
  --jrn-cream:       #F5EDE0;
  --jrn-warm-white:  #FDFAF5;
  --jrn-pearl:       #FAFAF7;
  --jrn-text:        #1A1A2E;
  --jrn-muted:       #6B7280;
  --jrn-border:      #ddd0b8;
  --jrn-border-lt:   #ece5d5;
  --jrn-transition:  0.3s cubic-bezier(0.4,0,0.2,1);

  font-family: 'Spectral', Georgia, serif;
  font-weight: 400;
  color: var(--jrn-text);
  background: var(--jrn-warm-white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  position: relative;
  overflow-x: hidden;
  scroll-behavior: smooth;
}
.crcgs-jrn-root h1, .crcgs-jrn-root h2, .crcgs-jrn-root h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
}

.crcgs-jrn-root a:focus-visible,
.crcgs-jrn-root button:focus-visible {
  outline: 2px solid var(--jrn-gold);
  outline-offset: 3px;
}

/* ── SHARED: SECTION HEAD / LABEL / TITLE ───────────────────── */
.crcgs-jrn-section-head { text-align: center; margin-bottom: 2.2rem; position: relative; z-index: 1; }
.crcgs-jrn-section-head--light { color: var(--jrn-warm-white); }
.crcgs-jrn-section-label {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.64rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--jrn-orange);
  font-weight: 700;
  margin-bottom: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
}
.crcgs-jrn-section-label::before,
.crcgs-jrn-section-label::after { content: ''; display: block; width: 1.8rem; height: 1px; background: var(--jrn-orange); }
.crcgs-jrn-section-label--gold { color: var(--jrn-gold); }
.crcgs-jrn-section-label--gold::before,
.crcgs-jrn-section-label--gold::after { background: var(--jrn-gold); }
.crcgs-jrn-section-title {
  font-size: clamp(1.9rem, 3.4vw, 2.7rem);
  font-weight: 300;
  color: var(--jrn-navy);
  line-height: 1.2;
}
.crcgs-jrn-section-title em { font-style: italic; color: var(--jrn-navy-mid); }
.crcgs-jrn-section-title--light { color: var(--jrn-warm-white); }
.crcgs-jrn-section-title--light em { color: var(--jrn-gold-light); }
.crcgs-jrn-section-intro {
  max-width: 56ch;
  margin: 0.9rem auto 0;
  color: var(--jrn-muted);
  font-size: 0.96rem;
  line-height: 1.7;
}

/* ── SHARED: BUTTONS ─────────────────────────────────────────── */
.crcgs-jrn-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.9rem 1.9rem;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid transparent;
  transition: var(--jrn-transition);
  white-space: nowrap;
}
.crcgs-jrn-btn-primary { background: var(--jrn-gold); color: var(--jrn-navy-deep); border-color: var(--jrn-gold); }
.crcgs-jrn-btn-primary:hover { background: var(--jrn-gold-light); transform: translateY(-2px); }
.crcgs-jrn-btn-ghost { background: transparent; color: var(--jrn-warm-white); border-color: rgba(253,250,245,0.35); }
.crcgs-jrn-btn-ghost:hover { border-color: var(--jrn-gold); color: var(--jrn-gold); }

/* dark-on-light variant for ghost buttons used on light section backgrounds */
.crcgs-jrn-process .crcgs-jrn-btn-ghost,
.crcgs-jrn-closing .crcgs-jrn-btn-ghost { color: var(--jrn-navy); border-color: var(--jrn-border); }
.crcgs-jrn-process .crcgs-jrn-btn-ghost:hover,
.crcgs-jrn-closing .crcgs-jrn-btn-ghost:hover { border-color: var(--jrn-gold); color: var(--jrn-orange); }

/* ── SHARED: SCROLL REVEAL (progressive enhancement) ─────────── */
.crcgs-jrn-js .crcgs-jrn-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.crcgs-jrn-js .crcgs-jrn-reveal.crcgs-jrn-visible { opacity: 1; transform: translateY(0); }

/* ════════════════════════════════════════════════════════════
   HERO  (compact — content-driven height, no vh)
════════════════════════════════════════════════════════════ */
.crcgs-jrn-hero {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  text-align: left;
  position: relative;
  overflow: hidden;
  background: var(--jrn-navy);
  padding: 80px clamp(20px, 6vw, 80px) 60px;
}
/* Grid-boxes background removed for a clean hero background */
.crcgs-jrn-hero-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 55% 70% at 80% 20%, rgba(212,168,74,.10) 0%, transparent 65%);
  pointer-events: none;
}
.crcgs-jrn-hero-inner { max-width: 760px; position: relative; z-index: 2; }
.crcgs-jrn-hero-badge {
  display: inline-block;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--jrn-navy-deep);
  background: var(--jrn-gold);
  padding: 0.4rem 0.9rem;
  margin-bottom: 1.2rem;
}
.crcgs-jrn-hero-eyebrow {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.66rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(253,250,245,.55);
  margin-bottom: 0.9rem;
}
.crcgs-jrn-hero-title {
  font-size: clamp(2.1rem, 4.6vw, 3.4rem);
  font-weight: 300;
  color: var(--jrn-warm-white);
  line-height: 1.22;
  margin-bottom: 1.2rem;
}
.crcgs-jrn-hero-title em { font-style: italic; color: var(--jrn-gold-light); }
.crcgs-jrn-hero-sub {
  font-size: 1rem;
  color: rgba(253,250,245,.7);
  max-width: 56ch;
  margin: 0 0 1.8rem;
  line-height: 1.8;
  font-weight: 300;
}
.crcgs-jrn-hero-ctas { display: flex; align-items: center; justify-content: flex-start; gap: 0.9rem; flex-wrap: wrap; margin-bottom: 1.8rem; }
.crcgs-jrn-hero-stats {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1.8rem;
  flex-wrap: wrap;
  padding-top: 1.6rem;
  position: relative;
}
.crcgs-jrn-stat { display: flex; flex-direction: column; gap: 0.2rem; min-width: 0; margin-right: 1.6rem; }
.crcgs-jrn-stat:last-child { margin-right: 0; }
.crcgs-jrn-stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--jrn-gold);
  line-height: 1;
}
.crcgs-jrn-stat-num--static { font-size: 1.6rem; }
.crcgs-jrn-stat-lbl {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.58rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(253,250,245,.45);
}
.crcgs-jrn-stat-div { width: 1px; height: 30px; background: rgba(212,168,74,.2); }

/* ════════════════════════════════════════════════════════════
   AIMS & SCOPE
════════════════════════════════════════════════════════════ */
.crcgs-jrn-scope { background: var(--jrn-warm-white); padding: 3.5rem clamp(20px, 6vw, 80px); }
.crcgs-jrn-scope-inner { max-width: 920px; margin: 0 auto; }
.crcgs-jrn-topics { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.6rem; }
.crcgs-jrn-topic-tag {
  font-family: 'Spectral', serif;
  font-size: 0.86rem;
  color: var(--jrn-navy);
  background: var(--jrn-cream);
  border: 1px solid var(--jrn-border-lt);
  padding: 0.5rem 1rem;
}
.crcgs-jrn-divider { height: 1px; background: var(--jrn-border-lt); margin: 2.2rem 0; }
.crcgs-jrn-types-head { text-align: center; margin-bottom: 1.1rem; }
.crcgs-jrn-types-title { font-family: 'Spectral', serif; font-size: 0.96rem; font-weight: 600; color: var(--jrn-navy); }
.crcgs-jrn-types { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.55rem; }
.crcgs-jrn-type-pill {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--jrn-navy-deep);
  background: var(--jrn-gold-pale);
  border: 1px solid rgba(212,168,74,0.4);
  padding: 0.45rem 0.9rem;
}

/* ════════════════════════════════════════════════════════════
   CURRENT ISSUE — TOC MASTHEAD (signature element)
════════════════════════════════════════════════════════════ */
.crcgs-jrn-issue { background: var(--jrn-navy-deep); padding: 3.5rem clamp(20px, 6vw, 80px); position: relative; }
.crcgs-jrn-issue::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--jrn-gold), transparent);
}
.crcgs-jrn-issue-inner { max-width: 760px; margin: 0 auto; }
.crcgs-jrn-masthead {
  background: var(--jrn-warm-white);
  border-top: 3px solid var(--jrn-gold);
  box-shadow: 0 18px 60px rgba(0,0,0,0.25);
  padding: clamp(1.6rem, 3vw, 2.6rem);
}
.crcgs-jrn-masthead-head {
  text-align: center;
  padding-bottom: 1.2rem;
  margin-bottom: 1.2rem;
  border-bottom: 1px solid var(--jrn-border-lt);
}
.crcgs-jrn-masthead-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.7rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--jrn-navy);
}
.crcgs-jrn-masthead-meta {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.66rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--jrn-orange);
  font-weight: 700;
  margin-top: 0.5rem;
}
.crcgs-jrn-toc { list-style: none; }
.crcgs-jrn-toc-item {
  display: flex;
  gap: 1.1rem;
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--jrn-border-lt);
}
.crcgs-jrn-toc-item:last-child { border-bottom: none; padding-bottom: 0.4rem; }
.crcgs-jrn-toc-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--jrn-gold);
  line-height: 1.3;
  flex-shrink: 0;
  width: 36px;
}
.crcgs-jrn-toc-tag {
  display: block;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--jrn-orange);
  font-weight: 700;
  margin-bottom: 0.4rem;
}
.crcgs-jrn-toc-title {
  font-size: 1.04rem;
  font-weight: 600;
  color: var(--jrn-navy);
  line-height: 1.4;
  margin-bottom: 0.5rem;
}
.crcgs-jrn-toc-link {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.66rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--jrn-navy-mid);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: var(--jrn-transition);
}
.crcgs-jrn-toc-link:hover { color: var(--jrn-orange); border-bottom-color: var(--jrn-orange); }
.crcgs-jrn-masthead-foot { text-align: center; margin-top: 1.6rem; }

/* ════════════════════════════════════════════════════════════
   PEER REVIEW PROCESS  (flexbox steps — verified cross-browser)
════════════════════════════════════════════════════════════ */
.crcgs-jrn-process { background: var(--jrn-warm-white); padding: 3.5rem clamp(20px, 6vw, 80px); }
.crcgs-jrn-process-inner { max-width: 1180px; margin: 0 auto; }
.crcgs-jrn-steps { display: flex; align-items: flex-start; gap: 0; }
.crcgs-jrn-step { flex: 1; text-align: center; padding: 0 0.6rem; }
.crcgs-jrn-step-line { flex: 0 0 auto; width: 100%; max-width: 40px; height: 1px; background: var(--jrn-border); margin-top: 22px; }
.crcgs-jrn-step-num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--jrn-navy);
  color: var(--jrn-gold);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.9rem;
}
.crcgs-jrn-step-title { font-size: 1rem; font-weight: 600; color: var(--jrn-navy); margin-bottom: 0.45rem; }
.crcgs-jrn-step-text { font-size: 0.82rem; color: var(--jrn-muted); line-height: 1.6; font-weight: 300; }

/* ════════════════════════════════════════════════════════════
   EDITORIAL BOARD  (flexbox grid — verified cross-browser)
════════════════════════════════════════════════════════════ */
.crcgs-jrn-board { background: var(--jrn-pearl); padding: 3.5rem clamp(20px, 6vw, 80px); border-top: 1px solid var(--jrn-border-lt); border-bottom: 1px solid var(--jrn-border-lt); }
.crcgs-jrn-board-inner { max-width: 1180px; margin: 0 auto; }
.crcgs-jrn-board-grid { display: flex; flex-wrap: wrap; gap: 1.4rem; justify-content: center; }
.crcgs-jrn-board-card {
  flex: 1 1 240px;
  max-width: 270px;
  background: var(--jrn-warm-white);
  border: 1px solid var(--jrn-border-lt);
  padding: 2rem 1.4rem;
  text-align: center;
  transition: var(--jrn-transition);
}
.crcgs-jrn-board-card:hover { transform: translateY(-5px); border-color: var(--jrn-gold); box-shadow: 0 14px 40px rgba(29,52,97,0.1); }
.crcgs-jrn-board-avatar {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--jrn-navy);
  color: var(--jrn-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0 auto 1rem;
}
.crcgs-jrn-board-name { font-size: 1.05rem; font-weight: 600; color: var(--jrn-navy); margin-bottom: 0.3rem; }
.crcgs-jrn-board-role {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.58rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--jrn-orange);
  font-weight: 700;
  margin-bottom: 0.8rem;
}
.crcgs-jrn-board-bio { font-size: 0.82rem; color: var(--jrn-muted); line-height: 1.6; font-weight: 300; }

/* ════════════════════════════════════════════════════════════
   CLOSING CTA
════════════════════════════════════════════════════════════ */
.crcgs-jrn-closing {
  background: radial-gradient(ellipse 70% 100% at 50% 0%, rgba(212,168,74,.1) 0%, transparent 60%), var(--jrn-navy);
  padding: 3.5rem clamp(20px, 6vw, 80px);
  text-align: center;
  border-top: 3px solid var(--jrn-gold);
}
.crcgs-jrn-closing-inner { max-width: 620px; margin: 0 auto; }
.crcgs-jrn-closing-title { font-size: clamp(1.7rem, 3.2vw, 2.4rem); font-weight: 300; color: var(--jrn-warm-white); margin-bottom: 0.9rem; line-height: 1.25; }
.crcgs-jrn-closing-title em { font-style: italic; color: var(--jrn-gold-light); }
.crcgs-jrn-closing-sub { font-size: 0.94rem; color: rgba(253,250,245,.62); font-weight: 300; margin-bottom: 1.8rem; }
.crcgs-jrn-closing-ctas { display: flex; align-items: center; justify-content: center; gap: 1rem; flex-wrap: wrap; }

/* ════════════════════════════════════════════════════════════
   RESPONSIVE — TABLET ≤1024px
════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .crcgs-jrn-hero { padding: 70px clamp(20px,5vw,48px) 50px; }
  .crcgs-jrn-scope, .crcgs-jrn-issue, .crcgs-jrn-process,
  .crcgs-jrn-board, .crcgs-jrn-closing { padding: 3rem clamp(20px,5vw,48px); }
  .crcgs-jrn-board-card { flex: 1 1 45%; max-width: 320px; }
}

/* ════════════════════════════════════════════════════════════
   RESPONSIVE — STEPS COLLAPSE ≤768px
════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  .crcgs-jrn-steps { flex-direction: column; align-items: stretch; gap: 1.4rem; }
  .crcgs-jrn-step { text-align: left; display: flex; align-items: flex-start; gap: 1rem; padding: 0; }
  .crcgs-jrn-step-num { margin: 0; flex-shrink: 0; }
  .crcgs-jrn-step-line { display: none; }
  .crcgs-jrn-toc-item { flex-direction: column; gap: 0.4rem; }
  .crcgs-jrn-toc-num { width: auto; }
}

/* ════════════════════════════════════════════════════════════
   RESPONSIVE — MOBILE ≤600px
════════════════════════════════════════════════════════════ */
@media (max-width: 600px) {
  .crcgs-jrn-hero { padding: 60px 20px 40px; }
  .crcgs-jrn-hero-title { font-size: 1.9rem; }
  .crcgs-jrn-hero-sub { font-size: 0.9rem; }
  .crcgs-jrn-hero-ctas { flex-direction: column; width: 100%; }
  .crcgs-jrn-hero-ctas .crcgs-jrn-btn { width: 100%; justify-content: center; }
  .crcgs-jrn-hero-stats { flex-direction: column; gap: 0.7rem; }
  .crcgs-jrn-stat { flex-direction: row; align-items: baseline; gap: 0.5rem; max-width: none; }
  .crcgs-jrn-stat-div { display: none; }

  .crcgs-jrn-scope, .crcgs-jrn-issue, .crcgs-jrn-process,
  .crcgs-jrn-board, .crcgs-jrn-closing { padding: 2.4rem 20px; }
  .crcgs-jrn-masthead { padding: 1.4rem; }
  .crcgs-jrn-masthead-name { font-size: 1.4rem; }

  .crcgs-jrn-board-card { flex: 1 1 100%; max-width: 100%; }
  .crcgs-jrn-closing-ctas { flex-direction: column; width: 100%; }
  .crcgs-jrn-closing-ctas .crcgs-jrn-btn { width: 100%; justify-content: center; }
  .crcgs-jrn-section-title { font-size: 1.6rem; }
}

@media (max-width: 420px) {
  .crcgs-jrn-toc-item { padding: 0.9rem 0; }
  .crcgs-jrn-topic-tag, .crcgs-jrn-type-pill { font-size: 0.78rem; }
}

/* ════════════════════════════════════════════════════════════
   REDUCED MOTION
════════════════════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  .crcgs-jrn-root * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .crcgs-jrn-reveal,
  .crcgs-jrn-js .crcgs-jrn-reveal { opacity: 1 !important; transform: none !important; }
}


/* ════════════════════════════════════════════════════════════
   HOME-PAGE LOGO EMBLEM + LAYOUT — same-to-same as index/about
   Two-column hero (content left, animated logo right), slow
   rotating rings, orbiting flares, twinkling particles, glow
   pulse, floating logo. Fully self-contained + responsive.
════════════════════════════════════════════════════════════ */

/* Two-column hero layout — mirrors the home page hero grid */
.crcgs-jrn-hero-layout {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  align-items: center;
  position: relative;
  z-index: 2;
  width: 100%;
}
.crcgs-jrn-hero-right {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 3rem 3rem 3rem 1rem;
  position: relative;
  z-index: 1;
  animation: crcgsHpFadeUp .7s .2s ease both;
}

/* Shortened stats divider line — anchored left, trimmed from the right */
.crcgs-jrn-hero-stats::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: min(400px, 62%);
  height: 1px;
  background: rgba(212,168,74,0.2);
}

.crcgs-jrn-hero .crcgs-hp-hero-emblem {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  border: 1.5px solid rgba(212,168,74,.6);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow:
    0 0 50px rgba(212,168,74,.4),
    0 0 100px rgba(212,168,74,.18),
    0 30px 60px -20px rgba(17,31,61,.55);
}
.crcgs-jrn-hero .crcgs-hp-hero-emblem::before {
  content: '';
  position: absolute;
  inset: 12px;
  border-radius: 50%;
  border: 1px solid rgba(212,168,74,.15);
}
.crcgs-jrn-hero .crcgs-hp-hero-emblem img {
  width: 210px;
  height: 210px;
  object-fit: contain;
  filter: drop-shadow(0 6px 32px rgba(0,0,0,.45));
}
.crcgs-jrn-hero .crcgs-hp-emblem-glow {
  position: absolute;
  inset: -70px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 45%, rgba(232,201,122,.35) 0%, transparent 55%),
    radial-gradient(circle at 60% 60%, rgba(29,52,97,.55) 0%, transparent 60%);
  filter: blur(30px);
  z-index: 0;
  animation: crcgsHpGlowPulse 7s ease-in-out infinite;
}
.crcgs-jrn-hero .crcgs-hp-emblem-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(212,168,74,.28);
  z-index: 1;
  pointer-events: none;
}
.crcgs-jrn-hero .crcgs-hp-emblem-ring--a { inset: -18px; animation: crcgsHpSpin 34s linear infinite; }
.crcgs-jrn-hero .crcgs-hp-emblem-ring--b { inset: -46px; border-color: rgba(212,168,74,.16); animation: crcgsHpSpinReverse 52s linear infinite; }
.crcgs-jrn-hero .crcgs-hp-emblem-ring--c { inset: -78px; border-style: dashed; border-color: rgba(253,250,245,.14); animation: crcgsHpSpin 90s linear infinite; }
.crcgs-jrn-hero .crcgs-hp-emblem-orbit {
  position: absolute;
  inset: -34px;
  border-radius: 50%;
  z-index: 1;
  pointer-events: none;
  animation: crcgsHpSpin 16s linear infinite;
}
.crcgs-jrn-hero .crcgs-hp-emblem-orbit--b { inset: -60px; animation: crcgsHpSpinReverse 24s linear infinite; }
.crcgs-jrn-hero .crcgs-hp-emblem-orbit span {
  position: absolute;
  top: -2px;
  left: 50%;
  width: 5px;
  height: 5px;
  margin-left: -2.5px;
  border-radius: 50%;
  background: #E8C97A;
  box-shadow: 0 0 8px 2px rgba(232,201,122,.8), 0 0 16px 4px rgba(212,168,74,.4);
}
.crcgs-jrn-hero .crcgs-hp-emblem-orbit--b span {
  width: 4px;
  height: 4px;
  background: #FDFAF5;
  box-shadow: 0 0 6px 2px rgba(253,250,245,.7);
}
.crcgs-jrn-hero .crcgs-hp-emblem-particles { position: absolute; inset: -90px; z-index: 1; pointer-events: none; }
.crcgs-jrn-hero .crcgs-hp-emblem-particles span {
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #E8C97A;
  box-shadow: 0 0 6px 2px rgba(232,201,122,.7);
  animation: crcgsHpTwinkle 4.5s ease-in-out infinite;
}
.crcgs-jrn-hero .crcgs-hp-emblem-particles span:nth-child(1) { top: 6%;  left: 12%; animation-delay: 0s; }
.crcgs-jrn-hero .crcgs-hp-emblem-particles span:nth-child(2) { top: 22%; left: 88%; animation-delay: .6s; }
.crcgs-jrn-hero .crcgs-hp-emblem-particles span:nth-child(3) { top: 78%; left: 90%; animation-delay: 1.3s; }
.crcgs-jrn-hero .crcgs-hp-emblem-particles span:nth-child(4) { top: 92%; left: 20%; animation-delay: 2s; }
.crcgs-jrn-hero .crcgs-hp-emblem-particles span:nth-child(5) { top: 50%; left: 2%;  animation-delay: 2.6s; }
.crcgs-jrn-hero .crcgs-hp-emblem-particles span:nth-child(6) { top: 4%;  left: 55%; animation-delay: 3.3s; }
.crcgs-jrn-hero .crcgs-hp-emblem-float {
  position: relative;
  z-index: 2;
  animation: crcgsHpFloat 6s ease-in-out infinite;
}

/* Keyframes — identical to the home page (styles.css) */
@keyframes crcgsHpSpin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@keyframes crcgsHpSpinReverse { from { transform: rotate(360deg); } to { transform: rotate(0deg); } }
@keyframes crcgsHpFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@keyframes crcgsHpGlowPulse { 0%, 100% { opacity: .75; transform: scale(1); } 50% { opacity: 1; transform: scale(1.06); } }
@keyframes crcgsHpTwinkle { 0%, 100% { opacity: .15; transform: scale(.7); } 50% { opacity: 1; transform: scale(1.15); } }
@keyframes crcgsHpFadeUp { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: translateY(0); } }

/* ── RESPONSIVE — full screen-size coverage ── */

/* Wide monitors ≥1440px */
@media (min-width: 1440px) {
  .crcgs-jrn-hero-right { padding-right: 5rem; }
}

/* Small laptops 1025–1200px — narrow the emblem column slightly */
@media (max-width: 1200px) and (min-width: 1025px) {
  .crcgs-jrn-hero-layout { grid-template-columns: 1.3fr .7fr; }
  .crcgs-jrn-hero-right { padding: 3rem 1.5rem 3rem 0.5rem; }
}

/* Tablets ≤1024px — stack: content on top, logo centered below */
@media (max-width: 1024px) {
  .crcgs-jrn-hero-layout { grid-template-columns: 1fr; }
  .crcgs-jrn-hero-right { padding: 2.5rem 1.5rem 0.5rem; }
  .crcgs-jrn-hero .crcgs-hp-hero-emblem { width: 230px; height: 230px; }
  .crcgs-jrn-hero .crcgs-hp-hero-emblem img { width: 170px; height: 170px; }
  .crcgs-jrn-hero .crcgs-hp-emblem-glow { inset: -50px; }
  .crcgs-jrn-hero .crcgs-hp-emblem-ring--a { inset: -14px; }
  .crcgs-jrn-hero .crcgs-hp-emblem-ring--b { inset: -34px; }
  .crcgs-jrn-hero .crcgs-hp-emblem-ring--c { inset: -58px; }
  .crcgs-jrn-hero .crcgs-hp-emblem-orbit--a { inset: -26px; }
  .crcgs-jrn-hero .crcgs-hp-emblem-orbit--b { inset: -46px; }
  .crcgs-jrn-hero .crcgs-hp-emblem-particles { inset: -66px; }
}

/* Phones ≤768px */
@media (max-width: 768px) {
  .crcgs-jrn-hero-right { padding: 2rem 1.2rem 0.5rem; }
  .crcgs-jrn-hero .crcgs-hp-hero-emblem { width: 200px; height: 200px; }
  .crcgs-jrn-hero .crcgs-hp-hero-emblem img { width: 150px; height: 150px; }
  .crcgs-jrn-hero .crcgs-hp-emblem-glow { inset: -38px; }
  .crcgs-jrn-hero .crcgs-hp-emblem-ring--a { inset: -10px; }
  .crcgs-jrn-hero .crcgs-hp-emblem-ring--b { inset: -26px; }
  .crcgs-jrn-hero .crcgs-hp-emblem-ring--c { inset: -44px; }
  .crcgs-jrn-hero .crcgs-hp-emblem-orbit--a { inset: -20px; }
  .crcgs-jrn-hero .crcgs-hp-emblem-orbit--b { inset: -36px; }
  .crcgs-jrn-hero .crcgs-hp-emblem-particles { inset: -50px; }
}

/* Small phones ≤480px */
@media (max-width: 480px) {
  .crcgs-jrn-hero-right { padding: 1.6rem 1rem 0.5rem; }
  .crcgs-jrn-hero .crcgs-hp-hero-emblem { width: 168px; height: 168px; }
  .crcgs-jrn-hero .crcgs-hp-hero-emblem img { width: 126px; height: 126px; }
  .crcgs-jrn-hero .crcgs-hp-emblem-glow { inset: -30px; }
  .crcgs-jrn-hero .crcgs-hp-emblem-ring--a { inset: -8px; }
  .crcgs-jrn-hero .crcgs-hp-emblem-ring--b { inset: -20px; }
  .crcgs-jrn-hero .crcgs-hp-emblem-ring--c { inset: -34px; }
  .crcgs-jrn-hero .crcgs-hp-emblem-orbit--a { inset: -16px; }
  .crcgs-jrn-hero .crcgs-hp-emblem-orbit--b { inset: -28px; }
  .crcgs-jrn-hero .crcgs-hp-emblem-particles { inset: -40px; }
}

/* Very small phones ≤360px */
@media (max-width: 360px) {
  .crcgs-jrn-hero .crcgs-hp-hero-emblem { width: 148px; height: 148px; }
  .crcgs-jrn-hero .crcgs-hp-hero-emblem img { width: 110px; height: 110px; }
  .crcgs-jrn-hero .crcgs-hp-emblem-glow { inset: -24px; }
  .crcgs-jrn-hero .crcgs-hp-emblem-ring--c { inset: -28px; }
  .crcgs-jrn-hero .crcgs-hp-emblem-particles { inset: -32px; }
}
