:root {
  /* Light, flat, RSAF-inspired palette */
  --bg: #f3f4f6;
  --card-bg: #ffffff;
  --primary: #1f4f82;
  --accent: #2563eb;
  --accent-soft: #e0edff;
  --text-main: #0f172a;
  --text-muted: #64748b;
  --border-subtle: #d4d4d8;
  --shadow-soft: 0 18px 40px rgba(15, 23, 42, 0.08);
  --radius-lg: 20px;
  --radius-pill: 999px;
  --max-width: 980px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  min-height: 100vh;
  margin: 0;
  padding: 24px 16px;
  background: var(--bg);
  color: var(--text-main);
}

/* a bit more breathing room on larger screens */
@media (min-width: 1024px) {
  body {
    padding: 32px 24px;
  }
}
.page {
  width: 100%;
  max-width: var(--max-width);
  background: var(--card-bg);
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
  padding: 26px 20px 22px;
  position: relative;
  border: 1px solid var(--border-subtle);
  margin: 0 auto 40px; /* center horizontally, fixed offset from top */
}

@media (min-width: 768px) {
  .page {
    padding: 32px 38px 30px;
  }
}

.page-inner {
  display: grid;
  gap: 24px;
  justify-items: start;     /* NEW: pins all content to the left */
  align-items: start;
}

/* Top bar */

.top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 30px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: #1f4f82;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 6px 16px rgba(15, 23, 42, 0.25);
}

.brand-mark::before,
.brand-mark::after {
  content: "";
  position: absolute;
  width: 140%;
  height: 2px;
  background: rgba(248, 250, 252, 0.8);
  transform: rotate(-18deg);
}

.brand-mark::before {
  transform: rotate(-18deg) translateY(6px);
}

