
/* Ensure event-cta links are always clickable and on top */
.event-card {
  position: relative;
  display: block;
  height: 100%;
  text-decoration: none;
  color: inherit;
}

.event-card-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.event-cta {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10;
  pointer-events: auto;
}



:root {
  --brand-navy: #0d2742;
  --brand-blue: #1463ad;
  --brand-cyan: #19b5d2;
  --brand-gold: #d9b36c;
  --ink-900: #102033;
  --ink-700: #4d6175;
  --ink-500: #73879d;
  --surface: #f5f8fb;
  --surface-strong: #edf3f8;
  --white: #ffffff;
  --shadow-soft: 0 18px 48px rgba(14, 40, 66, 0.08);
  --shadow-card: 0 16px 40px rgba(11, 31, 53, 0.12);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 16px;
  --container-max: 1200px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--ink-900);
  background:
    radial-gradient(circle at top left, rgba(30, 155, 182, 0.12), transparent 24%),
    linear-gradient(180deg, #fbfdff 0%, #f4f8fb 100%);
}

h1,
h2,
h3,
h4,
h5,
.display-1,
.display-2,
.display-3,
.display-4,
.display-5,
.display-6,
.brand-serif {
  font-family: 'Source Serif 4', serif;
  letter-spacing: -0.02em;
}

a {
  color: var(--brand-blue);
}

a:hover {
  color: var(--brand-navy);
}

img {
  max-width: 100%;
}

.section-shell {
  max-width: var(--container-max);
}

.site-navbar {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(13, 39, 66, 0.08);
}

.site-brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: linear-gradient(145deg, var(--brand-navy), var(--brand-cyan));
  color: var(--white);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-soft);
}

.navbar .nav-link {
  color: var(--ink-700);
  font-weight: 600;
}

.navbar .nav-link.active,
.navbar .nav-link:hover {
  color: var(--brand-navy);
}

.hero-section {
  position: relative;
  overflow: hidden;
  padding: 8rem 0 5rem;
}

.hero-section::before {
  content: '';
  position: absolute;
  inset: auto -10% -22% auto;
  width: 540px;
  height: 540px;
  background: radial-gradient(circle, rgba(30, 155, 182, 0.16), transparent 66%);
  pointer-events: none;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  background: rgba(29, 95, 167, 0.08);
  color: var(--brand-blue);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-panel,
.glass-panel {
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(13, 39, 66, 0.08);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
}

.hero-copy p,
.section-copy {
  color: var(--ink-700);
  font-size: 1.05rem;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.metric-card {
  padding: 1.25rem;
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(237, 243, 248, 0.95));
  border: 1px solid rgba(13, 39, 66, 0.08);
}

.metric-value {
  font-family: 'Source Serif 4', serif;
  font-size: 2rem;
  color: var(--brand-navy);
  line-height: 1;
}

.metric-label {
  color: var(--ink-700);
  font-size: 0.9rem;
}

.orbital-card {
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, #0d2742 0%, #143d68 62%, #1e9bb6 100%);
  color: var(--white);
  border-radius: var(--radius-xl);
  padding: 2rem;
  min-height: 100%;
  box-shadow: var(--shadow-card);
}

.orbital-card::after {
  content: '';
  position: absolute;
  right: -60px;
  bottom: -60px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.2), transparent 70%);
}

.badge-soft {
  background-color: rgba(29, 95, 167, 0.1);
  color: var(--brand-blue);
  border-radius: 999px;
  font-weight: 700;
}

.section-block {
  padding: 5rem 0;
}

.content-card,
.journal-card,
.contact-card,
.value-card {
  background: var(--white);
  border: 1px solid rgba(13, 39, 66, 0.08);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  height: 100%;
}

.content-card,
.journal-card {
  padding: 1.5rem;
}

.meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  color: var(--ink-500);
  font-size: 0.92rem;
}

.journal-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  background: var(--surface);
  color: var(--ink-700);
  font-size: 0.85rem;
  font-weight: 600;
}

.info-ribbon {
  border-radius: var(--radius-lg);
  background: linear-gradient(120deg, rgba(13, 39, 66, 0.98), rgba(29, 95, 167, 0.94));
  color: var(--white);
  padding: 1.6rem;
  box-shadow: var(--shadow-card);
}

.highlight-slider {
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
}

.highlight-slider-track {
  position: relative;
  flex: 1;
  min-height: 200px;
}

.highlight-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateX(12px);
  transition: opacity 0.35s ease, transform 0.35s ease;
  pointer-events: none;
  border-radius: var(--radius-md);
  background-size: cover;
  background-position: center bottom;
  overflow: hidden;
}

.highlight-slide.is-active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

.highlight-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.08) 0%, rgba(0,0,0,0.78) 100%);
  pointer-events: none;
}

.highlight-slide-link {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
  padding: 0;
  text-decoration: none;
  color: var(--white);
  position: relative;
  z-index: 1;
}

.highlight-slide-link:hover {
  color: var(--white);
}

.highlight-slide-link:hover .highlight-slide-cta {
  gap: 0.5rem;
}

.highlight-slide-body {
  padding: 0.95rem 1rem 1rem;
}

.highlight-slide-title {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--white);
  margin: 0 0 0.5rem;
  line-height: 1.35;
}

.highlight-slide-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: rgba(255,255,255,0.9);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: gap 0.2s ease;
}

.highlight-slider-controls {
  display: inline-flex;
  gap: 0.4rem;
}

.highlight-slider-btn {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
}

