/* ============================================================
   MOSAIC LAB — CLEAN FINAL STYLESHEET (2025)
   ============================================================ */

/* -----------------------------
   DESIGN TOKENS (DARK DEFAULT)
   ----------------------------- */
:root {
  --bg: #0b0b0f;
  --card: #0f1115;

  --text-primary: #e6eef6;
  --text-secondary: #c6ccd8;
  --text-muted: #9aa1ad;

  --accent1: #7b61ff;
  --accent2: #3ee8b5;
  --accent3: #ff6b6b;

  --accent-grad: linear-gradient(135deg,var(--accent1),#ff6fd8 60%,var(--accent2));
  --accent-weak: rgba(123,97,255,0.12);

  --font-sans: "Inter", system-ui, -apple-system, "Segoe UI";
  --font-display: "Space Grotesk", var(--font-sans);

  --space-1: 8px;
  --space-2: 12px;
  --space-3: 16px;
  --space-4: 24px;
  --space-5: 32px;
  --space-6: 48px;

  --radius: 12px;
  --glass-radius: 18px;

  --shadow-1: 0 6px 18px rgba(2,6,23,0.6);
}

/* -----------------------------
   LIGHT MODE
   ----------------------------- */
:root[data-theme="light"] {
  --bg: #f2f4f9;
  --card: #ffffff;

  --text-primary: #1b1c1f;
  --text-secondary: #3d414a;
  --text-muted: #5b606d;

  --accent1: #5b4bff;
  --accent2: #2ccf9a;
  --accent3: #e85555;

  --accent-grad: linear-gradient(135deg,var(--accent1),#ff4fcb 60%,var(--accent2));

  --shadow-1: 0 4px 16px rgba(0,0,0,0.12);
}

/* -----------------------------
   BASE LAYOUT
   ----------------------------- */
body {
  margin: 0;
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--text-primary);
  padding: var(--space-5);
}

.container {
  max-width: 1100px;
  margin: 0 auto;
}

h1,h2,h3,h4 {
  color: var(--text-primary);
  margin: 0 0 8px 0;
}

/* -----------------------------
   HEADER
   ----------------------------- */
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-5);
}

.brand {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

/* Clean, controlled PNG logo size */
.logo-img {
  width: 100px;      /* exact size used by your previous SVG */
  height: auto;
  display: block;
}

.brand {
  display: flex;
  gap: var(--space-3);
  align-items: flex-start;   /* FIX: Align text & logo at the top */
}

.header-nav a {
  margin-left: var(--space-3);
  text-decoration: none;
  font-weight: 600;
  color: var(--text-secondary);
}

.header-nav a.active-nav {
  color: var(--accent1);
  border-bottom: 2px solid var(--accent1);
  padding-bottom: 2px;
}

.theme-toggle {
  margin-left: 12px;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.2);
  padding: 6px 10px;
  border-radius: 8px;
  cursor: pointer;
  color: var(--text-secondary);
}
:root[data-theme="light"] .theme-toggle {
  border-color: rgba(0,0,0,0.15);
  color: var(--text-primary);
}

/* -----------------------------
   HERO
   ----------------------------- */
.hero {
  display: grid;
  grid-template-columns: 1fr 350px;
  gap: var(--space-4);
  margin-bottom: var(--space-6);
}

.hero-card {
  background: rgba(255,255,255,0.04);
  padding: var(--space-4);
  border-radius: var(--glass-radius);
}
:root[data-theme="light"] .hero-card {
  background: white;
  border: 1px solid rgba(0,0,0,0.08);
}

.eyebrow {
  display: inline-block;
  padding: 6px 10px;
  background: var(--accent-weak);
  color: var(--accent1);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
}

.lead {
  margin-top: var(--space-2);
  font-size: 18px;
  color: var(--text-muted);
}

.btn {
  display: inline-block;
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--accent-grad);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  margin-right: 10px;
}

/* -----------------------------
   SIDEPANEL
   ----------------------------- */
.side-panel {
  background: rgba(255,255,255,0.04);
  padding: var(--space-4);
  border-radius: var(--glass-radius);
}
:root[data-theme="light"] .side-panel {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.06);
}