.brand-mark::after {
  transform: rotate(-18deg) translateY(-6px);
  opacity: 0.6;
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand-name {
  font-size: 1.02rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.brand-tagline {
  font-size: 0.78rem;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Layout */

.layout {
  display: grid;
  gap: 32px;
  justify-items: start;      /* NEW */
  align-items: start;        /* NEW */
}

.layout--single {
  justify-items: start !important;   /* very important fix */
  align-items: start !important;
  text-align: left;                  /* makes text stay left */
  margin-left: 0;                    /* prevents auto-centering */
}

@media (min-width: 900px) {
  .layout {
    grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
    gap: 40px;
  }
}

.content-block {
  width: 100%;
  max-width: 720px;   /* clean readable width */
  margin-left: 0 !important;
  padding-left: 0 !important;
}

.headline-kicker {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.headline {
  font-size: 2.1rem;
  line-height: 1.1;
  letter-spacing: 0.02em;
  margin-bottom: 14px;
}

@media (min-width: 768px) {
  .headline {
    font-size: 2.6rem;
  }
}

/* This is the gradient / two-tone effect for the key phrase */
.headline span.emphasis {
  background: linear-gradient(135deg, var(--primary), #0b63ce);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.subheadline {
  font-size: 0.96rem;
  color: var(--text-muted);
  max-width: 34rem;
  margin-bottom: 20px;
}

/* Coming soon pill */

.coming-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  background: var(--accent-soft);
  border: 1px solid #bfdbfe;
  color: var(--text-main);
  font-size: 0.82rem;
  font-weight: 500;
  margin-bottom: 22px;
}

.coming-pill-label {
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  background: var(--accent);
  color: #ffffff;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

/* Meta list bullets */

.meta-list {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
  margin-bottom: 24px;
  font-size: 0.84rem;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
}

.meta-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.85;
}

/* Notes */

.note {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 4px;
  margin-bottom: 4px;
}

.note-strong {
  font-weight: 500;
  color: #1f2937;
}

/* Right side flight card */

.visual-card {
  border-radius: var(--radius-lg);      /* rounded card */
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  padding: 18px 18px 16px;
  position: relative;
  overflow: hidden;
}

@media (max-width: 899px) {
  .visual-card {
    order: -1;
  }
}

.visual-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.flight-code {
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--primary);
  font-size: 0.76rem;
}

.status-pill {
  padding: 5px 9px;
  border-radius: var(--radius-pill);
  background: rgba(250, 204, 21, 0.12);
  border: 1px solid rgba(250, 204, 21, 0.9);
  color: #854d0e;
  font-size: 0.74rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.status-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #facc15;
  box-shadow: 0 0 8px rgba(250, 204, 21, 0.9);
}

.route-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 18px;
  gap: 16px;
}

.airport-block {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.airport-code {
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--primary);
}

.airport-city {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--text-muted);
}

.route-line {
  flex: 1;
  position: relative;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.route-line::before {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  height: 1px;
  background: linear-gradient(
    to right,
    rgba(148, 163, 184, 0.15),
    rgba(15, 23, 42, 0.5),
    rgba(148, 163, 184, 0.15)
  );
}

.plane-icon {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: #1d4ed8;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  color: #f9fafb;
  box-shadow: 0 8px 18px rgba(37, 99, 235, 0.5);
  transform: translateY(-2px);
}

.meta-bar {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  font-size: 0.74rem;
  color: var(--text-muted);
  border-top: 1px dashed rgba(148, 163, 184, 0.7);
  padding-top: 10px;
  margin-top: 6px;
}

.meta-col {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.meta-label {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.66rem;
  color: #9ca3af;
}

.meta-value {
  font-weight: 500;
  color: #1f2937;
}

/* ===== Clean nav with left-runway underline + hover tail ===== */

.top-bar-nav {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;  /* pushes branding left, menu right */
  margin-bottom: 24px;             /* space under nav */
  padding: 0;
}

/* Desktop nav container */
.nav-bar {
  display: none;
  align-items: center;
  gap: 20px;
}

@media (min-width: 900px) {
  .nav-bar {
    display: flex;   /* only flex on desktop */
  }
}

/* Base nav item */
.nav-item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 6px 2px 8px 2px;
  border-radius: 4px;
  text-decoration: none;
  color: var(--text-muted);
  min-width: 90px;
  transition:
    color 0.18s ease-out,
    transform 0.18s ease-out;
}

.nav-item-label {
  font-size: 0.82rem;
  font-weight: 500;
}

.nav-item-sub {
  font-size: 0.7rem;
  opacity: 0.85;
}

/* Hover behaviour */
.nav-item:hover {
  color: var(--primary);
  transform: translateY(-1px);
}

/* ===== ACTIVE PAGE: runway underline (left-anchored) ===== */

.nav-item-active {
  color: var(--primary);
}

/* base runway (collapsed & hidden by default on all items) */
.nav-item::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    rgba(37, 99, 235, 0.8),   /* strong at the left */
    rgba(37, 99, 235, 0.2),   /* fading out to the right */
    rgba(148, 163, 184, 0.0)  /* almost invisible at the tail end */
  );
  transform-origin: left;
  transform: scaleX(0);
  opacity: 0;
}

/* active item: animate the runway in from left */
.nav-item-active::before {
  animation: runway-in 0.28s ease-out forwards;
}

/* keyframes for sliding runway */
@keyframes runway-in {
  from {
    transform: scaleX(0);
    opacity: 0;
  }
  to {
    transform: scaleX(1);
    opacity: 1;
  }
}

/* ===== Tail fin – hover only ===== */

.nav-item::after {
  content: "";
  position: absolute;
  right: -6px; /* closer to the text */
  top: 50%;
  width: 10px; /* slightly smaller fin */
  height: 14px;
  background: linear-gradient(135deg, #1f4f82, #2563eb);
  clip-path: polygon(0 50%, 100% 0, 100% 100%);
  box-shadow: 0 4px 10px rgba(37, 99, 235, 0.45);
  transform: translateY(-50%) scaleX(0.3);
  opacity: 0;
  pointer-events: none;
  transition:
    transform 0.18s ease-out,
    opacity 0.18s ease-out;
}

.nav-item:hover::after {
  opacity: 1;
  transform: translate(1px, -50%) scaleX(1); /* much less horizontal shift */
}

/* Mobile hamburger */
.nav-toggle {
  border: none;
  background: transparent;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  padding: 6px;
  cursor: pointer;
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: #4b5563;
  display: block;
  transition: transform 0.18s ease-out, opacity 0.18s ease-out;
}

/* X when open */
.nav-open .nav-toggle span:nth-child(1) {
  transform: translateY(3px) rotate(45deg);
}

.nav-open .nav-toggle span:nth-child(2) {
  transform: translateY(-3px) rotate(-45deg);
}

/* Mobile dropdown */
.nav-open .nav-bar {
  display: flex;
  flex-direction: column;
  position: absolute;
  right: 0px;
  top: 60px;
  padding: 10px 10px;
  border-radius: 12px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.28);
  z-index: 20;
}