.highlight-slider-btn:hover {
  background: rgba(255, 255, 255, 0.2);
}

.highlight-slider-dots {
  display: flex;
  justify-content: center;
  gap: 0.4rem;
  margin-top: 0.8rem;
}

.highlight-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.34);
}

.highlight-dot.is-active {
  width: 20px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.9);
}

.timeline-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.timeline-list li {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(13, 39, 66, 0.08);
}

.timeline-list li:last-child {
  border-bottom: 0;
}

.timeline-date {
  font-weight: 700;
  color: var(--brand-blue);
}

.announcement-link:hover {
  text-decoration: underline !important;
  color: var(--brand-blue) !important;
}

.data-callout {
  background: linear-gradient(180deg, rgba(217, 179, 108, 0.13), rgba(255, 255, 255, 0.95));
  border: 1px solid rgba(217, 179, 108, 0.35);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}

.page-hero {
  padding: 7rem 0 3.5rem;
}

.page-hero.compact {
  padding-bottom: 2.5rem;
}

.editorial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.editorial-chip {
  background: var(--surface);
  border-radius: var(--radius-md);
  padding: 1rem;
  border: 1px solid rgba(13, 39, 66, 0.08);
}

.filter-shell {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(13, 39, 66, 0.08);
  border-radius: var(--radius-lg);
  padding: 1rem;
  box-shadow: var(--shadow-soft);
}

.contact-card {
  padding: 1.8rem;
}

.contact-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(29, 95, 167, 0.1);
  color: var(--brand-blue);
  font-size: 1.1rem;
}

/* Contact page readability and spacing */
.contact-main-section {
  padding-top: 1.5rem;
}

.contact-main-section .col-lg-5,
.contact-main-section .col-lg-7,
.contact-page .contact-card,
.contact-page .hero-panel,
.contact-page .info-ribbon {
  min-width: 0;
}

.contact-page .hero-panel {
  border-radius: 24px;
}

.contact-page .info-ribbon h2 {
  font-size: clamp(1.15rem, 2vw, 1.45rem);
}

.contact-quick-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.contact-page .contact-card {
  padding: 1.35rem 1.4rem;
}

.contact-detail-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.35rem;
}

.contact-detail-list li {
  font-size: 0.92rem;
  color: var(--ink-600);
}

.contact-detail-list li span {
  font-weight: 700;
  color: var(--ink-800);
}

.contact-page .contact-card p,
.contact-page .contact-card li {
  line-height: 1.45;
}

.contact-page .contact-card p,
.contact-page .contact-card li,
.contact-page .contact-card a,
.contact-page .info-ribbon,
.proposal-links li a {
  overflow-wrap: anywhere;
  word-break: break-word;
}

.contact-page .contact-card .small-note {
  margin-bottom: 0.3rem;
}

.proposal-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.5rem;
}

.proposal-links li a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 600;
}

.proposal-links li a::before {
  content: '\\2022';
  color: var(--brand-cyan);
}

.form-control,
.form-select {
  border-radius: 14px;
  padding: 0.85rem 1rem;
  border-color: rgba(13, 39, 66, 0.12);
}

.form-control:focus,
.form-select:focus,
.btn:focus-visible,
.nav-link:focus-visible,
.navbar-toggler:focus-visible {
  box-shadow: 0 0 0 0.25rem rgba(30, 155, 182, 0.22);
  outline: none;
}

.site-footer {
  background: #0a1726;
  color: rgba(255, 255, 255, 0.72);
}

.site-footer a {
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--white);
}

.footer-top {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.kpi-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.85rem;
}

.kpi-item {
  padding: 0.9rem 0.95rem;
  background: rgba(255, 255, 255, 0.8);
  border-radius: var(--radius-md);
  border: 1px solid rgba(13, 39, 66, 0.08);
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  transform: translateY(0);
  box-shadow: 0 4px 12px rgba(13, 39, 66, 0.06);
  transition:
    transform 260ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 260ms cubic-bezier(0.22, 1, 0.36, 1),
    border-color 260ms ease,
    background-color 260ms ease;
}

.kpi-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.38) 45%, transparent 75%);
  transform: translateX(-120%);
  transition: transform 520ms cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}

.kpi-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(13, 39, 66, 0.14);
  border-color: rgba(13, 39, 66, 0.16);
  background: rgba(255, 255, 255, 0.92);
}

.kpi-item:hover::after {
  transform: translateX(120%);
}

.kpi-item .h4 {
  font-size: clamp(0.95rem, 1.55vw, 1.16rem);
  line-height: 1.28;
  overflow-wrap: anywhere;
  word-break: break-word;
  margin-bottom: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.2rem;
}

.kpi-item .small {
  line-height: 1.15;
  margin-bottom: 0.32rem !important;
}

.kpi-item .h4 span {
  white-space: nowrap;
}

@media (prefers-reduced-motion: reduce) {
  .kpi-item,
  .kpi-item::after {
    transition: none;
  }

  .kpi-item:hover {
    transform: none;
  }
}

.image-panel {
  border-radius: var(--radius-xl);
  overflow: hidden;
  min-height: 420px;
  box-shadow: var(--shadow-card);
  background: linear-gradient(160deg, rgba(13, 39, 66, 0.94), rgba(29, 95, 167, 0.72)), url('https://images.unsplash.com/photo-1517048676732-d65bc937f952?auto=format&fit=crop&w=1200&q=80') center/cover;
}

.about-image {
  min-height: 100%;
  background: linear-gradient(180deg, rgba(10, 23, 38, 0.25), rgba(10, 23, 38, 0.45)), url('https://images.unsplash.com/photo-1521791136064-7986c2920216?auto=format&fit=crop&w=1200&q=80') center/cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-card);
}