/* -----------------------------
   PROJECT GRID
   ----------------------------- */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(260px,1fr));
  gap: var(--space-4);
}

.card {
  padding: var(--space-4);
  background: rgba(255,255,255,0.04);
  border-radius: var(--radius);
  transition: 0.2s ease;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-1);
}

/* ============================================================
   PI — BANNER PROFILE CARD
   ============================================================ */
.pi-banner {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  padding: var(--space-4);
  margin-bottom: var(--space-5);
  background: rgba(255,255,255,0.05);
  border-radius: var(--radius);
  box-shadow: var(--shadow-1);

  /* CRITICAL: span entire grid */
  grid-column: 1 / -1;
}

:root[data-theme="light"] .pi-banner {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
}

.pi-banner-photo {
  width: 260px;
  height: 300px;
  border-radius: var(--radius);
  object-fit: cover;
}

.pi-banner-content {
  flex: 1;
}

.pi-banner-name {
  font-family: var(--font-display);
  font-size: 34px;
  margin-bottom: 4px;
}

.pi-banner-role {
  font-size: 18px;
  color: var(--accent2);
  font-weight: 700;
  margin-bottom: 12px;
}

.pi-banner-bio {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.pi-sections {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.pi-section h4 {
  color: var(--accent1);
  font-size: 16px;
  margin-bottom: 4px;
}

.pi-section ul {
  margin: 0 0 0 20px;
  padding: 0;
}

.pi-section ul li {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 4px;
}

.pi-links {
  margin-top: 20px;
  display: flex;
  gap: 12px;
}

@media (max-width: 860px) {
  .pi-banner {
    flex-direction: column;
    text-align: center;
  }
  .pi-banner-photo {
    width: 70%;
    height: auto;
    margin: 0 auto;
  }
  .pi-links {
    justify-content: center;
  }
}

/* ============================================================
   MEMBERS
   ============================================================ */
.member-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(260px,1fr));
  gap: var(--space-4);
}

.member-card {
  background: var(--card);
  border-radius: var(--radius);
  padding: var(--space-4);
  box-shadow: var(--shadow-1);
  text-align: center;
}

.member-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: var(--radius);
}

.member-card .role {
  margin-top: 4px;
  color: var(--accent2);
  font-weight: 600;
}

.small-bio {
  color: var(--text-muted);
  font-size: 13px;
}

/* -----------------------------
   ICON BUTTONS
   ----------------------------- */
.member-links,
.pi-links {
  margin-top: 12px;
  display: flex;
  gap: 12px;
}

.mini-link {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: rgba(255,255,255,0.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--accent1);
}
.mini-link svg { width: 18px; height: 18px; fill: currentColor; }

/* ============================================================
   ALUMNI
   ============================================================ */
.alumni-section {
  margin-top: var(--space-6);
  padding-top: var(--space-5);
  border-top: 1px solid rgba(255,255,255,0.08);
}
:root[data-theme="light"] .alumni-section {
  border-top: 1px solid rgba(0,0,0,0.08);
}

.contact-section {
  margin-top: var(--space-5);
  padding-top: var(--space-4);
  border-top: 1px solid rgba(255,255,255,0.08);
}
:root[data-theme="light"] .contact-section {
  border-top: 1px solid rgba(0,0,0,0.08);
}
.contact-section a {
  color: var(--accent1);
  font-weight: 600;
  text-decoration: none;
}
.alumni-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(180px,1fr));
  gap: var(--space-4);
}

.alumni-card {
  background: rgba(255,255,255,0.04);
  padding: var(--space-3);
  border-radius: var(--radius);
  text-align: center;
}
:root[data-theme="light"] .alumni-card {
  background: white;
  border: 1px solid rgba(0,0,0,0.06);
}

.alumni-thumb {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: var(--space-2);
}

/* ============================================================
   COLLABORATIONS
   ============================================================ */
.collab-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(240px,1fr));
  gap: var(--space-4);
}

.collab-card {
  background: rgba(255,255,255,0.04);
  padding: var(--space-4);
  border-radius: var(--radius);
  box-shadow: var(--shadow-1);
  border-top: 3px solid var(--accent1);
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}
:root[data-theme="light"] .collab-card {
  background: white;
  border: 1px solid rgba(0,0,0,0.06);
  border-top: 3px solid var(--accent1);
}