.nav-open .nav-item {
  width: 200px;
}

/* Desktop mode */
@media (min-width: 900px) {
  .nav-toggle {
    display: none;
  }

  .nav-bar {
    display: flex;
  }

  .nav-open .nav-bar {
    position: static;
    flex-direction: row;
    padding: 0;
    border-radius: 0;
    background: transparent;
    border: none;
    box-shadow: none;
  }

  .nav-open .nav-item {
    width: auto;
  }
}

/* ===== Focus page layout refinements ===== */

/* Single-column layout variant – keep it left aligned inside the card */
.layout.layout--single {
  grid-template-columns: minmax(0, 1fr);
  max-width: 100%;
  margin: 0;             /* IMPORTANT: no auto-centering */
  gap: 22px;
}

@media (min-width: 900px) {
  .layout.layout--single {
    grid-template-columns: minmax(0, 1fr);
    gap: 24px;
  }
}

/* Slightly tighter meta-list spacing for text-heavy pages */
.layout--single .meta-list {
  margin-top: 6px;
  margin-bottom: 18px;
}

/* ===== Blockquote styling for focus page ===== */

.focus-quote {
  position: relative;
  margin: 18px 0 20px 0;
  padding: 12px 16px 12px 18px;
  border-radius: 14px;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.06);
}

.focus-quote::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  bottom: 12px;
  width: 3px;
  border-radius: 999px;
  background: linear-gradient(
    180deg,
    #1f4f82,
    #2563eb
  );
}

.focus-quote-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #6b7280;
  margin-bottom: 4px;
}

.focus-quote-label::before {
  content: "✈";
  font-size: 0.75rem;
  opacity: 0.8;
}

.focus-quote p {
  font-size: 0.88rem;
  color: #374151;
  line-height: 1.5;
  margin: 0;
}

/* Universal left-pin for all content sections */

.page-inner {
  display: grid;
  gap: 24px;
  justify-items: start;
  align-items: start;
}

.layout {
  display: grid;
  gap: 32px;
  justify-items: start;
  align-items: start;
}

.content-block {
  width: 100%;
  max-width: 720px;          /* nice readable width */
  margin: 0;                 /* no auto-centering */
  padding: 0;
  text-align: left;
}

/* ===== Resources page – cards ===== */

.resource-grid {
  display: grid;
  gap: 16px;
  margin-top: 18px;
}

@media (min-width: 768px) {
  .resource-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }
}

@media (min-width: 1100px) {
  .resource-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 18px;
  }
}

.resource-card {
  background: #f9fafb;
  border-radius: 18px;
  border: 1px solid #e5e7eb;
  padding: 14px 16px 14px 16px;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
  transition:
    transform 0.16s ease-out,
    box-shadow 0.16s ease-out,
    border-color 0.16s ease-out,
    background 0.16s ease-out;
}

.resource-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.10);
  border-color: #c7d2fe;
  background: #f5f7ff;
}

.resource-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 8px;
}

.resource-card-title {
  font-size: 0.98rem;
  font-weight: 600;
  color: #111827;
}

.resource-card-text {
  font-size: 0.88rem;
  color: #4b5563;
  line-height: 1.5;
  margin: 2px 0 10px 0;
}

.resource-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  font-size: 0.75rem;
  color: #6b7280;
}

.resource-card-tag {
  padding: 3px 8px;
  border-radius: 999px;
  border: 1px solid #e5e7eb;
  background: #ffffff;
}