.small-note {
  color: var(--ink-500);
  font-size: 0.92rem;
}

.events-archive-table .event-thumb-cell {
  width: 138px;
}

.events-archive-table .event-thumb {
  width: 120px;
  height: 72px;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid rgba(13, 39, 66, 0.1);
  box-shadow: 0 6px 16px rgba(13, 39, 66, 0.12);
  display: block;
}

[data-journal-card] {
  transition: transform 0.2s ease, opacity 0.2s ease;
}

[data-journal-card].is-hidden {
  display: none !important;
}

@media (max-width: 991.98px) {
  .hero-section {
    padding-top: 7rem;
  }

  .kpi-strip {
    gap: 0.75rem;
  }

  .kpi-item {
    padding: 0.8rem 0.85rem;
  }

  .kpi-strip,
  .editorial-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767.98px) {
  .metric-grid,
  .kpi-strip,
  .editorial-grid {
    grid-template-columns: 1fr;
  }

  .kpi-strip {
    gap: 0.6rem;
  }

  .kpi-item {
    padding: 0.75rem 0.8rem;
  }

  .timeline-list li {
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }

  .hero-section,
  .page-hero {
    padding-top: 6.5rem;
  }

  .orbital-card,
  .hero-panel,
  .image-panel {
    min-height: auto;
  }

  .highlight-slider-track {
    min-height: 200px;
  }

  .contact-page .contact-card {
    padding: 1.1rem 1rem;
  }

  .events-archive-table .event-thumb-cell {
    width: 116px;
  }

  .events-archive-table .event-thumb {
    width: 98px;
    height: 62px;
  }

  .contact-page .info-ribbon {
    padding: 1.2rem;
  }

  .contact-quick-actions {
    width: 100%;
  }

  .contact-quick-actions .btn {
    flex: 1 1 auto;
  }
}

@media (max-width: 575.98px) {
  .contact-main-section .row {
    --bs-gutter-x: 1rem;
  }

  .contact-page .hero-panel {
    padding: 1rem !important;
  }

  .contact-page .contact-card {
    padding: 1rem 0.9rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}

/* =========================================
   EVENTS SLIDER
   ========================================= */

.events-section {
  background: var(--surface);
}

.events-slider-track-wrapper {
  overflow: hidden;
  position: relative;
}

.events-slider-track {
  display: flex;
  gap: 1.25rem;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
  cursor: grab;
  user-select: none;
}

.events-slider-track.is-dragging {
  cursor: grabbing;
  transition: none;
}

.event-card {
  flex: 0 0 calc(33.333% - 0.835rem);
  min-width: 0;
  background: var(--white);
  border: 1px solid rgba(13, 39, 66, 0.08);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
  text-decoration: none;
  position: relative;
  z-index: 0;
}

.event-card-img {
  width: 100%;
  height: 170px;
  overflow: hidden;
  background: var(--surface);
}

.event-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.event-card:hover .event-card-img img {
  transform: scale(1.04);
}

.event-card:hover {
  box-shadow: var(--shadow-card);
  transform: translateY(-4px);
}

.event-card-header {
  padding: 0.85rem 1.25rem;
  background: var(--surface);
  border-bottom: 1px solid rgba(13, 39, 66, 0.07);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.event-type-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.77rem;
  font-weight: 700;
  color: var(--ec-color, var(--brand-blue));
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.event-date {
  font-size: 0.77rem;
  font-weight: 700;
  padding: 0.22rem 0.65rem;
  background: var(--white);
  border-radius: 999px;
  color: var(--ink-700);
  border: 1px solid rgba(13, 39, 66, 0.1);
  white-space: nowrap;
}

.event-card-body {
  padding: 1.25rem 1.25rem 3.2rem 1.25rem; /* extra bottom padding for button */
  flex: 1;
}

.event-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  color: var(--ink-500);
  font-size: 0.84rem;
}

.event-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.88rem 1.25rem;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--brand-blue);
  text-decoration: none;
  border-top: 1px solid rgba(13, 39, 66, 0.08);
  transition: background 0.2s ease, color 0.2s ease;
  position: relative;
  z-index: 10;
  pointer-events: auto;
}

.event-cta:hover {
  background: rgba(29, 95, 167, 0.05);
  color: var(--brand-navy);
}

.slider-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1.5px solid rgba(13, 39, 66, 0.14);
  background: var(--white);
  color: var(--ink-700);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.88rem;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: var(--shadow-soft);
}

.slider-btn:hover {
  background: var(--brand-navy);
  color: var(--white);
  border-color: var(--brand-navy);
}

.slider-btn:disabled {
  opacity: 0.35;
  pointer-events: none;
}

.events-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.25rem;
}

.events-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(13, 39, 66, 0.15);
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
  padding: 0;
}

.events-dot.is-active {
  width: 24px;
  background: var(--brand-blue);
}

/* =========================================
   JOURNAL LOGO BADGES
   ========================================= */

.journal-logo-badge {
  width: 52px;
  height: 52px;
  min-width: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.62rem;
  letter-spacing: 0.05em;
  color: var(--white);
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
  text-align: center;
  line-height: 1.2;
}

.journal-logo-slot {
  width: 52px;
  height: 52px;
  min-width: 52px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f3f7fb, #ecf3fa);
  border: 1px solid rgba(13, 39, 66, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
  overflow: hidden;
  flex-shrink: 0;
}

.journal-logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 0.35rem;
}