.collab-card-top {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.collab-card h3 {
  margin: 0;
  font-size: 15px;
}

.collab-desc {
  font-size: 13px;
  color: var(--text-muted);
  margin: 0;
  flex: 1;
}

.collab-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 999px;
  background: var(--accent-weak);
  color: var(--accent1);
  margin-right: 4px;
}

.collab-link {
  color: var(--accent2);
  text-decoration: none;
  font-weight: 600;
  font-size: 13px;
  margin-top: auto;
}
.collab-link:hover { text-decoration: underline; }

.collab-card a {
  color: var(--accent1);
  text-decoration: none;
  font-weight: 600;
}

/* ============================================================
   PUBLICATIONS
   ============================================================ */
.pub-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.pub-item {
  padding: var(--space-4);
  border-radius: var(--radius);
  background: var(--card);
  box-shadow: var(--shadow-1);
}

.pub-title {
  margin: 0 0 6px 0;
}

.pub-meta {
  font-size: 14px;
  color: var(--text-muted);
}

.pub-journal {
  color: var(--accent2);
  font-weight: 700;
}

.pub-link {
  color: var(--accent1);
  margin-left: 8px;
  text-decoration: none;
  font-weight: 700;
}

.abstract-toggle {
  margin-top: 8px;
  background: transparent;
  border: none;
  color: var(--accent1);
  cursor: pointer;
  font-weight: 700;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  margin-top: var(--space-6);
  display: flex;
  justify-content: space-between;
  color: var(--text-muted);
}

.site-footer {
  margin-top: var(--space-6);
  padding-top: var(--space-3);
  border-top: 1px solid rgba(255,255,255,0.12);
  text-align: center;
  color: var(--text-muted);
  font-size: 13px;
}

:root[data-theme="light"] .site-footer {
  border-top: 1px solid rgba(0,0,0,0.12);
  color: var(--text-secondary);
}
/* ============================================================
   BRAND / LOGO WORDMARK
   ============================================================ */
.logo-link { display:block; line-height:0; }

.brand-wordmark {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 900;
  letter-spacing: -0.5px;
  color: var(--text-primary);
  line-height: 1.1;
}

.brand-o {
  display: inline-block;
  background: var(--accent-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: oShift 5s ease-in-out infinite;
}
@keyframes oShift {
  0%,100% { filter: brightness(1); }
  50%      { filter: brightness(1.35); }
}

/* animated flow underline from O toward S */
.brand-wordmark::after {
  content: "";
  display: block;
  height: 2px;
  width: 0;
  background: var(--accent-grad);
  border-radius: 2px;
  animation: underlineFlow 3s ease-in-out infinite;
}
@keyframes underlineFlow {
  0%   { width: 0;    opacity: 0; }
  30%  { width: 40%;  opacity: 1; }
  70%  { width: 100%; opacity: 0.6; }
  100% { width: 0;    opacity: 0; }
}

.brand-sub {
  font-size: 12px;
  color: var(--text-muted);
  margin: 2px 0 0 0;
}

/* ============================================================
   MOLECULAR FEATURE CARD (home page standalone animation)
   ============================================================ */
.mol-feature-card {
  position: relative;
  overflow: hidden;
  height: 200px;
  border-radius: var(--glass-radius);
  border: 1px solid rgba(123,97,255,0.18);
  background: rgba(123,97,255,0.05);
  margin-bottom: var(--space-6);
}
:root[data-theme="light"] .mol-feature-card {
  background: #fff;
  border-color: rgba(123,97,255,0.20);
  box-shadow: var(--shadow-1);
}

.mol-canvas-card {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.75;
}

.mol-feature-overlay {
  position: relative;
  z-index: 1;
  padding: var(--space-5);
  max-width: 520px;
}
.mol-feature-overlay h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  margin: var(--space-2) 0;
  background: var(--accent-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.mol-feature-overlay p {
  font-size: 14px;
  color: var(--text-secondary);
  margin: 0 0 var(--space-3) 0;
  line-height: 1.7;
}
.mol-feature-link {
  font-size: 13px;
  font-weight: 700;
  color: var(--accent1);
  text-decoration: none;
}
.mol-feature-link:hover { text-decoration: underline; }

/* ============================================================
   BTN OUTLINE VARIANT
   ============================================================ */
.btn-outline {
  background: transparent;
  border: 2px solid var(--accent1);
  color: var(--accent1);
}
.btn-outline:hover {
  background: var(--accent1);
  color: #fff;
}

/* ============================================================
   REVEAL / FADE-UP ANIMATION
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   HOME — ABOUT SECTION
   ============================================================ */
.about-section {
  margin-bottom: var(--space-6);
  padding: var(--space-5);
  background: rgba(255,255,255,0.03);
  border-radius: var(--glass-radius);
  border-left: 4px solid var(--accent1);
}
:root[data-theme="light"] .about-section {
  background: #fff;
  border-color: var(--accent1);
  box-shadow: var(--shadow-1);
}
.about-body {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.75;
  margin: 0;
}

/* ============================================================
   HOME — RESEARCH THEMES PREVIEW
   ============================================================ */
.home-themes-section {
  margin-bottom: var(--space-6);
}
.theme-preview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-4);
}
.theme-preview-card {
  display: flex;
  flex-direction: column;
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(255,255,255,0.03);
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: var(--shadow-1);
}
:root[data-theme="light"] .theme-preview-card {
  background: #fff;
}
.theme-preview-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(2,6,23,0.5);
}