/* status chip in header */
.resource-chip {
  font-size: 0.7rem;
  border-radius: 999px;
  padding: 4px 8px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  white-space: nowrap;
}

.resource-chip-status {
  background: #fef9c3;
  border: 1px solid #facc15;
  color: #854d0e;
}

/* ===== Resources – accordion layout ===== */

.resource-section {
  margin-top: 24px;
}

.resource-section-title {
  font-size: 1rem;
  font-weight: 600;
  color: #111827;
  margin-bottom: 4px;
}

.resource-section-subtitle {
  font-size: 0.9rem;
  color: #6b7280;
  margin-bottom: 10px;
}

.resource-accordion {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 8px;
}

/* Individual accordion item */

.resource-accordion-item {
  position: relative;
  border-radius: 18px;
  border: 1px solid #e5e7eb;
  background: #f9fafb;
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.05);
  overflow: hidden;
  transition:
    box-shadow 0.18s ease-out,
    border-color 0.18s ease-out,
    background 0.18s ease-out,
    transform 0.18s ease-out;
}

/* subtle top "runway" strip in brand colours */
.resource-accordion-item::before {
  content: "";
  position: absolute;
  left: 10px;
  right: 10px;
  top: 0;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, #1f4f82, #2563eb, #60a5fa);
  opacity: 0.5;
}

.resource-accordion-item.is-open {
  background: #eef2ff;
  border-color: #c7d2fe;
  box-shadow: 0 16px 32px rgba(129, 140, 248, 0.25);
  transform: translateY(-1px);
}

/* Header button */

.resource-accordion-header {
  width: 100%;
  padding: 10px 14px 10px 16px;
  border: none;
  background: transparent;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px;
  text-align: left;
  cursor: pointer;
}

.resource-accordion-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: #111827;
}

.resource-accordion-summary {
  font-size: 0.84rem;
  color: #6b7280;
  margin-top: 2px;
}

.resource-accordion-right {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Reuse chip styling from earlier */
.resource-chip {
  font-size: 0.7rem;
  border-radius: 999px;
  padding: 4px 8px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  white-space: nowrap;
}

.resource-chip-status {
  background: #fef9c3;
  border: 1px solid #facc15;
  color: #854d0e;
}

/* Arrow icon */

.resource-accordion-icon {
  font-size: 0.8rem;
  color: #6b7280;
  transition: transform 0.18s ease-out, color 0.18s ease-out;
}

.resource-accordion-item.is-open .resource-accordion-icon {
  transform: rotate(180deg);
  color: #1d4ed8;
}

/* Body */

.resource-accordion-body {
  padding: 0 16px 0 16px;
  font-size: 0.86rem;
  color: #4b5563;
  line-height: 1.5;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.22s ease-out;
}

.resource-accordion-body p {
  margin: 8px 0;
}

.resource-accordion-body ul {
  margin: 4px 0 8px 18px;
  padding-left: 0;
}

.resource-accordion-body li {
  margin-bottom: 4px;
}

.resource-accordion-footnote {
  font-size: 0.78rem;
  color: #6b7280;
  margin-top: 4px;
}

/* Footer area inside each accordion body */

.resource-accordion-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin: 10px 0 10px 0;
  padding-top: 8px;
  border-top: 1px dashed #e5e7eb;
}

.resource-accordion-footer-text {
  font-size: 0.78rem;
  color: #6b7280;
}

/* Button styled in AIRPERTURE colours */

.resource-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid #93c5fd;
  background: #ffffff;
  font-size: 0.8rem;
  font-weight: 500;
  color: #1d4ed8;
  cursor: not-allowed; /* for now – looks disabled */
  text-decoration: none;
  white-space: nowrap;
  transition:
    background 0.18s ease-out,
    box-shadow 0.18s ease-out,
    transform 0.18s ease-out;
}

.resource-button::after {
  content: "↗";
  font-size: 0.78rem;
  margin-left: 6px;
  opacity: 0.8;
}