.journal-logo-fallback {
  display: none;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.62rem;
  letter-spacing: 0.05em;
  color: var(--white);
  background: linear-gradient(135deg, var(--brand-blue), var(--brand-cyan));
}

.journal-logo-slot.is-fallback .journal-logo-fallback {
  display: inline-flex;
}

.journal-logo-slot.is-fallback .journal-logo-img {
  display: none;
}

/* =========================================
   SCROLL REVEAL
   ========================================= */

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* =========================================
   ORBITAL CARD FLOAT ANIMATION
   ========================================= */

@keyframes floatY {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

.orbital-card {
  animation: floatY 6s ease-in-out infinite;
}

/* =========================================
   TRUST STRIP
   ========================================= */

.trust-strip-section {
  background: var(--surface);
  padding: 3rem 0;
  border-top: 1px solid rgba(13, 39, 66, 0.07);
}

.trust-label-heading {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  color: var(--ink-500);
  margin-bottom: 2rem;
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.3rem;
}

.trust-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(29, 95, 167, 0.09);
  color: var(--brand-blue);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  margin-bottom: 0.4rem;
}

.trust-label {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--ink-700);
}

.trust-value {
  font-size: 0.77rem;
  color: var(--ink-500);
}

/* =========================================
   SCROLL TO TOP BUTTON
   ========================================= */

.scroll-top-btn {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--brand-navy);
  color: var(--white);
  border: none;
  box-shadow: 0 4px 20px rgba(13, 39, 66, 0.35);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.3s ease, transform 0.3s ease, background 0.2s ease;
  z-index: 9999;
  pointer-events: none;
}

.scroll-top-btn.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.scroll-top-btn:hover {
  background: var(--brand-blue);
}

/* =========================================
   COUNTER ANIMATION TARGET
   ========================================= */

[data-counter] {
  display: inline-block;
}

/* =========================================
   EVENTS SLIDER RESPONSIVE
   ========================================= */

@media (max-width: 991.98px) {
  .event-card {
    flex: 0 0 calc(50% - 0.625rem);
  }
}

@media (max-width: 575.98px) {
  .event-card {
    flex: 0 0 100%;
  }

  .scroll-top-btn {
    bottom: 1.25rem;
    right: 1.25rem;
  }
}

/* =========================================
   LOGO & SEARCH ICON
   ========================================= */

.site-logo-img {
  height: 40px;
  width: auto;
  max-width: 180px;
  display: block;
  object-fit: contain;
  object-position: left;
}

.navbar .site-logo-img {
  height: 38px;
  max-width: 160px;
}

.footer-logo-wrap .site-logo-img {
  height: 56px;
  max-width: 220px;
  object-position: left;
}

.footer-logo-wrap {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.96);
  border-radius: var(--radius-md);
  padding: 0.6rem 1.1rem;
}

.nav-search-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-700);
  text-decoration: none;
  font-size: 0.9rem;
  transition: background 0.2s ease, color 0.2s ease;
}

.nav-search-icon:hover,
.nav-search-icon:focus {
  background: var(--surface);
  color: var(--brand-navy);
}

/* =========================================
   DROPDOWN MENU
   ========================================= */

.navbar .dropdown-menu {
  border: 1px solid rgba(13, 39, 66, 0.1);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  padding: 0.5rem;
  min-width: 215px;
}

.navbar .dropdown-item {
  border-radius: 10px;
  padding: 0.55rem 0.85rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink-700);
}

.navbar .dropdown-item:hover,
.navbar .dropdown-item:focus {
  background: var(--surface);
  color: var(--brand-navy);
}

.navbar .dropdown-divider {
  margin: 0.4rem 0.5rem;
  border-color: rgba(13, 39, 66, 0.08);
}

/* =========================================
   BREADCRUMB
   ========================================= */

.site-breadcrumb {
  margin-bottom: 1.1rem;
}

.breadcrumb {
  background: transparent;
  padding: 0;
  margin: 0;
  font-size: 0.82rem;
}

.breadcrumb-item a {
  color: var(--ink-500);
  text-decoration: none;
}

.breadcrumb-item a:hover {
  color: var(--brand-blue);
}

.breadcrumb-item.active {
  color: var(--ink-700);
  font-weight: 600;
}

.breadcrumb-item + .breadcrumb-item::before {
  content: "›";
  color: var(--ink-500);
  font-size: 1rem;
  line-height: 1;
}

/* =========================================
   POLICIES — TOC + CONTENT
   ========================================= */

.toc-sidebar {
  position: sticky;
  top: 88px;
}

.toc-nav-heading {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  color: var(--ink-500);
  margin-bottom: 0.75rem;
}

.toc-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.toc-list li a {
  display: block;
  padding: 0.45rem 0.85rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--ink-500);
  text-decoration: none;
  border-left: 2px solid rgba(13, 39, 66, 0.1);
  transition: all 0.2s ease;
}

.toc-list li a:hover,
.toc-list li a.is-current {
  color: var(--brand-blue);
  border-left-color: var(--brand-blue);
  background: rgba(29, 95, 167, 0.05);
  border-radius: 0 6px 6px 0;
}

.policy-section {
  scroll-margin-top: 96px;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(13, 39, 66, 0.07);
  margin-top: 2.5rem;
}

.policy-section:first-child {
  padding-top: 0;
  border-top: none;
  margin-top: 0;
}

.policy-list {
  list-style: none;
  padding: 0;
  margin: 0.5rem 0 0;
}