/* Live canvas inside each theme card */
.theme-preview-canvas {
  display: block;
  width: 100%;
  height: 80px;
  background: rgba(0,0,0,0.18);
}
:root[data-theme="light"] .theme-preview-canvas {
  background: rgba(0,0,0,0.04);
}

/* Text block below the canvas */
.theme-preview-text {
  padding: var(--space-3) var(--space-4) var(--space-4);
  flex: 1;
}
.theme-preview-card h3 {
  font-size: 15px;
  font-weight: 700;
  margin: 0 0 6px 0;
}
.theme-count {
  display: inline-block;
  margin-top: 10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
}

/* ============================================================
   HOME — RECENT PUBLICATIONS
   ============================================================ */
.home-pubs-section {
  margin-bottom: var(--space-6);
}
.home-pubs-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: var(--space-4);
}
.see-all-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--accent1);
  text-decoration: none;
}
.recent-pubs-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.recent-pub-item {
  padding: var(--space-3) var(--space-4);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.03);
  border-left: 3px solid var(--accent2);
}
:root[data-theme="light"] .recent-pub-item {
  background: #fff;
  box-shadow: var(--shadow-1);
}
.recent-pub-title {
  font-weight: 600;
  font-size: 14px;
  margin: 0 0 4px 0;
  color: var(--text-primary);
}

/* ============================================================
   RESEARCH PAGE — THEMES
   ============================================================ */
.themes-container {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

.theme-block {
  padding: var(--space-5);
  background: rgba(255,255,255,0.02);
  border-radius: var(--glass-radius);
}
:root[data-theme="light"] .theme-block {
  background: #fff;
  box-shadow: var(--shadow-1);
}

.theme-header {
  margin-bottom: var(--space-4);
}
.theme-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 8px 0;
}
.theme-tagline {
  color: var(--text-muted);
  font-size: 14px;
  margin: 0;
  line-height: 1.6;
}

.theme-projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--space-3);
  margin-top: var(--space-4);
}
.theme-project-inner {
  padding: var(--space-3) var(--space-4);
  background: rgba(255,255,255,0.04);
  border-radius: var(--radius);
  border-left: 3px solid var(--accent1);
  height: 100%;
  transition: transform 0.2s ease;
}
:root[data-theme="light"] .theme-project-inner {
  background: #f7f8fc;
  border: 1px solid rgba(0,0,0,0.06);
  border-left-width: 3px;
}
.theme-project-card:hover .theme-project-inner {
  transform: translateY(-3px);
}
.funding-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 999px;
  background: rgba(123,97,255,0.15);
  color: var(--accent1);
  margin-bottom: 8px;
  letter-spacing: 0.3px;
}
.theme-project-title {
  font-size: 14px;
  font-weight: 700;
  margin: 0 0 8px 0;
  color: var(--text-primary);
}
.theme-project-desc {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.65;
  margin: 0;
}