.resource-button:hover {
  background: #eff6ff;
  box-shadow: 0 8px 18px rgba(59, 130, 246, 0.25);
  transform: translateY(-1px);
}

/* When you eventually make it a real link, remove this */
.resource-button.is-active {
  cursor: pointer;
}

/* ===== Contributors page ===== */

.contributors-section {
  margin-top: 26px;
}

.contributors-section-title {
  font-size: 1rem;
  font-weight: 600;
  color: #111827;
  margin-bottom: 10px;
}

.contributors-grid {
  display: grid;
  gap: 14px;
  margin-top: 6px;
}

@media (min-width: 900px) {
  .contributors-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }
}

.contributor-card {
  position: relative;
  background: #f9fafb;
  border-radius: 18px;
  border: 1px solid #e5e7eb;
  padding: 14px 16px;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.04);
  overflow: hidden;
  transition:
    box-shadow 0.18s ease-out,
    border-color 0.18s ease-out,
    transform 0.18s ease-out,
    background 0.18s ease-out;
}

/* Top “runway” accent in AIRPERTURE blue */
.contributor-card::before {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  top: 0;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, #1f4f82, #2563eb, #60a5fa);
  opacity: 0.55;
}

.contributor-card:hover {
  background: #eef2ff;
  border-color: #c7d2fe;
  box-shadow: 0 14px 32px rgba(129, 140, 248, 0.22);
  transform: translateY(-1px);
}

.contributor-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 6px;
}

.contributor-avatar {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: radial-gradient(circle at 25% 20%, #ffffff, #bfdbfe 55%, #1f4f82 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0f172a;
  font-size: 0.84rem;
  font-weight: 600;
  box-shadow: none; /* no more shadow */
}

.contributor-name {
  font-size: 0.96rem;
  font-weight: 600;
  color: #111827;
}

.contributor-role {
  font-size: 0.8rem;
  color: #6b7280;
}

.contributor-bio {
  font-size: 0.86rem;
  color: #4b5563;
  margin: 8px 0 10px 0;
  line-height: 1.5;
}

.contributor-meta {
  display: grid;
  gap: 8px;

  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transform: translateY(4px);
  transition:
    max-height 0.25s ease-out,
    opacity 0.2s ease-out,
    transform 0.2s ease-out;
}

/* Two-column layout still kicks in on wider screens */
@media (min-width: 720px) {
  .contributor-meta {
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  }
}

/* On card hover: reveal the details */
.contributor-card:hover .contributor-meta {
  max-height: 220px;      /* large enough for both blocks */
  opacity: 1;
  transform: translateY(0);
}

.contributor-meta-block {
  font-size: 0.82rem;
}

.contributor-meta-label {
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #9ca3af;
  margin-bottom: 2px;
}

.contributor-meta-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contributor-meta-list li {
  margin-bottom: 2px;
}

.contributor-link {
  font-size: 0.84rem;
  color: #1d4ed8;
  text-decoration: none;
}

.contributor-link:hover {
  text-decoration: underline;
}

.contributor-link--muted {
  color: #9ca3af;
}

.contributor-social {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.contributor-social-link {
  font-size: 0.8rem;
  border-radius: 999px;
  border: 1px solid #d1d5db;
  padding: 3px 8px;
  text-decoration: none;
  color: #374151;
  background: #ffffff;
  transition:
    background 0.16s ease-out,
    border-color 0.16s ease-out,
    color 0.16s ease-out,
    box-shadow 0.16s ease-out;
}

.contributor-social-link:hover {
  background: #eff6ff;
  border-color: #93c5fd;
  color: #1d4ed8;
  box-shadow: 0 8px 18px rgba(59, 130, 246, 0.25);
}

.contributor-social-link--muted {
  border-style: dashed;
  color: #9ca3af;
}

/* Footer */

.footer {
  margin-top: 26px;
  padding-top: 16px;
  border-top: 1px solid rgba(209, 213, 219, 0.9);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-size: 0.78rem;
  color: var(--text-muted);
  flex-wrap: wrap;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
}

.footer-link {
  text-decoration: none;
  color: var(--text-muted);
}

.footer-link:hover {
  color: var(--accent);
}