.policy-list li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(13, 39, 66, 0.06);
  font-size: 0.95rem;
}

.policy-list li:last-child {
  border-bottom: none;
}

.policy-list li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand-cyan);
  flex-shrink: 0;
  margin-top: 0.5rem;
}

/* =========================================
   SERVICE CARDS
   ========================================= */

.service-card {
  background: var(--white);
  border: 1px solid rgba(13, 39, 66, 0.08);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-soft);
  height: 100%;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.service-card:hover {
  box-shadow: var(--shadow-card);
  transform: translateY(-4px);
}

.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(20, 99, 173, 0.1), rgba(25, 181, 210, 0.12));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--brand-blue);
  margin-bottom: 1rem;
}

/* =========================================
   ANNOUNCEMENT CARDS
   ========================================= */

.announcement-card {
  background: var(--white);
  border: 1px solid rgba(13, 39, 66, 0.08);
  border-left: 3px solid var(--ann-color, var(--brand-blue));
  border-radius: var(--radius-lg);
  padding: 1.4rem 1.6rem;
  box-shadow: var(--shadow-soft);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
  text-decoration: none;
  display: block;
  color: inherit;
}

.announcement-card:hover {
  box-shadow: var(--shadow-card);
  transform: translateY(-2px);
  color: inherit;
}

.announcement-date {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--brand-blue);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* =========================================
   EVENT LIST CARDS
   ========================================= */

.event-list-card {
  background: var(--white);
  border: 1px solid rgba(13, 39, 66, 0.08);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.5rem;
  box-shadow: var(--shadow-soft);
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.event-list-card:hover {
  box-shadow: var(--shadow-card);
  transform: translateY(-2px);
}

.event-date-block {
  min-width: 64px;
  max-width: 64px;
  text-align: center;
  border-radius: var(--radius-md);
  padding: 0.75rem 0.5rem;
  flex-shrink: 0;
  color: white;
}

.event-date-day {
  font-size: 1.7rem;
  font-weight: 800;
  line-height: 1;
  font-family: 'Source Serif 4', serif;
}

.event-date-month {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.85;
}

/* =========================================
   SEARCH PAGE
   ========================================= */

.search-bar-wrapper {
  background: var(--white);
  border: 1.5px solid rgba(13, 39, 66, 0.12);
  border-radius: 999px;
  display: flex;
  align-items: center;
  padding: 0.35rem 0.5rem 0.35rem 1.4rem;
  box-shadow: var(--shadow-soft);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  max-width: 680px;
  margin: 0 auto;
}

.search-bar-wrapper:focus-within {
  border-color: var(--brand-blue);
  box-shadow: 0 0 0 4px rgba(20, 99, 173, 0.1);
}

.search-bar-input {
  border: none;
  outline: none;
  flex: 1;
  font-size: 1.05rem;
  background: transparent;
  color: var(--ink-900);
  font-family: 'Plus Jakarta Sans', sans-serif;
  padding: 0.55rem 0;
}

.search-result-item {
  background: var(--white);
  border: 1px solid rgba(13, 39, 66, 0.08);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.5rem;
  box-shadow: var(--shadow-soft);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.search-result-item:hover {
  box-shadow: var(--shadow-card);
  transform: translateY(-2px);
}

.search-result-type {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--brand-blue);
}

.filter-pill-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.filter-pill {
  padding: 0.38rem 1rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  border: 1.5px solid rgba(13, 39, 66, 0.12);
  background: transparent;
  color: var(--ink-700);
  cursor: pointer;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.filter-pill.is-active,
.filter-pill:hover {
  background: var(--brand-blue);
  color: white;
  border-color: var(--brand-blue);
}

.search-highlight {
  background: rgba(25, 181, 210, 0.16);
  border-radius: 3px;
  padding: 0 2px;
}

.no-results-msg {
  text-align: center;
  padding: 3rem 1rem;
  color: var(--ink-500);
}

/* =========================================
   SEARCH BAR EXTRAS
   ========================================= */

.search-bar-icon {
  color: var(--ink-400);
  font-size: 1rem;
  margin-right: 0.5rem;
  flex-shrink: 0;
}

.search-bar-btn {
  background: none;
  border: none;
  color: var(--ink-400);
  font-size: 1rem;
  padding: 0.35rem 0.75rem;
  cursor: pointer;
  transition: color 0.2s;
}

.search-bar-btn:hover {
  color: var(--ink-700);
}

.search-result-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.search-result-type {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--type-color, var(--brand-blue));
  background: color-mix(in srgb, var(--type-color, var(--brand-blue)) 12%, transparent);
  border-radius: 999px;
  padding: 0.2rem 0.7rem;
}

.search-result-arrow {
  display: flex;
  align-items: center;
  opacity: 0;
  transition: opacity 0.2s, transform 0.2s;
}

.search-result-item:hover .search-result-arrow {
  opacity: 1;
  transform: translateX(3px);
}

/* Event page helpers */

.event-type-badge {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.event-date {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--ink-500);
}

.event-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-size: 0.8rem;
  color: var(--ink-500);
}

.filter-shell {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 1rem 1.25rem;
}