/* ============================================================
   SECTION ANCHOR OFFSET (for theme deep-links)
   ============================================================ */
.theme-block[id] {
  scroll-margin-top: 80px;
}

/* ============================================================
   RESEARCH ANIMATION CANVASES
   ============================================================ */

/* Wide banner at the top of each theme block */
.theme-banner-canvas {
  display: block;
  width: 100%;
  height: 160px;
  border-radius: var(--radius);
  background: rgba(0,0,0,0.18);
  margin-bottom: var(--space-4);
  border: 1px solid rgba(255,255,255,0.05);
}
:root[data-theme="light"] .theme-banner-canvas {
  background: rgba(0,0,0,0.04);
  border-color: rgba(0,0,0,0.07);
}

/* Small canvas at the top of each project card */
.project-canvas {
  display: block;
  width: 100%;
  height: 110px;
  border-radius: var(--radius) var(--radius) 0 0;
  background: rgba(0,0,0,0.22);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
:root[data-theme="light"] .project-canvas {
  background: rgba(0,0,0,0.05);
  border-bottom-color: rgba(0,0,0,0.07);
}

/* Project card layout adjusts when it has a canvas */
.theme-project-card {
  display: flex;
  flex-direction: column;
}
.theme-project-inner {
  flex: 1;
  border-radius: 0 0 var(--radius) var(--radius);
}

/* ============================================================
   JOIN PAGE
   ============================================================ */
.join-hero-section {
  padding: var(--space-5);
  background: rgba(255,255,255,0.03);
  border-radius: var(--glass-radius);
  border-left: 4px solid var(--accent2);
  margin-bottom: var(--space-6);
}
:root[data-theme="light"] .join-hero-section {
  background: #fff;
  box-shadow: var(--shadow-1);
}

.join-lead {
  font-size: 16px;
  line-height: 1.75;
  color: var(--text-secondary);
  margin: 0 0 var(--space-3) 0;
  max-width: 720px;
}

.sub-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 var(--space-4) 0;
}

/* ── Why MOSAIC grid ── */
.join-why-section {
  margin-bottom: var(--space-6);
}

.join-why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: var(--space-4);
}

.join-why-card {
  background: rgba(255,255,255,0.04);
  border-radius: var(--radius);
  padding: var(--space-4);
  border-top: 2px solid rgba(123,97,255,0.25);
}
:root[data-theme="light"] .join-why-card {
  background: #fff;
  box-shadow: var(--shadow-1);
  border-top-color: rgba(123,97,255,0.30);
}

.join-why-icon {
  display: block;
  font-size: 22px;
  margin-bottom: var(--space-2);
}

.join-why-card h4 {
  font-size: 15px;
  font-weight: 700;
  margin: 0 0 8px 0;
}

.join-why-card p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0;
}

/* ── Roles grid ── */
.join-roles-section {
  margin-bottom: var(--space-6);
}

.join-roles-grid {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
}

.join-role-card {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(62,232,181,0.07);
  border: 1px solid rgba(62,232,181,0.18);
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
}
:root[data-theme="light"] .join-role-card {
  background: rgba(62,232,181,0.10);
  border-color: rgba(62,232,181,0.30);
}

.join-role-icon {
  color: var(--accent2);
  font-size: 13px;
}

/* ── Contact section ── */
.join-contact-section {
  padding: var(--space-5);
  background: rgba(255,255,255,0.03);
  border-radius: var(--glass-radius);
  border: 1px solid rgba(123,97,255,0.12);
  margin-bottom: var(--space-6);
}
:root[data-theme="light"] .join-contact-section {
  background: #fff;
  box-shadow: var(--shadow-1);
}

.join-contact-text {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 600px;
  margin: 0;
}

.join-contact-email {
  margin: var(--space-3) 0 0 0;
  font-size: 14px;
  color: var(--text-muted);
}
.join-contact-email a {
  color: var(--accent1);
  text-decoration: none;
  font-weight: 600;
}

.join-contact-fine {
  margin: var(--space-3) 0 0 0;
  font-size: 13px;
  color: var(--text-muted);
  font-style: italic;
}

/* END CLEAN STYLESHEET */