.journal-menu-page {
  --journal-accent: #0d5f86;
  --journal-accent-strong: #084968;
  --journal-accent-soft: #e6f3f8;
  --journal-text: #1a3247;
  --journal-text-muted: #3f5568;
  --journal-border: rgba(13, 95, 134, 0.18);
  --journal-link: #0d5f86;
  --journal-link-hover: #05344a;
  color: var(--journal-text);
  line-height: 1.6;
  background:
    radial-gradient(circle at 88% 12%, rgba(25, 181, 210, 0.11), transparent 28%),
    radial-gradient(circle at 10% 32%, rgba(13, 39, 66, 0.08), transparent 26%),
    linear-gradient(180deg, #f9fcff 0%, #f2f8fd 44%, #edf5fb 100%);
}

.journal-menu-page .page-hero {
  background: linear-gradient(180deg, rgba(13, 39, 66, 0.03), rgba(13, 95, 134, 0.06));
  border-bottom: 1px solid rgba(13, 95, 134, 0.12);
}

.journal-menu-page .journal-menu-content a:not(.btn),
.journal-menu-page .timeline-list a,
.journal-menu-page .tasp-archive-table a {
  color: var(--journal-link);
  font-weight: 600;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

.journal-menu-page .journal-menu-content a:not(.btn):visited,
.journal-menu-page .timeline-list a:visited,
.journal-menu-page .tasp-archive-table a:visited {
  color: #4b4379;
}

.journal-menu-page .journal-menu-content a:not(.btn):hover,
.journal-menu-page .timeline-list a:hover,
.journal-menu-page .tasp-archive-table a:hover {
  color: var(--journal-link-hover);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.journal-menu-page .btn-dark {
  background: var(--journal-accent-strong);
  border-color: var(--journal-accent-strong);
  color: #ffffff;
}

.journal-menu-page .btn-dark:hover,
.journal-menu-page .btn-dark:focus-visible {
  background: #06364d;
  border-color: #06364d;
  color: #ffffff;
}

.journal-menu-page .btn-outline-dark {
  color: var(--journal-accent-strong);
  border-color: rgba(8, 73, 104, 0.6);
  background: #ffffff;
}

.journal-menu-page .btn-outline-dark:hover,
.journal-menu-page .btn-outline-dark:focus-visible {
  color: #ffffff;
  background: var(--journal-accent-strong);
  border-color: var(--journal-accent-strong);
}

.journal-menu-page .journal-menu-content .btn,
.journal-menu-page .journal-menu-content .btn:hover,
.journal-menu-page .journal-menu-content .btn:focus {
  text-decoration: none;
}

.tasp-hero-content .btn-outline-dark,
.tasp-issue-hero-content .btn-outline-dark {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.75);
  background: transparent;
}

.tasp-hero-content .btn-outline-dark:hover,
.tasp-hero-content .btn-outline-dark:focus-visible,
.tasp-issue-hero-content .btn-outline-dark:hover,
.tasp-issue-hero-content .btn-outline-dark:focus-visible {
  color: var(--brand-navy);
  background: #ffffff;
  border-color: #ffffff;
}

.journal-menu-page a:focus-visible {
  outline: 3px solid rgba(13, 95, 134, 0.35);
  outline-offset: 2px;
  border-radius: 6px;
}

.journal-menu-page .content-card,
.journal-menu-page .hero-panel,
.journal-menu-page .journal-menu-card,
.journal-menu-page .tasp-archive-table-wrap {
  border-color: var(--journal-border);
}

.journal-menu-page .section-copy,
.journal-menu-page .small-note,
.journal-menu-page .breadcrumb-item a,
.journal-menu-page .breadcrumb-item.active {
  color: var(--journal-text-muted);
}

.journal-menu-page .timeline-date {
  color: var(--journal-accent-strong);
}

.journal-menu-page .toc-list li a {
  color: #2d4458;
  border-left-color: rgba(13, 95, 134, 0.24);
}

.journal-menu-page .toc-list li a:hover,
.journal-menu-page .toc-list li a.is-current {
  color: var(--journal-accent-strong);
  border-left-color: var(--journal-accent);
  background: linear-gradient(90deg, rgba(13, 95, 134, 0.12), rgba(13, 95, 134, 0.03));
}

.journal-menu-page .tasp-article-meta span,
.journal-menu-page .journal-tag,
.journal-menu-page .badge-soft {
  border-color: rgba(13, 95, 134, 0.22);
  background: var(--journal-accent-soft);
  color: var(--journal-accent-strong);
  font-weight: 700;
}

.journal-menu-page .tasp-stat-label,
.journal-menu-page .tasp-archive-table th {
  color: var(--journal-text-muted);
}

.tasp-publisher-section {
  border: 1px solid var(--journal-border);
  background: linear-gradient(170deg, rgba(255, 255, 255, 0.97), rgba(234, 244, 251, 0.88));
}

.tasp-brand-logos {
  display: grid;
  gap: 0.75rem;
}

.tasp-brand-card {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border: 1px solid var(--journal-border);
  border-radius: 12px;
  padding: 0.7rem 0.8rem;
  background: #ffffff;
}

.tasp-brand-emblem {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: #ffffff;
  background: linear-gradient(145deg, #0d2742, #0d5f86);
  box-shadow: 0 10px 20px rgba(13, 39, 66, 0.18);
  flex-shrink: 0;
}

.tasp-publisher-logo {
  width: 140px;
  max-width: 100%;
  height: auto;
  flex-shrink: 0;
}

.journal-menu-page .page-hero.compact {
  padding-bottom: 2.2rem;
}

.journal-menu-card {
  border: 1px solid rgba(13, 39, 66, 0.1);
}

.journal-menu-card .toc-list {
  max-height: min(68vh, 620px);
  overflow: auto;
  padding-right: 0.2rem;
}

.journal-menu-toggle {
  display: none;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  border: 1px solid var(--journal-border, rgba(13, 95, 134, 0.2));
  border-radius: 10px;
  background: #ffffff;
  color: var(--journal-accent-strong, #084968);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.62rem 0.75rem;
}

.journal-menu-toggle i {
  transition: transform 0.2s ease;
}

.journal-menu-content .hero-panel {
  line-height: 1.62;
}

.journal-menu-content .hero-panel ul {
  padding-left: 1.2rem;
}

.journal-menu-content .hero-panel li {
  margin-bottom: 0.45rem;
}

.tasp-home-redesign .policy-section {
  border-top-color: rgba(13, 39, 66, 0.09);
}

.tasp-hero-shell {
  /*display: grid;*/
  grid-template-columns: minmax(0, 1.55fr) minmax(260px, 0.95fr);
  gap: 1.2rem;
  padding: 1.2rem;
  border-radius: 26px;
  background: linear-gradient(140deg, rgba(255, 255, 255, 0.94), rgba(235, 244, 252, 0.85));
  border: 1px solid rgba(13, 39, 66, 0.12);
  box-shadow: 0 24px 40px rgba(9, 31, 52, 0.08);
}

.tasp-hero-content {
  background: linear-gradient(160deg, rgba(13, 39, 66, 0.97), rgba(20, 99, 173, 0.9));
  color: #f3f7fb;
  border-radius: 20px;
  padding: 1.8rem;
  position: relative;
  overflow: hidden;
}

.tasp-hero-content::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  right: -80px;
  top: -90px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.28), transparent 70%);
  pointer-events: none;
}

.tasp-hero-content .eyebrow {
  background: rgba(255, 255, 255, 0.14);
  color: #e8f4ff;
}

.tasp-hero-content p,
.tasp-hero-content .journal-tag {
  color: rgba(243, 247, 251, 0.9);
}

.tasp-hero-content .journal-tag {
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.tasp-cover-panel {
  background: var(--white);
  border-radius: 18px;
  border: 1px solid rgba(13, 39, 66, 0.1);
  padding: 1rem;
}

.tasp-cover-panel .journal-issue-cover {
  background: linear-gradient(180deg, #ffffff, #f3f7fb);
  padding: 0.4rem;
}

.tasp-intelligence-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.9rem;
}

.tasp-stat-tile {
  background: linear-gradient(165deg, #ffffff, #eef4fa);
  border: 1px solid rgba(13, 39, 66, 0.1);
  border-radius: 14px;
  padding: 1rem 1.1rem;
  box-shadow: 0 12px 24px rgba(9, 31, 52, 0.06);
}

.tasp-stat-label {
  display: block;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-500);
  font-weight: 700;
  margin-bottom: 0.35rem;
}

.tasp-stat-value {
  font-family: 'Source Serif 4', serif;
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  line-height: 1.15;
  color: var(--brand-navy);
}

.tasp-feature-card {
  padding: 1.65rem;
  border-width: 1px;
}

.recent-article-slider {
  position: relative;
}

.recent-article-track {
  position: relative;
  min-height: 360px;
}

.recent-article-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transform: translateX(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.recent-article-slide.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}

.recent-article-meta {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.28rem 0.65rem;
  border-radius: 999px;
  border: 1px solid rgba(13, 95, 134, 0.28);
  background: rgba(13, 95, 134, 0.08);
  color: var(--journal-accent-strong);
  font-size: 0.82rem;
  font-weight: 700;
}

.recent-article-slider-controls {
  display: inline-flex;
  gap: 0.45rem;
}

.recent-article-slider-btn {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  border: 1px solid rgba(13, 95, 134, 0.4);
  background: #ffffff;
  color: var(--journal-accent-strong);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
}

.recent-article-slider-btn:hover,
.recent-article-slider-btn:focus-visible {
  background: var(--journal-accent-strong);
  border-color: var(--journal-accent-strong);
  color: #ffffff;
}

.recent-article-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  margin-top: 0.9rem;
}

.recent-article-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: none;
  background: rgba(13, 95, 134, 0.3);
}

.recent-article-dot.is-active {
  width: 22px;
  border-radius: 999px;
  background: var(--journal-accent-strong);
}

.tasp-mini-insight {
  padding: 1.3rem 1.35rem;
  border: 1px solid rgba(13, 39, 66, 0.1);
}

.tasp-issues-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.tasp-issue-card {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  padding: 1rem;
  border-radius: 14px;
  border: 1px solid rgba(13, 39, 66, 0.1);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(242, 247, 252, 0.92));
  box-shadow: 0 12px 24px rgba(9, 31, 52, 0.06);
}

.tasp-issue-card .journal-issue-cover,
.tasp-issue-hero-cover .journal-issue-cover {
  background: linear-gradient(180deg, #ffffff, #f3f7fb);
  padding: 0.4rem;
}

.tasp-issue-hero {
  display: grid;
  grid-template-columns: minmax(200px, 300px) minmax(0, 1fr);
  gap: 1rem;
  border-radius: 22px;
  border: 1px solid rgba(13, 39, 66, 0.12);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.96), rgba(236, 244, 251, 0.9));
  padding: 1rem;
  box-shadow: 0 20px 34px rgba(9, 31, 52, 0.08);
}

.tasp-issue-hero-cover {
  background: var(--white);
  border-radius: 16px;
  padding: 0.7rem;
  border: 1px solid rgba(13, 39, 66, 0.1);
}

.tasp-issue-hero-content {
  background: linear-gradient(145deg, rgba(13, 39, 66, 0.96), rgba(20, 99, 173, 0.9));
  border-radius: 16px;
  padding: 1.45rem;
  color: #f2f7fb;
}

.tasp-issue-hero-content .eyebrow {
  background: rgba(255, 255, 255, 0.15);
  color: #e9f4ff;
}

.tasp-issue-hero-content p,
.tasp-issue-hero-content h2 {
  color: #f2f7fb;
}

.tasp-issue-meta-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
}

.tasp-issue-meta-item {
  border-radius: 12px;
  padding: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
}

.tasp-issue-meta-item span {
  display: block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  opacity: 0.86;
  margin-bottom: 0.2rem;
}

.tasp-issue-meta-item p,
.tasp-issue-meta-item a {
  margin: 0;
  color: #ffffff;
  font-weight: 600;
  font-size: 0.92rem;
}

.tasp-article-item {
  border: 1px solid rgba(13, 39, 66, 0.1);
  border-left: 4px solid var(--brand-blue);
  border-radius: 12px;
  padding: 1rem 1rem 0.95rem;
  margin-bottom: 0.8rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(242, 247, 252, 0.9));
}

.tasp-article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.tasp-article-meta span {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--ink-700);
  padding: 0.23rem 0.5rem;
  border-radius: 999px;
  background: rgba(20, 99, 173, 0.1);
  border: 1px solid rgba(20, 99, 173, 0.16);
}

.tasp-archive-kpis {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.55rem;
  width: min(100%, 420px);
}

.tasp-archive-kpis div {
  border-radius: 12px;
  border: 1px solid rgba(13, 39, 66, 0.1);
  padding: 0.6rem 0.65rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(243, 247, 252, 0.95));
}

.tasp-archive-kpis span {
  display: block;
  font-size: 0.69rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-500);
  font-weight: 700;
  margin-bottom: 0.2rem;
}

.tasp-archive-kpis p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--brand-navy);
  font-weight: 700;
}

.tasp-archive-table-wrap {
  border-radius: 12px;
  border: 1px solid rgba(13, 39, 66, 0.1);
}

.tasp-archive-table {
  --bs-table-bg: #ffffff;
  --bs-table-striped-bg: #f3f7fb;
}

.tasp-archive-table th {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-500);
  border-bottom-width: 1px;
}

.tasp-archive-table td,
.tasp-archive-table th {
  padding: 0.85rem 0.95rem;
  vertical-align: middle;
}

.tasp-archive-table tbody tr:nth-child(even) {
  background: rgba(243, 247, 252, 0.7);
}

.journal-issue-card {
  border: 1px solid rgba(13, 39, 66, 0.1);
}

.journal-profile-card {
  border: 1px solid rgba(13, 39, 66, 0.1);
}

.editor-chief-card {
  text-align: center;
}

.editor-chief-photo {
  width: 96px;
  height: 96px;
  border-radius: 999px;
  object-fit: cover;
  border: 3px solid rgba(13, 39, 66, 0.12);
  box-shadow: 0 8px 20px rgba(13, 39, 66, 0.12);
}

.journal-issue-cover {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
  display: block;
  border-radius: 10px;
  border: 1px solid rgba(13, 39, 66, 0.1);
  background: #f5f8fc;
}

/* =========================================
   RESPONSIVE — NEW PAGES
   ========================================= */

@media (max-width: 991.98px) {
  .toc-sidebar {
    position: static;
    margin-bottom: 2rem;
  }

  .journal-menu-toggle {
    display: inline-flex;
    margin-bottom: 0.65rem;
  }

  .tasp-hero-shell {
    grid-template-columns: 1fr;
  }

  .tasp-issue-hero {
    grid-template-columns: 1fr;
  }

  .tasp-intelligence-grid,
  .tasp-issues-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tasp-archive-kpis {
    width: 100%;
  }

  .journal-menu-card .toc-list {
    max-height: 55vh;
    overflow: auto;
    transition: opacity 0.2s ease;
  }

  .journal-menu-card.is-collapsed-mobile .toc-list {
    display: none;
  }

  .journal-menu-card:not(.is-collapsed-mobile) .journal-menu-toggle i {
    transform: rotate(180deg);
  }
}

@media (max-width: 767.98px) {
  .event-list-card {
    flex-direction: column;
    gap: 0.75rem;
  }

  .event-date-block {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    max-width: none;
    padding: 0.55rem 0.85rem;
  }

  .event-date-day {
    font-size: 1.3rem;
  }

  .navbar .site-logo-img {
    height: 34px;
    max-width: 140px;
  }

  .footer-logo-wrap .site-logo-img {
    height: 48px;
    max-width: 180px;
  }

  .journal-menu-content .hero-panel {
    padding: 1.2rem 1rem !important;
  }

  .tasp-publisher-section {
    padding: 1.2rem 1rem !important;
  }

  .tasp-brand-card {
    align-items: flex-start;
    flex-direction: column;
  }

  .tasp-publisher-logo {
    width: 124px;
  }

  .tasp-hero-shell,
  .tasp-feature-card,
  .tasp-mini-insight,
  .tasp-issue-card {
    padding: 1rem;
  }

  .tasp-intelligence-grid,
  .tasp-issues-grid {
    grid-template-columns: 1fr;
  }

  .recent-article-track {
    min-height: 440px;
  }

  .tasp-issue-hero-content {
    padding: 1.1rem;
  }

  .tasp-issue-meta-grid {
    grid-template-columns: 1fr;
  }

  .tasp-archive-kpis {
    grid-template-columns: 1fr;
  }

  .editor-chief-photo {
    width: 88px;
    height: 88px;
  }
}
