:root {
  --brand-950: #07141f;
  --brand-900: #0d2033;
  --brand-800: #15344f;
  --brand-700: #1f4f77;
  --brand-600: #2c6aa0;
  --brand-500: #4289c5;
  --brand-200: #d8e8f5;
  --brand-100: #edf4fb;
  --accent-900: #114a45;
  --accent-700: #1b6c65;
  --accent-500: #2e8f86;
  --accent-200: #d9f0ee;
  --accent-100: #edf8f7;
  --gold-500: #c89a3d;
  --gold-200: #f3e4bf;
  --sand-100: #f6f1e8;
  --sand-50: #fcfaf6;
  --paper: #ffffff;
  --ink-950: #111827;
  --ink-800: #1f2937;
  --ink-700: #344054;
  --ink-500: #667085;
  --ink-300: #d0d5dd;
  --ink-200: #e4e7ec;
  --ink-100: #f2f4f7;
  --shadow-sm: 0 10px 24px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 22px 48px rgba(15, 23, 42, 0.1);
  --shadow-lg: 0 30px 70px rgba(15, 23, 42, 0.16);
  --radius-sm: 0.75rem;
  --radius-md: 1rem;
  --radius-lg: 1.5rem;
  --radius-xl: 2rem;
  --section-spacing: clamp(4rem, 6vw, 5.25rem);
  --font-heading: 'Roboto', sans-serif;
  --font-body: 'Open Sans', sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--ink-950);
  background:
    radial-gradient(circle at top left, rgba(66, 137, 197, 0.14), transparent 28%),
    radial-gradient(circle at top right, rgba(200, 154, 61, 0.12), transparent 24%),
    linear-gradient(180deg, #fffdf8 0%, var(--sand-100) 38%, #f0ece4 100%);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

main {
  position: relative;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--brand-900);
  font-family: var(--font-heading);
  letter-spacing: -0.03em;
}

p,
li,
label,
input,
textarea,
select,
button {
  letter-spacing: -0.01em;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease, transform 0.2s ease, opacity 0.2s ease;
}

a:hover {
  color: var(--brand-600);
}

img {
  max-width: 100%;
}

.font-heading {
  font-family: var(--font-heading);
}

.ls-1 {
  letter-spacing: 0.14em;
}

.ls-2 {
  letter-spacing: 0.22em;
}

.text-balance {
  text-wrap: balance;
}

.line-clamp-2,
.line-clamp-3 {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
}

.line-clamp-2 {
  -webkit-line-clamp: 2;
}

.line-clamp-3 {
  -webkit-line-clamp: 3;
}

.section-shell {
  padding: var(--section-spacing) 0;
}

.section-sand {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.42), rgba(246, 241, 232, 0.95));
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2rem;
}

.section-eyebrow {
  color: var(--accent-700);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  margin-bottom: 0.45rem;
  text-transform: uppercase;
}

.section-title {
  font-size: clamp(1.9rem, 2vw, 2.65rem);
}

.content-card,
.filter-panel,
.result-card,
.article-card,
.volume-card,
.profile-card,
.person-card,
.sidebar-card,
.metric-card,
.surface-card {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(208, 213, 221, 0.75);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.content-card,
.filter-panel,
.profile-card,
.person-card,
.sidebar-card,
.metric-card,
.surface-card {
  padding: 1.75rem;
}

.content-card.soft {
  background: linear-gradient(180deg, rgba(237, 244, 251, 0.8), rgba(255, 255, 255, 0.94));
}

.content-card.tight,
.sidebar-card {
  padding: 1.35rem;
}

.card-hover,
.result-card,
.article-card,
.volume-card,
.person-card {
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.card-hover:hover,
.result-card:hover,
.article-card:hover,
.volume-card:hover,
.person-card:hover {
  border-color: rgba(31, 79, 119, 0.28);
  box-shadow: var(--shadow-md);
  transform: translateY(-6px);
}

.tag-pill,
.meta-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  min-height: 2.25rem;
  padding: 0.5rem 0.95rem;
  border-radius: 999px;
  background: rgba(237, 244, 251, 0.95);
  border: 1px solid rgba(66, 137, 197, 0.2);
  color: var(--brand-800);
  font-size: 0.9rem;
  font-weight: 700;
}

.tag-pill {
  background: rgba(255, 255, 255, 0.86);
  border-color: rgba(208, 213, 221, 0.85);
  color: var(--ink-700);
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.2rem;
  color: var(--ink-500);
  font-size: 0.92rem;
}

.article-meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.btn {
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.btn-primary {
  background: linear-gradient(135deg, var(--brand-700), var(--brand-600));
  border-color: transparent;
  box-shadow: 0 16px 30px rgba(31, 79, 119, 0.2);
}

.btn-primary:hover,
.btn-primary:focus {
  background: linear-gradient(135deg, var(--brand-800), var(--brand-700));
  transform: translateY(-1px);
}

.btn-outline-primary {
  border-color: rgba(31, 79, 119, 0.24);
  color: var(--brand-800);
}

.btn-outline-primary:hover,
.btn-outline-primary:focus {
  background: var(--brand-900);
  border-color: var(--brand-900);
  color: #fff;
}

.btn-outline-light:hover,
.btn-outline-light:focus {
  color: var(--brand-900);
}

.btn-link {
  font-weight: 700;
}

.form-control,
.form-select,
.input-group-text,
textarea.form-control {
  border-radius: 1rem;
  border-color: rgba(208, 213, 221, 0.9);
  background-color: rgba(255, 255, 255, 0.96);
  color: var(--ink-950);
  min-height: 3.35rem;
}

.form-control,
.form-select,
textarea.form-control {
  box-shadow: none;
}

.form-control:focus,
.form-select:focus,
textarea.form-control:focus {
  border-color: rgba(66, 137, 197, 0.55);
  box-shadow: 0 0 0 0.28rem rgba(66, 137, 197, 0.14);
}

.input-group > .form-control,
.input-group > .form-select {
  border-left: 0;
}

.input-group-text {
  border-right: 0;
  color: var(--ink-500);
  padding-inline: 1rem;
}

.form-label {
  color: var(--ink-700);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  margin-bottom: 0.55rem;
  text-transform: uppercase;
}

.table {
  --bs-table-bg: transparent;
  --bs-table-border-color: rgba(208, 213, 221, 0.8);
}

.table thead th {
  color: var(--ink-500);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.table tbody td {
  color: var(--ink-800);
  padding-block: 1rem;
}

.breadcrumb {
  --bs-breadcrumb-divider-color: rgba(255, 255, 255, 0.45);
  --bs-breadcrumb-item-active-color: rgba(255, 255, 255, 0.95);
  margin-bottom: 0;
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.72);
}

.breadcrumb a:hover {
  color: #fff;
}

.search-pill .input-group {
  border: 1px solid rgba(208, 213, 221, 0.9);
  border-radius: 999px;
  overflow: hidden;
  background: #fff;
}

.search-pill .form-control,
.search-pill .input-group-text,
.search-pill .btn {
  border: 0;
  border-radius: 0;
}

.search-pill .form-control {
  min-height: 3.15rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1045;
  background: rgba(252, 250, 246, 0.86);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(208, 213, 221, 0.55);
}

.site-header.is-scrolled {
  box-shadow: var(--shadow-sm);
}

.site-header__utility {
  background: linear-gradient(90deg, rgba(13, 32, 51, 0.98), rgba(17, 74, 69, 0.94));
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.88rem;
}

.site-header__utility-link {
  color: rgba(255, 255, 255, 0.86);
}

.site-header__utility-link:hover {
  color: #fff;
}

.site-header .navbar {
  padding: 1rem 0;
}

.site-header__brand {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  min-width: 0;
}

.site-header__brand-mark {
  width: 3.35rem;
  height: 3.35rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 1.25rem;
  background: linear-gradient(145deg, rgba(31, 79, 119, 0.16), rgba(200, 154, 61, 0.16));
  border: 1px solid rgba(31, 79, 119, 0.12);
  box-shadow: var(--shadow-sm);
  flex: 0 0 auto;
}

.site-header__brand-mark img {
  max-height: 2rem;
}

.site-header__brand-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: flex-start;
}

.site-header__brand-title {
  display: block;
  color: var(--brand-900);
  font-family: var(--font-heading);
  font-size: 1.28rem;
  font-weight: 700;
  line-height: 1.05;
  white-space: normal;
  overflow-wrap: anywhere;
}

.site-header__brand-subtitle {
  display: block;
  color: var(--ink-500);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  margin-top: 0.2rem;
  line-height: 1.35;
  text-transform: uppercase;
  white-space: normal;
  overflow-wrap: anywhere;
}

.site-header .nav-link {
  color: var(--ink-700);
  font-size: 0.83rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  padding: 0.75rem 0.9rem !important;
  text-transform: uppercase;
}

.site-header .nav-link.active,
.site-header .nav-link:hover,
.site-header .dropdown-item:hover {
  color: var(--brand-700);
}

.site-header .dropdown-menu {
  border: 1px solid rgba(208, 213, 221, 0.7);
  border-radius: 1.4rem;
  box-shadow: var(--shadow-md);
}

.site-header .dropdown-item {
  border-radius: 0.8rem;
  font-weight: 700;
  padding-block: 0.7rem;
}

.site-header__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
}

.site-header__avatar {
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: var(--shadow-sm);
}

.latest-issue-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(5.5rem, 9vw, 8rem) 0;
  background:
    linear-gradient(115deg, rgba(7, 20, 31, 0.99), rgba(13, 32, 51, 0.97) 52%, rgba(17, 74, 69, 0.94));
  color: #fff;
}

.latest-issue-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.08;
  background-image: linear-gradient(rgba(255, 255, 255, 0.3) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.3) 1px, transparent 1px);
  background-size: 4rem 4rem;
  mask-image: linear-gradient(to right, transparent, #000 55%);
  pointer-events: none;
}

.latest-issue-hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  pointer-events: none;
}

.latest-issue-hero__orb--one {
  width: 28rem;
  height: 28rem;
  top: -17rem;
  left: 25%;
  background: rgba(200, 154, 61, 0.18);
}

.latest-issue-hero__orb--two {
  width: 34rem;
  height: 34rem;
  right: -15rem;
  bottom: -22rem;
  background: rgba(46, 143, 134, 0.24);
}

.latest-issue-hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
  color: var(--gold-200);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.latest-issue-hero__eyebrow span {
  width: 2.5rem;
  height: 2px;
  background: var(--gold-500);
}

.latest-issue-hero__title {
  max-width: 56rem;
  margin-bottom: 0.8rem;
  color: #fff;
  font-size: clamp(3rem, 6vw, 5.75rem);
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.latest-issue-hero__issue {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 1.25rem;
  padding: 0.55rem 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.92rem;
  font-weight: 700;
}

.latest-issue-hero__issue i {
  color: var(--gold-500);
}

.latest-issue-hero__summary {
  max-width: 48rem;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  line-height: 1.75;
}

.hero-library-search {
  display: grid;
  grid-template-columns: auto minmax(12rem, 1fr) auto auto;
  align-items: center;
  max-width: 52rem;
  padding: 0.45rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 1.2rem;
  background: #fff;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
}

.home-search-section {
  position: relative;
  z-index: 3;
  padding: 2.5rem 0;
  background: var(--sand-50);
  border-bottom: 1px solid rgba(208, 213, 221, 0.7);
}

.home-search-panel {
  display: grid;
  grid-template-columns: minmax(15rem, 0.65fr) minmax(24rem, 1.35fr);
  align-items: center;
  gap: 2rem;
}

.home-search-panel .hero-library-search {
  width: 100%;
  max-width: none;
  border-color: rgba(31, 79, 119, 0.14);
  box-shadow: var(--shadow-md);
}

.hero-library-search__icon {
  padding: 0 0.4rem 0 0.8rem;
  color: var(--brand-600);
  font-size: 1.1rem;
}

.hero-library-search input,
.hero-library-search select {
  min-width: 0;
  height: 3.5rem;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink-950);
  font: inherit;
}

.hero-library-search input {
  padding: 0 0.75rem;
}

.hero-library-search input::placeholder {
  color: var(--ink-500);
}

.hero-library-search select {
  padding: 0 2rem 0 1rem;
  border-left: 1px solid var(--ink-200);
  color: var(--ink-700);
  font-weight: 700;
}

.hero-library-search .btn {
  height: 3.5rem;
  padding-inline: 1.5rem;
  border-radius: 0.9rem;
}

.latest-issue-hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem;
}

.latest-issue-hero__actions {
  margin-top: 0;
}

.latest-issue-hero__trust {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: max-content;
  align-items: center;
  justify-content: start;
  gap: clamp(0.55rem, 2vw, 1.4rem);
  max-width: 100%;
  margin: 0 0 1.75rem;
  overflow-x: auto;
  scrollbar-width: none;
  color: rgba(255, 255, 255, 0.64);
  font-size: clamp(0.72rem, 2.5vw, 0.9rem);
  white-space: nowrap;
}

.latest-issue-hero__trust::-webkit-scrollbar {
  display: none;
}

.latest-issue-hero__trust span {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.latest-issue-hero__trust i {
  color: var(--gold-500);
}

.latest-issue-cover-wrap {
  position: relative;
  width: min(100%, 20rem);
  margin-inline: auto;
  padding: 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 1.75rem;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.34);
  transform: rotate(2deg);
}

.latest-issue-cover-wrap__label {
  position: absolute;
  z-index: 2;
  top: 2.2rem;
  left: -2rem;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  background: var(--gold-500);
  box-shadow: var(--shadow-md);
  color: var(--brand-950);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.latest-issue-cover {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: 1rem;
  background: var(--paper);
}

.latest-issue-cover > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.latest-issue-cover__fallback {
  display: flex;
  height: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  background:
    linear-gradient(150deg, rgba(237, 244, 251, 0.96), rgba(246, 241, 232, 0.94));
  color: var(--brand-900);
  text-align: center;
}

.latest-issue-cover__fallback img {
  max-width: 5rem;
  max-height: 5rem;
  margin-bottom: 1.5rem;
}

.latest-issue-cover__fallback span {
  margin-bottom: 2.5rem;
  color: var(--accent-700);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.latest-issue-cover__fallback strong {
  font-family: var(--font-heading);
  font-size: 2rem;
  line-height: 1.1;
}

.latest-issue-cover__fallback small {
  margin-top: 0.5rem;
  color: var(--ink-500);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.page-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(4.5rem, 7vw, 6.75rem) 0 clamp(3.5rem, 5.5vw, 5rem);
  background:
    radial-gradient(circle at 78% 20%, rgba(46, 143, 134, 0.2), transparent 25rem),
    radial-gradient(circle at 12% 110%, rgba(200, 154, 61, 0.2), transparent 22rem),
    linear-gradient(118deg, var(--brand-950) 0%, var(--brand-900) 52%, #123c58 100%);
  border-bottom: 4px solid var(--gold-500);
  color: #fff;
}

.page-hero::before,
.page-hero::after {
  content: '';
  position: absolute;
  pointer-events: none;
}

.page-hero::before {
  z-index: -1;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 3rem 3rem;
  -webkit-mask-image: linear-gradient(90deg, transparent 8%, #000 50%, #000 100%);
  mask-image: linear-gradient(90deg, transparent 8%, #000 50%, #000 100%);
}

.page-hero::after {
  z-index: -1;
  width: clamp(18rem, 30vw, 30rem);
  aspect-ratio: 1;
  top: 50%;
  right: clamp(-10rem, -7vw, -4rem);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  box-shadow:
    0 0 0 3.5rem rgba(255, 255, 255, 0.025),
    0 0 0 7rem rgba(255, 255, 255, 0.018);
  transform: translateY(-50%);
}

.page-hero__content {
  position: relative;
  z-index: 1;
  max-width: var(--bs-breakpoint-xl, 1140px);
  padding-left: clamp(2rem, 4vw, 4.25rem);
}

.page-hero__content::before {
  content: '';
  position: absolute;
  top: 0.15rem;
  bottom: 0.2rem;
  left: calc(var(--bs-gutter-x) * 0.5);
  width: 3px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--gold-500), rgba(200, 154, 61, 0.08));
}

.page-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--gold-200);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.page-hero__eyebrow::before {
  content: '';
  width: 2rem;
  height: 1px;
  background: var(--gold-500);
}

.page-hero__title {
  color: #fff;
  font-size: clamp(2.4rem, 4.4vw, 4.15rem);
  font-weight: 700;
  line-height: 1.08;
  max-width: 68rem;
  margin-bottom: 1.15rem;
  text-wrap: balance;
}

.page-hero__summary {
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(1rem, 1.4vw, 1.14rem);
  line-height: 1.75;
  max-width: 50rem;
  margin-bottom: 1.75rem;
  text-wrap: pretty;
}

.page-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-bottom: 2rem;
}

.page-hero__meta .meta-pill {
  min-height: 2.5rem;
  padding: 0.58rem 0.9rem;
  border-radius: 0.7rem;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.86rem;
  backdrop-filter: blur(8px);
}

.page-hero__meta .meta-pill i {
  color: var(--gold-200);
}

.page-hero nav[aria-label='breadcrumb'] {
  max-width: 58rem;
  padding-top: 1.1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
}

.page-hero .breadcrumb {
  font-size: 0.84rem;
  font-weight: 700;
}

.page-hero .breadcrumb-item + .breadcrumb-item::before {
  opacity: 0.7;
}

.page-hero__content > * {
  animation: pageHeroReveal 0.55s ease both;
}

.page-hero__content > :nth-child(2) {
  animation-delay: 0.05s;
}

.page-hero__content > :nth-child(3) {
  animation-delay: 0.1s;
}

.page-hero__content > :nth-child(n + 4) {
  animation-delay: 0.15s;
}

@keyframes pageHeroReveal {
  from {
    opacity: 0;
    transform: translateY(0.65rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

+.current-issue-page {
  background:
    radial-gradient(circle at 8% 18%, rgba(46, 143, 134, 0.07), transparent 22rem),
    linear-gradient(180deg, var(--sand-50), #fff 34rem);
}

.current-issue-overview {
  display: grid;
  grid-template-columns: minmax(17rem, 0.72fr) minmax(0, 1.8fr);
  overflow: hidden;
  border: 1px solid rgba(31, 79, 119, 0.14);
  border-radius: 1.75rem;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 28px 70px rgba(13, 32, 51, 0.1);
}

.current-issue-overview__cover-column {
  display: grid;
  place-items: center;
  min-height: 28rem;
  padding: clamp(2rem, 4vw, 3.25rem);
  background:
    radial-gradient(circle at top left, rgba(200, 154, 61, 0.2), transparent 45%),
    linear-gradient(145deg, var(--brand-100), var(--accent-100));
  border-right: 1px solid rgba(31, 79, 119, 0.1);
}

.current-issue-overview__cover-wrap {
  position: relative;
  width: min(100%, 14.5rem);
}

.current-issue-overview__badge {
  position: absolute;
  z-index: 3;
  top: 1.2rem;
  left: -1.35rem;
  padding: 0.5rem 0.85rem;
  border-radius: 0.55rem;
  background: var(--gold-500);
  box-shadow: 0 12px 24px rgba(7, 20, 31, 0.18);
  color: var(--brand-950);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.current-issue-overview__cover {
  min-height: 0;
  aspect-ratio: 3 / 4;
  border: 0.45rem solid #fff;
  border-radius: 0.7rem;
  box-shadow: 0 24px 45px rgba(13, 32, 51, 0.24);
}

.current-issue-overview__cover-fallback {
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 1.5rem;
  background:
    linear-gradient(rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.05)),
    linear-gradient(145deg, var(--brand-900), var(--accent-900));
  text-align: center;
}

.current-issue-overview__cover-fallback i {
  margin-bottom: 1.4rem;
  color: var(--gold-500);
  font-size: 2.2rem;
}

.current-issue-overview__cover-fallback span {
  margin-bottom: 2.4rem;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.current-issue-overview__cover-fallback strong {
  color: #fff;
  font-family: var(--font-heading);
  font-size: 1.65rem;
  line-height: 1.15;
}

.current-issue-overview__cover-fallback small {
  margin-top: 0.45rem;
  color: var(--gold-200);
  font-weight: 700;
}

.current-issue-overview__body {
  align-self: center;
  padding: clamp(2rem, 5vw, 4.5rem);
}

.current-issue-overview__title {
  margin-bottom: 1.1rem;
  color: var(--brand-950);
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  line-height: 1.1;
}

.current-issue-overview__description {
  max-width: 44rem;
  margin-bottom: 2rem;
  color: var(--ink-500);
  font-size: 1.02rem;
  line-height: 1.75;
}

.current-issue-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0 0 2rem;
  overflow: hidden;
  border: 1px solid rgba(31, 79, 119, 0.12);
  border-radius: 0.9rem;
  background: var(--sand-50);
}

.current-issue-facts > div {
  min-width: 0;
  padding: 1rem 1.1rem;
}

.current-issue-facts > div + div {
  border-left: 1px solid rgba(31, 79, 119, 0.12);
}

.current-issue-facts dt {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 0.35rem;
  color: var(--ink-500);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.current-issue-facts dt i {
  color: var(--accent-700);
}

.current-issue-facts dd {
  margin: 0;
  overflow-wrap: anywhere;
  color: var(--brand-900);
  font-weight: 800;
}

.current-issue-overview__actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.current-issue-overview__journal-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 0.5rem;
  color: var(--brand-700);
  font-size: 0.88rem;
  font-weight: 800;
}

.current-issue-overview__journal-link i {
  transition: transform 0.2s ease;
}

.current-issue-overview__journal-link:hover i {
  transform: translateX(3px);
}

.current-issue-toc-head {
  scroll-margin-top: 7rem;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid var(--ink-200);
}

.current-issue-toc-head__count {
  color: var(--brand-700);
  font-family: var(--font-heading);
  font-size: 1.65rem;
  font-weight: 700;
}

.current-issue-toc-head__count small {
  color: var(--ink-500);
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.current-issue-articles {
  display: grid;
  gap: 1rem;
}

.current-issue-article {
  display: grid;
  grid-template-columns: 4.75rem minmax(0, 1fr);
  overflow: hidden;
  border: 1px solid rgba(31, 79, 119, 0.14);
  border-radius: 1.25rem;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-sm);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.current-issue-article:hover {
  border-color: rgba(31, 79, 119, 0.3);
  box-shadow: 0 18px 40px rgba(13, 32, 51, 0.1);
  transform: translateY(-2px);
}

.current-issue-article__number {
  display: flex;
  justify-content: center;
  padding-top: 1.8rem;
  border-right: 1px solid rgba(31, 79, 119, 0.1);
  background: linear-gradient(180deg, var(--brand-100), rgba(237, 248, 247, 0.75));
  color: var(--brand-600);
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 800;
}

.current-issue-article__body {
  min-width: 0;
  padding: clamp(1.35rem, 3vw, 2rem);
}

.current-issue-article__type {
  margin-bottom: 0.65rem;
  color: var(--accent-700);
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.current-issue-article__title {
  margin-bottom: 0.7rem;
  font-size: clamp(1.2rem, 2vw, 1.48rem);
  line-height: 1.32;
}

.current-issue-article__title a:hover {
  color: var(--brand-600);
}

.current-issue-article__authors {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.12rem;
  margin-bottom: 1rem;
  color: var(--accent-700);
  font-size: 0.88rem;
  font-weight: 700;
}

.current-issue-article__separator {
  margin-right: 0.15rem;
  color: var(--ink-400);
}

.current-issue-article__abstract {
  margin-bottom: 1.25rem;
  color: var(--ink-500);
  font-size: 0.93rem;
  line-height: 1.7;
}

.current-issue-article__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(208, 213, 221, 0.75);
}

.current-issue-article__meta,
.current-issue-article__actions {
  display: flex;
  min-width: 0;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.current-issue-article__meta span {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 0.4rem;
  color: var(--ink-500);
  font-size: 0.78rem;
  font-weight: 700;
  overflow-wrap: anywhere;
}

.current-issue-article__meta i {
  color: var(--gold-500);
}

.current-issue-article__actions a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--brand-700);
  font-size: 0.8rem;
  font-weight: 800;
  white-space: nowrap;
}

.current-issue-article__actions a:hover {
  color: var(--accent-700);
}

.current-issue-sidebar {
  display: grid;
  gap: 1.25rem;
  top: 7rem;
}

.current-issue-journal-card__cover {
  width: 4.5rem;
  height: 4.5rem;
  flex: 0 0 auto;
  border-radius: 0.75rem;
  object-fit: cover;
  box-shadow: var(--shadow-sm);
}

.current-issue-journal-facts {
  display: grid;
  gap: 0;
  margin: 0;
  border-top: 1px solid var(--ink-200);
}

.current-issue-journal-facts > div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.65rem 0;
  border-bottom: 1px solid rgba(208, 213, 221, 0.7);
  font-size: 0.8rem;
}

.current-issue-journal-facts dt {
  color: var(--ink-500);
  font-weight: 600;
}

.current-issue-journal-facts dd {
  margin: 0;
  color: var(--brand-900);
  font-weight: 800;
  text-align: right;
}

.current-issue-previous {
  display: grid;
  grid-template-columns: 3rem minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.75rem;
  padding: 0.7rem;
  border: 1px solid rgba(208, 213, 221, 0.75);
  border-radius: 0.85rem;
  background: var(--sand-50);
}

.current-issue-previous:hover {
  border-color: rgba(31, 79, 119, 0.28);
  background: var(--brand-100);
  transform: translateX(2px);
}

.current-issue-previous__date {
  display: flex;
  width: 3rem;
  height: 3rem;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border-radius: 0.65rem;
  background: var(--brand-900);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.current-issue-previous__date small {
  color: var(--gold-200);
  font-size: 0.62rem;
}

.current-issue-previous__body {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 0.2rem;
}

.current-issue-previous__body strong {
  color: var(--brand-900);
  font-size: 0.8rem;
  line-height: 1.35;
}

.current-issue-previous__body small {
  color: var(--ink-500);
  font-size: 0.72rem;
}

.current-issue-previous > i {
  color: var(--brand-600);
  font-size: 0.7rem;
}

.current-issue-author-card {
  overflow: hidden;
  position: relative;
  border: 0;
  background:
    radial-gradient(circle at 100% 0, rgba(200, 154, 61, 0.24), transparent 42%),
    linear-gradient(135deg, var(--brand-900), var(--accent-700));
  color: #fff;
}

.current-issue-author-card::after {
  content: '';
  position: absolute;
  width: 7rem;
  height: 7rem;
  right: -3rem;
  bottom: -3rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
}

@media (min-width: 768px) and (max-width: 1199.98px) {
  .current-issue-sidebar {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    position: static !important;
  }

  .current-issue-sidebar > :first-child,
  .current-issue-sidebar > :last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 767.98px) {
  .current-issue-overview {
    grid-template-columns: 1fr;
    border-radius: 1.35rem;
  }

  .current-issue-overview__cover-column {
    min-height: 0;
    padding: 2.25rem 1.5rem;
    border-right: 0;
    border-bottom: 1px solid rgba(31, 79, 119, 0.1);
  }

  .current-issue-overview__cover-wrap {
    width: min(70%, 12.5rem);
  }

  .current-issue-overview__badge {
    left: -1rem;
  }

  .current-issue-overview__body {
    padding: 1.5rem;
  }

  .current-issue-overview__title {
    font-size: 2rem;
  }

  .current-issue-facts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .current-issue-facts > div + div {
    border-left: 0;
  }

  .current-issue-facts > div:nth-child(even) {
    border-left: 1px solid rgba(31, 79, 119, 0.12);
  }

  .current-issue-facts > div:last-child {
    grid-column: 1 / -1;
    border-top: 1px solid rgba(31, 79, 119, 0.12);
    border-left: 0;
  }

  .current-issue-overview__actions .btn {
    width: 100%;
  }

  .current-issue-overview__journal-link {
    width: 100%;
    justify-content: center;
  }

  .current-issue-article {
    grid-template-columns: 1fr;
  }

  .current-issue-article__number {
    justify-content: flex-start;
    padding: 0.65rem 1.25rem;
    border-right: 0;
    border-bottom: 1px solid rgba(31, 79, 119, 0.1);
  }

  .current-issue-article__body {
    padding: 1.25rem;
  }

  .current-issue-article__footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .current-issue-sidebar {
    position: static !important;
  }
}

+.discovery-page,
.publication-page,
.editorial-directory-page,
.editorial-profile-page,
.support-page {
  background:
    radial-gradient(circle at 92% 8%, rgba(46, 143, 134, 0.055), transparent 23rem),
    linear-gradient(180deg, var(--sand-50), #fff 32rem);
}

.library-filter {
  position: relative;
  overflow: hidden;
  padding: clamp(1.5rem, 3vw, 2.25rem);
  border-color: rgba(31, 79, 119, 0.14);
  background:
    linear-gradient(90deg, rgba(237, 244, 251, 0.78), rgba(255, 255, 255, 0.95) 38%),
    #fff;
  box-shadow: 0 22px 50px rgba(13, 32, 51, 0.08);
}

.library-filter::before {
  content: '';
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(180deg, var(--gold-500), var(--accent-500));
}

.library-filter .form-label {
  margin-bottom: 0.45rem;
  color: var(--brand-900);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.library-filter .form-control,
.library-filter .form-select,
.support-page .form-control,
.support-page .form-select {
  min-height: 3.15rem;
  border-color: rgba(152, 162, 179, 0.55);
  background-color: rgba(255, 255, 255, 0.96);
}

.library-filter .form-control:focus,
.library-filter .form-select:focus,
.support-page .form-control:focus,
.support-page .form-select:focus {
  border-color: var(--brand-500);
  box-shadow: 0 0 0 0.22rem rgba(66, 137, 197, 0.13);
}

.library-results .result-card,
.result-card {
  position: relative;
  overflow: hidden;
  border-color: rgba(31, 79, 119, 0.13);
  background: rgba(255, 255, 255, 0.96);
}

.library-results .result-card::before,
.result-card::before {
  content: '';
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: linear-gradient(180deg, var(--brand-500), var(--accent-500));
  opacity: 0.75;
}

.result-card:hover {
  transform: translateY(-3px);
}

.result-card h5 {
  font-size: clamp(1.08rem, 2vw, 1.35rem);
  line-height: 1.35;
}

.result-card .article-meta {
  padding-top: 0.8rem;
  border-top: 1px solid rgba(208, 213, 221, 0.72);
  font-size: 0.8rem;
}

.design-callout {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border: 0;
  background:
    radial-gradient(circle at 100% 0, rgba(200, 154, 61, 0.25), transparent 36%),
    linear-gradient(135deg, var(--brand-900), var(--accent-700));
  box-shadow: 0 22px 48px rgba(13, 32, 51, 0.16);
}

.design-callout::after {
  content: '';
  position: absolute;
  z-index: -1;
  width: 11rem;
  height: 11rem;
  right: -5rem;
  bottom: -6rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  box-shadow: 0 0 0 2.5rem rgba(255, 255, 255, 0.025);
}

.publication-summary {
  overflow: hidden;
  position: relative;
  border-color: rgba(31, 79, 119, 0.14);
  box-shadow: 0 24px 60px rgba(13, 32, 51, 0.09);
}

.publication-summary::before {
  content: '';
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--gold-500), var(--accent-500));
}

.publication-summary .lead {
  color: var(--ink-500) !important;
  font-size: 1.02rem;
  line-height: 1.75;
}

.publication-details .row > [class*='col-'] {
  padding: 1rem;
  border-radius: 0.8rem;
  background: var(--sand-50);
}

.publication-details .row > [class*='col-'] strong {
  display: block;
  margin-bottom: 0.3rem;
  color: var(--brand-900);
  font-size: 0.72rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.article-abstract-copy {
  color: var(--ink-700);
  font-size: 1.04rem;
  line-height: 1.95;
}

.article-abstract-copy::first-letter {
  color: var(--brand-800);
  font-family: var(--font-heading);
  font-size: 2.7rem;
  font-weight: 700;
  line-height: 0.8;
}

.article-pdf-preview {
  height: min(68vh, 42rem);
  background: var(--ink-100);
}

.article-sidebar {
  display: grid;
  gap: 1.25rem;
  top: 7rem;
}

.article-sidebar__cover {
  width: 4.5rem;
  height: 4.5rem;
  flex: 0 0 auto;
  border-radius: 0.75rem;
  object-fit: cover;
  box-shadow: var(--shadow-sm);
}

.editor-avatar-fallback {
  display: grid;
  width: 100%;
  min-height: 17.5rem;
  place-items: center;
  margin-bottom: 1rem;
  border-radius: 1rem;
  background:
    radial-gradient(circle at top, rgba(200, 154, 61, 0.2), transparent 45%),
    linear-gradient(145deg, var(--brand-100), var(--accent-100));
  color: var(--brand-700);
}

.person-card {
  display: flex;
  align-items: center;
  flex-direction: column;
  padding: 2rem 1.5rem;
  border-color: rgba(31, 79, 119, 0.14);
  background:
    linear-gradient(180deg, rgba(237, 244, 251, 0.72) 0, rgba(255, 255, 255, 0.97) 8rem);
}

.person-card::before {
  content: '';
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-500), var(--accent-500));
}

.person-avatar,
.profile-avatar {
  border: 4px solid #fff;
  box-shadow:
    0 0 0 1px rgba(31, 79, 119, 0.13),
    0 14px 30px rgba(13, 32, 51, 0.14);
}

.person-avatar--fallback {
  display: grid;
  place-items: center;
  margin-inline: auto;
  background: linear-gradient(145deg, var(--brand-100), var(--accent-100));
  color: var(--brand-700);
}

.person-role {
  min-height: 1.4rem;
  color: var(--accent-700);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.person-meta {
  display: grid;
  width: 100%;
  gap: 0.55rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(208, 213, 221, 0.72);
  color: var(--ink-500);
  font-size: 0.82rem;
  text-align: left;
}

.person-meta i {
  width: 1.2rem;
  color: var(--gold-500);
  text-align: center;
}

.editorial-profile-page .profile-card {
  border-color: rgba(31, 79, 119, 0.14);
  box-shadow: 0 24px 55px rgba(13, 32, 51, 0.09);
}

.editorial-profile-page .table {
  min-width: 46rem;
}

.table {
  --bs-table-bg: transparent;
}

.table thead th {
  border-bottom-width: 1px;
  color: var(--ink-500);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.table tbody tr {
  transition: background-color 0.18s ease;
}

.table tbody tr:hover {
  background: rgba(237, 244, 251, 0.62);
}

.support-page .content-card {
  border-color: rgba(31, 79, 119, 0.14);
  box-shadow: 0 22px 52px rgba(13, 32, 51, 0.08);
}

.support-page .form-label {
  color: var(--brand-900);
  font-size: 0.78rem;
  font-weight: 800;
}

.support-page textarea.form-control {
  min-height: 10rem;
  resize: vertical;
}

.contact-map {
  display: block;
  border: 0;
}

.content-card.text-center {
  padding-block: clamp(2.5rem, 6vw, 4.5rem);
}

.archive-page .metric-card {
  position: relative;
  overflow: hidden;
  border-color: rgba(31, 79, 119, 0.13);
}

.archive-page .metric-card::after {
  content: '';
  position: absolute;
  width: 5rem;
  height: 5rem;
  top: -2.5rem;
  right: -2.5rem;
  border-radius: 50%;
  background: rgba(66, 137, 197, 0.08);
}

.archive-page .metric-card__icon {
  background: var(--brand-100) !important;
  color: var(--brand-700) !important;
}

.volume-card {
  border-color: rgba(31, 79, 119, 0.14);
  background: rgba(255, 255, 255, 0.96);
}

.volume-card__media {
  aspect-ratio: 16 / 10;
  min-height: 0;
  overflow: hidden;
}

.volume-card__media img {
  transition: transform 0.35s ease;
}

.volume-card:hover .volume-card__media img {
  transform: scale(1.035);
}

.volume-editor-avatar {
  display: grid;
  width: 3.75rem;
  height: 3.75rem;
  flex: 0 0 3.75rem;
  place-items: center;
  border: 3px solid #fff;
  border-radius: 50%;
  background: var(--brand-100);
  box-shadow: 0 0 0 1px rgba(31, 79, 119, 0.12);
  object-fit: cover;
}

.volume-editor-avatar--fallback {
  color: var(--brand-700);
}

@media (max-width: 991.98px) {
  .article-sidebar {
    position: static !important;
  }
}

@media (max-width: 767.98px) {
  .library-filter {
    padding: 1.25rem;
  }

  .article-pdf-preview {
    height: 30rem;
  }

  .design-callout .btn {
    width: 100%;
  }

  .editorial-directory-page .stat-grid {
    grid-template-columns: 1fr;
  }
}

.metric-card {
  height: 100%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 250, 252, 0.88));
  text-align: left;
}

.metric-card__icon {
  width: 3.4rem;
  height: 3.4rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 1rem;
  margin-bottom: 1rem;
  font-size: 1.15rem;
}

.metric-card__value {
  color: var(--brand-900);
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}

.metric-card__label {
  color: var(--ink-500);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  margin-top: 0.55rem;
  text-transform: uppercase;
}

.volume-cover,
.issue-cover {
  background: linear-gradient(160deg, rgba(31, 79, 119, 0.92), rgba(17, 74, 69, 0.9));
  border-radius: 1.35rem;
  min-height: 16rem;
  color: #fff;
  overflow: hidden;
  position: relative;
}

.issue-cover img,
.volume-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.issue-cover::after,
.volume-cover::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent 55%, rgba(0, 0, 0, 0.12));
}

.volume-card {
  overflow: hidden;
}

.volume-card__media {
  background: linear-gradient(180deg, rgba(31, 79, 119, 0.1), rgba(17, 74, 69, 0.1));
  min-height: 14rem;
}

.volume-card__body {
  padding: 1.6rem;
}

.person-card,
.profile-card {
  position: relative;
  overflow: hidden;
}

.person-card {
  text-align: center;
  height: 100%;
}

.person-avatar,
.profile-avatar {
  width: 7rem;
  height: 7rem;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 1rem;
  border: 4px solid rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-md);
}

.person-role,
.profile-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 0.9rem;
  background: var(--accent-100);
  border: 1px solid rgba(46, 143, 134, 0.18);
  border-radius: 999px;
  color: var(--accent-900);
  font-size: 0.85rem;
  font-weight: 800;
}

.person-meta {
  color: var(--ink-500);
  display: grid;
  gap: 0.45rem;
  margin-top: 1rem;
}

.profile-contact {
  display: flex;
  align-items: start;
  gap: 0.85rem;
  padding: 0.85rem 0;
  border-top: 1px solid rgba(208, 213, 221, 0.78);
}

.profile-contact:first-child {
  border-top: 0;
}

.profile-contact i {
  color: var(--brand-600);
  margin-top: 0.2rem;
}

.stat-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
}

.stat-card {
  padding: 1.15rem;
  text-align: center;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(237, 244, 251, 0.85));
  border: 1px solid rgba(208, 213, 221, 0.72);
  border-radius: 1.2rem;
}

.stat-icon {
  width: 2.7rem;
  height: 2.7rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.9rem;
  background: var(--brand-100);
  color: var(--brand-700);
  margin-bottom: 0.8rem;
}

.stat-number {
  color: var(--brand-900);
  font-family: var(--font-heading);
  font-size: 2rem;
  line-height: 1;
}

.stat-label {
  color: var(--ink-500);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  margin-top: 0.55rem;
  text-transform: uppercase;
}

.filter-panel {
  background: rgba(255, 255, 255, 0.92);
}

.list-group-item {
  border-color: rgba(228, 231, 236, 0.78);
}

.list-group-item-action:hover {
  background: rgba(237, 244, 251, 0.8);
}

.pagination {
  gap: 0.45rem;
}

.page-link {
  border: 1px solid rgba(208, 213, 221, 0.82);
  border-radius: 0.9rem;
  color: var(--ink-700);
  font-weight: 700;
  min-width: 2.8rem;
  text-align: center;
}

.page-link:hover,
.page-item.active .page-link {
  background: var(--brand-900);
  border-color: var(--brand-900);
  color: #fff;
}

.sidebar-card__title {
  color: var(--brand-900);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.site-footer {
  position: relative;
  overflow: hidden;
  padding: 4.5rem 0 2rem;
  background:
    radial-gradient(circle at top left, rgba(200, 154, 61, 0.13), transparent 22%),
    linear-gradient(135deg, #08131d, #0d2033 42%, #12384f 100%);
  color: rgba(255, 255, 255, 0.84);
}

.site-footer::before {
  content: '';
  position: absolute;
  inset: auto -10% -35% auto;
  width: 24rem;
  height: 24rem;
  border-radius: 50%;
  background: rgba(46, 143, 134, 0.08);
}

.site-footer__brand {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
}

.site-footer__brand-mark {
  width: 3.1rem;
  height: 3.1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.site-footer__brand-mark img {
  max-height: 1.8rem;
}

.site-footer__heading {
  color: #fff;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.site-footer__link,
.site-footer__meta {
  color: rgba(255, 255, 255, 0.68);
}

.site-footer__link:hover {
  color: #fff;
}

.site-footer__social {
  width: 2.55rem;
  height: 2.55rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
}

.site-footer__social:hover {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  transform: translateY(-2px);
}

.site-footer__bottom {
  position: relative;
  z-index: 1;
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.glass {
  background: rgba(255, 255, 255, 0.74);
  backdrop-filter: blur(14px);
}

.glass-dark {
  background: rgba(9, 19, 29, 0.7);
  backdrop-filter: blur(12px);
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: rgba(13, 32, 51, 0.08);
}

::-webkit-scrollbar-thumb {
  background: rgba(31, 79, 119, 0.4);
  border-radius: 999px;
}

.home-articles-section {
  background: rgba(255, 255, 255, 0.56);
}

.home-articles-carousel-shell {
  position: relative;
}

.home-carousel-arrow {
  display: inline-flex;
  position: absolute;
  z-index: 4;
  top: 50%;
  width: 3.15rem;
  height: 3.15rem;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(31, 79, 119, 0.2);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-md);
  color: var(--brand-700);
  transform: translateY(-50%);
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.home-carousel-arrow--prev {
  left: -1.55rem;
}

.home-carousel-arrow--next {
  right: -1.55rem;
}

.home-carousel-arrow:hover,
.home-carousel-arrow:focus-visible {
  background: var(--brand-800);
  color: #fff;
  transform: translateY(-50%) scale(1.06);
}

.home-carousel-arrow:disabled {
  cursor: not-allowed;
  opacity: 0.38;
  transform: translateY(-50%);
}

.home-articles-carousel .owl-stage {
  display: flex;
  padding-block: 0.35rem 1.5rem;
}

.home-articles-carousel .owl-item {
  display: flex;
  min-width: 0;
}

.home-articles-carousel .home-article-card {
  width: 100%;
}

.home-article-card {
  display: grid;
  grid-template-columns: 4.25rem minmax(0, 1fr);
  overflow: hidden;
  border: 1px solid rgba(208, 213, 221, 0.76);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-sm);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.home-article-card:hover {
  border-color: rgba(31, 79, 119, 0.3);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.home-article-cta-card {
  display: flex;
  width: 100%;
  min-width: 0;
  flex-direction: column;
  border-color: rgba(255, 255, 255, 0.1);
  background:
    radial-gradient(circle at top right, rgba(200, 154, 61, 0.26), transparent 28%),
    linear-gradient(135deg, var(--brand-950), var(--accent-900));
  color: #fff;
}

.home-article-cta-card:hover {
  border-color: rgba(200, 154, 61, 0.4);
}

.home-article-cta-card__content {
  display: flex;
  width: 100%;
  min-width: 0;
  height: 100%;
  flex-direction: column;
  align-items: stretch;
  justify-content: space-between;
  gap: 2rem;
  padding: clamp(2rem, 4vw, 3.25rem);
}

.home-article-cta-card__main {
  display: flex;
  width: 100%;
  min-width: 0;
  flex-direction: column;
  align-items: stretch;
}

.home-article-cta-card__content > .btn {
  flex: 0 0 auto;
  align-self: flex-start;
  padding-inline: 1.15rem !important;
  font-size: 0.88rem;
  white-space: nowrap;
}

.home-article-cta-card__icon {
  display: inline-flex;
  width: 3.75rem;
  height: 3.75rem;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 1.2rem;
  background: rgba(255, 255, 255, 0.08);
  color: var(--gold-200);
  font-size: 1.35rem;
}

.home-article-cta-card__eyebrow {
  margin-bottom: 0.75rem;
  color: var(--gold-200);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.home-article-cta-card h3 {
  width: 100%;
  max-width: none;
  margin-bottom: 1rem;
  color: #fff;
  font-size: clamp(1.65rem, 3vw, 2.3rem);
  line-height: 1.1;
}

.home-article-cta-card p:not(.home-article-cta-card__eyebrow) {
  width: 100%;
  max-width: none;
  margin-bottom: 1.75rem;
  color: rgba(255, 255, 255, 0.68);
}

.home-article-card__number {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 1.75rem;
  border-right: 1px solid rgba(208, 213, 221, 0.7);
  background: linear-gradient(180deg, var(--brand-100), rgba(237, 248, 247, 0.7));
  color: var(--brand-600);
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
}

.home-article-card__body {
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: 1.75rem;
}

.home-article-card__title {
  margin-bottom: 0.7rem;
  font-size: clamp(1.2rem, 2vw, 1.48rem);
  line-height: 1.25;
}

.home-article-card__title a:hover {
  color: var(--brand-600);
}

.home-article-card__authors {
  margin-bottom: 1rem;
  color: var(--accent-700);
  font-size: 0.92rem;
  font-weight: 700;
}

.home-article-card__authors span {
  color: var(--ink-500);
  font-weight: 600;
}

.home-article-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-top: auto;
  color: var(--brand-700);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.home-article-card__link i {
  transition: transform 0.2s ease;
}

.home-article-card__link:hover i {
  transform: translateX(4px);
}

.home-issue-card {
  overflow: hidden;
  border: 1px solid rgba(208, 213, 221, 0.76);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-sm);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.home-issue-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-6px);
}

.home-issue-card__cover {
  display: block;
  aspect-ratio: 4 / 4.5;
  overflow: hidden;
  background: linear-gradient(145deg, var(--brand-100), var(--accent-100));
}

.home-issue-card__cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.home-issue-card:hover .home-issue-card__cover img {
  transform: scale(1.025);
}

.home-issue-card__fallback {
  display: flex;
  height: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--brand-800);
}

.home-issue-card__fallback i {
  margin-bottom: 1.25rem;
  color: var(--gold-500);
  font-size: 2.5rem;
}

.home-issue-card__fallback strong {
  font-family: var(--font-heading);
  font-size: 1.7rem;
}

.home-issue-card__fallback small {
  margin-top: 0.3rem;
  color: var(--ink-500);
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.home-issue-card__body {
  padding: 1.4rem;
}

.home-journal-profile {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(20rem, 0.75fr);
  overflow: hidden;
  border: 1px solid rgba(31, 79, 119, 0.14);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at top left, rgba(66, 137, 197, 0.12), transparent 30%),
    rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-md);
}

.home-journal-profile__content {
  padding: clamp(2rem, 5vw, 4rem);
}

.home-journal-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-left: 1px solid rgba(208, 213, 221, 0.76);
  background: linear-gradient(145deg, var(--brand-950), var(--brand-800));
  color: #fff;
}

.home-journal-facts > div {
  display: flex;
  min-height: 8rem;
  flex-direction: column;
  justify-content: center;
  padding: 1.5rem;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.home-journal-facts dt {
  margin-bottom: 0.45rem;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.home-journal-facts dd {
  margin: 0;
  color: #fff;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
}

.editorial-panel {
  padding: clamp(1.5rem, 4vw, 2.5rem);
  border: 1px solid rgba(208, 213, 221, 0.76);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-sm);
}

.editorial-person {
  display: flex;
  overflow: hidden;
  flex-direction: column;
  align-items: stretch;
  border: 1px solid rgba(208, 213, 221, 0.7);
  border-radius: 1.25rem;
  background: var(--sand-50);
}

.editorial-person:hover {
  border-color: rgba(31, 79, 119, 0.28);
  color: var(--brand-700);
}

.editorial-person__media {
  display: block;
  width: 100%;
  height: clamp(13rem, 24vw, 18rem);
  overflow: hidden;
  background: linear-gradient(145deg, var(--brand-100), var(--accent-100));
}

.editorial-person__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.3s ease;
}

.editorial-person:hover .editorial-person__media img {
  transform: scale(1.025);
}

.editorial-person__initials {
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, var(--brand-700), var(--accent-700));
  color: #fff;
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 700;
}

.editorial-person__details {
  display: flex;
  flex-direction: column;
  padding: 1.4rem 1.4rem 0;
}

.editorial-person__role {
  margin-bottom: 0.55rem;
  color: var(--accent-700);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.editorial-person__details strong,
.editorial-person__details small {
  display: block;
}

.editorial-person__details strong {
  color: var(--brand-900);
  font-family: var(--font-heading);
  font-size: 1.35rem;
}

.editorial-person__details small {
  margin-top: 0.15rem;
  color: var(--ink-500);
}

.editorial-person__action {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  align-self: flex-start;
  margin: 1.25rem 1.4rem 1.4rem;
  color: var(--brand-700);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.author-callout {
  display: flex;
  position: relative;
  overflow: hidden;
  flex-direction: column;
  justify-content: space-between;
  gap: 2rem;
  padding: clamp(2rem, 5vw, 4rem);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at top right, rgba(200, 154, 61, 0.22), transparent 26%),
    linear-gradient(135deg, var(--brand-950), var(--accent-900));
  box-shadow: var(--shadow-lg);
  color: #fff;
}

.author-callout__eyebrow {
  margin-bottom: 1rem;
  color: var(--gold-200);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.author-callout__title {
  max-width: 40rem;
  margin-bottom: 1rem;
  color: #fff;
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.08;
}

.author-callout__summary {
  max-width: 38rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 1.05rem;
}

.author-callout__steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-block: 1px solid rgba(255, 255, 255, 0.14);
}

.author-callout__steps span {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 1.2rem 0.8rem;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1rem;
  font-weight: 700;
}

.author-callout__steps strong {
  color: var(--gold-500);
  font-size: 0.85rem;
  letter-spacing: 0.12em;
}

@media (max-width: 991.98px) {

  .home-journal-profile {
    grid-template-columns: 1fr;
  }

  .home-journal-facts {
    border-top: 1px solid rgba(208, 213, 221, 0.76);
    border-left: 0;
  }
  .site-header {
    background: rgba(252, 250, 246, 0.98);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .site-header .navbar {
    padding: 0.85rem 0;
  }

  .site-header .navbar > .container {
    align-items: center;
    flex-wrap: nowrap;
  }

  .site-header__brand {
    flex: 1 1 auto;
    max-width: calc(100% - 3.75rem);
  }

  .site-header .navbar-toggler {
    display: inline-flex;
    flex: 0 0 auto;
    align-self: center;
    align-items: center;
    justify-content: center;
    margin-left: 0.75rem;
    padding: 0.5rem;
    line-height: 1;
    border-radius: 0.85rem;
    background: rgba(31, 79, 119, 0.08);
  }

  .site-header .navbar-toggler:focus-visible {
    outline: 3px solid rgba(66, 137, 197, 0.28);
    outline-offset: 2px;
  }

  .site-header__offcanvas {
    --bs-offcanvas-width: 92vw;
    position: fixed;
    inset: 0 0 0 auto;
    width: 92vw !important;
    max-width: none;
    height: 100dvh;
    border: 0;
    border-radius: 1.5rem 0 0 1.5rem;
    background:
      radial-gradient(circle at top right, rgba(66, 137, 197, 0.12), transparent 28%),
      var(--sand-50);
    box-shadow: -24px 0 60px rgba(7, 20, 31, 0.22);
    overflow: hidden;
  }

  .site-header__offcanvas .offcanvas-header {
    flex: 0 0 auto;
    border-bottom: 1px solid rgba(208, 213, 221, 0.7);
    background: rgba(255, 255, 255, 0.72);
  }

  .site-header__offcanvas .btn-close {
    flex: 0 0 auto;
    border-radius: 50%;
    box-shadow: 0 0 0 0.6rem rgba(31, 79, 119, 0.07);
  }

  .site-header__offcanvas-body {
    display: flex;
    flex-direction: column;
    overscroll-behavior: contain;
    padding-bottom: max(1.5rem, env(safe-area-inset-bottom)) !important;
  }

  .site-header__nav {
    width: 100%;
    margin: 0 !important;
    gap: 0.35rem;
  }

  .site-header__nav .nav-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0.9rem 1rem !important;
    border-radius: 0.9rem;
    letter-spacing: 0.08em;
  }

  .site-header__nav .nav-link.active {
    background: rgba(31, 79, 119, 0.1);
    color: var(--brand-800);
  }

  .site-header__nav .dropdown-menu {
    position: static !important;
    width: 100%;
    margin: 0.35rem 0 0.5rem;
    transform: none !important;
    border: 1px solid rgba(208, 213, 221, 0.65) !important;
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: none;
  }

  .site-header__nav .dropdown-item {
    white-space: normal;
  }

  .site-header__offcanvas .site-header__cta {
    width: 100%;
    align-items: stretch;
    flex-direction: column;
    margin-top: auto !important;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(208, 213, 221, 0.7);
  }

  .site-header__offcanvas .site-header__cta > .btn,
  .site-header__offcanvas .site-header__cta > .dropdown,
  .site-header__offcanvas .site-header__cta > .dropdown > a {
    width: 100%;
  }

  .site-header__offcanvas .site-header__cta > .dropdown > a {
    justify-content: space-between;
  }

  .latest-issue-hero {
    padding: 5.5rem 0;
  }

  .home-search-panel {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .page-hero {
    padding: 4.3rem 0 3.8rem;
  }

  .page-hero__title {
    font-size: clamp(2.2rem, 8vw, 3.2rem);
  }
}

@media (max-width: 767.98px) {

  .page-hero {
    padding: 3.6rem 0 3rem;
  }

  .page-hero::after {
    right: -13rem;
    opacity: 0.65;
  }

  .page-hero__content {
    padding-right: 1rem;
    padding-left: 2.4rem;
  }

  .page-hero__content::before {
    left: 0.8rem;
  }

  .page-hero__eyebrow {
    gap: 0.55rem;
    font-size: 0.7rem;
    letter-spacing: 0.16em;
  }

  .page-hero__eyebrow::before {
    width: 1.3rem;
  }

  .page-hero__title {
    font-size: clamp(2.05rem, 10vw, 2.85rem);
    line-height: 1.12;
  }

  .page-hero__summary {
    line-height: 1.65;
    margin-bottom: 1.4rem;
  }

  .page-hero__meta {
    margin-bottom: 1.5rem;
  }

  .page-hero__meta .meta-pill {
    max-width: 100%;
    min-height: 2.3rem;
    overflow-wrap: anywhere;
  }

  .page-hero nav[aria-label='breadcrumb'] {
    padding-top: 0.9rem;
  }

  .page-hero .breadcrumb {
    row-gap: 0.35rem;
  }

  .home-carousel-arrow {
    width: 2.75rem;
    height: 2.75rem;
  }

  .home-carousel-arrow--prev {
    left: 0.5rem;
  }

  .home-carousel-arrow--next {
    right: 0.5rem;
  }

  .home-article-card:not(.home-article-cta-card) {
    grid-template-columns: 3rem minmax(0, 1fr);
  }

  .home-article-card__number {
    padding-top: 1.3rem;
    font-size: 1rem;
  }

  .home-article-card__body,
  .home-issue-card__body {
    padding: 1.25rem;
  }

  .home-journal-facts > div {
    min-height: 6.5rem;
    padding: 1.15rem;
  }

  .home-journal-facts dd {
    font-size: 1.05rem;
  }

  .author-callout__steps {
    grid-template-columns: 1fr;
  }

  .author-callout__steps span {
    flex-direction: row;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  .section-head {
    align-items: start;
    flex-direction: column;
  }

  .content-card,
  .filter-panel,
  .profile-card,
  .person-card,
  .sidebar-card,
  .metric-card,
  .surface-card {
    padding: 1.25rem;
  }

  .latest-issue-hero {
    padding: 4.5rem 0;
  }

  .latest-issue-hero__title {
    font-size: clamp(2.65rem, 12vw, 4rem);
  }

  .hero-library-search {
    grid-template-columns: auto minmax(0, 1fr);
    padding: 0.55rem;
  }

  .hero-library-search select {
    grid-column: 1 / -1;
    width: 100%;
    border-top: 1px solid var(--ink-200);
    border-left: 0;
  }

  .hero-library-search .btn {
    grid-column: 1 / -1;
    width: 100%;
  }

  .page-hero__meta {
    gap: 0.6rem;
  }

  .meta-pill,
  .tag-pill {
    font-size: 0.84rem;
  }

  .site-header__brand-title {
    font-size: 1.08rem;
  }

  .site-footer {
    padding-top: 4rem;
  }
}

@media (max-width: 575.98px) {
  .latest-issue-hero__actions .btn {
    width: 100%;
  }

}

@media (prefers-reduced-motion: reduce) {
  .page-hero__content > * {
    animation: none;
  }
}

.site-header .navbar-toggler > i {
  color: var(--brand-800);
  font-size: 1.1rem;
  line-height: 1;
}


/* Volume and issue detail */
.volume-detail-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(2rem, 4vw, 3rem) 0 clamp(4.5rem, 8vw, 7rem);
  color: #fff;
  background:
    linear-gradient(115deg, rgba(7, 20, 31, 0.99), rgba(13, 32, 51, 0.97) 52%, rgba(17, 74, 69, 0.94));
}

.volume-detail-hero::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  opacity: 0.075;
  background-image: linear-gradient(rgba(255, 255, 255, 0.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.18) 1px, transparent 1px);
  background-size: 3.5rem 3.5rem;
  content: '';
  mask-image: linear-gradient(to right, transparent, #000 54%);
}

.volume-detail-hero__orb {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  pointer-events: none;
}

.volume-detail-hero__orb--one {
  top: -16rem;
  left: 24%;
  width: 27rem;
  height: 27rem;
  background: rgba(200, 154, 61, 0.16);
}

.volume-detail-hero__orb--two {
  right: -13rem;
  bottom: -20rem;
  width: 32rem;
  height: 32rem;
  background: rgba(46, 143, 134, 0.22);
}

.volume-detail-hero__breadcrumb {
  margin-bottom: clamp(3rem, 6vw, 5rem);
}

.volume-detail-hero .breadcrumb-item,
.volume-detail-hero .breadcrumb-item a,
.volume-detail-hero .breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.72rem;
}

.volume-detail-hero .breadcrumb-item a:hover {
  color: #fff;
}

.volume-detail-hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 1rem;
  color: var(--gold-200);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.volume-detail-hero__eyebrow span {
  width: 2.4rem;
  height: 2px;
  background: var(--gold-500);
}

.volume-detail-hero__title {
  margin-bottom: 0.35rem;
  color: #fff;
  font-size: clamp(3.6rem, 8vw, 7rem);
  line-height: 0.92;
  letter-spacing: -0.055em;
}

.volume-detail-hero__issue {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 1.2rem;
  color: var(--gold-200);
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 2.5vw, 1.65rem);
  font-weight: 700;
}

.volume-detail-hero__issue span {
  color: rgba(255, 255, 255, 0.28);
  font-weight: 400;
}

.volume-detail-hero__journal {
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  letter-spacing: -0.015em;
}

.volume-detail-hero__summary {
  max-width: 44rem;
  margin-bottom: 1.75rem;
  color: rgba(255, 255, 255, 0.67);
  font-size: clamp(0.95rem, 1.4vw, 1.08rem);
  line-height: 1.75;
}

.volume-detail-hero__facts {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem 1.5rem;
  margin-bottom: 2rem;
}

.volume-detail-hero__facts span {
  display: inline-flex;
  align-items: center;
  gap: 0.48rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  white-space: nowrap;
}

.volume-detail-hero__facts i {
  color: var(--gold-500);
}

.volume-detail-hero__facts strong {
  color: #fff;
}

.volume-detail-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.volume-detail-cover-wrap {
  position: relative;
  width: min(100%, 18rem);
  margin-inline: auto;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 1.5rem;
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 0 30px 75px rgba(0, 0, 0, 0.32);
  transform: rotate(2deg);
}

.volume-detail-cover-wrap__label {
  position: absolute;
  z-index: 2;
  top: 2rem;
  left: -2rem;
  padding: 0.55rem 0.9rem;
  border-radius: 0.55rem;
  color: var(--brand-950);
  background: var(--gold-200);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.volume-detail-cover {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: 1rem;
  background: var(--paper);
}

.volume-detail-cover > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.volume-detail-cover__fallback {
  display: flex;
  height: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  color: var(--brand-900);
  text-align: center;
  background:
    radial-gradient(circle at top right, rgba(200, 154, 61, 0.18), transparent 28%),
    linear-gradient(155deg, #fff, var(--brand-100));
}

.volume-detail-cover__fallback img {
  max-width: 4.5rem;
  max-height: 4.5rem;
  margin-bottom: 1.4rem;
}

.volume-detail-cover__fallback span {
  margin-bottom: 2rem;
  color: var(--accent-700);
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.volume-detail-cover__fallback strong {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  line-height: 1;
}

.volume-detail-cover__fallback small {
  margin-top: 0.5rem;
  color: var(--ink-500);
  font-weight: 700;
}

.volume-detail-cover__fallback em {
  margin-top: 1.5rem;
  color: var(--gold-500);
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-style: normal;
  font-weight: 700;
}

.volume-detail-page {
  background:
    radial-gradient(circle at 7% 14%, rgba(46, 143, 134, 0.06), transparent 21rem),
    linear-gradient(180deg, var(--sand-50), #fff 35rem);
}

.volume-detail-page #articles {
  scroll-margin-top: 6rem;
}

.volume-article-keywords {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.55rem;
  margin: -0.35rem 0 1.15rem;
  color: var(--ink-500);
  font-size: 0.72rem;
  line-height: 1.55;
}

.volume-article-keywords strong {
  color: var(--accent-700);
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.current-issue-article__meta a {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 0.42rem;
  overflow-wrap: anywhere;
  color: var(--ink-500);
}

.current-issue-article__meta a:hover {
  color: var(--brand-700);
}

.volume-pagination {
  display: grid;
  justify-items: center;
  gap: 0.4rem;
  margin-top: 2rem;
}

.volume-pagination p {
  margin: 0;
  color: var(--ink-500);
  font-size: 0.72rem;
}

.volume-empty-state {
  padding: 3rem;
  text-align: center;
}

.volume-empty-state > i {
  margin-bottom: 1rem;
  color: var(--brand-600);
  font-size: 2rem;
}

.volume-empty-state h3 {
  margin-bottom: 0.5rem;
  font-size: 1.3rem;
}

.volume-empty-state p {
  margin: 0;
  color: var(--ink-500);
}

.volume-issue-card {
  overflow: hidden;
}

.volume-issue-card h3 {
  margin-bottom: 1.25rem;
  font-size: 1.2rem;
}

.volume-issue-card__facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  margin: 0 0 1.25rem;
  border: 1px solid var(--ink-200);
  border-radius: var(--radius-sm);
  background: var(--sand-50);
}

.volume-issue-card__facts div {
  min-width: 0;
  padding: 0.85rem;
  border-bottom: 1px solid var(--ink-200);
}

.volume-issue-card__facts div:nth-child(odd) {
  border-right: 1px solid var(--ink-200);
}

.volume-issue-card__facts div:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.volume-issue-card__facts dt {
  margin-bottom: 0.25rem;
  color: var(--ink-500);
  font-size: 0.61rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.volume-issue-card__facts dd {
  margin: 0;
  overflow-wrap: anywhere;
  color: var(--brand-900);
  font-size: 0.78rem;
  font-weight: 700;
}

.volume-editorial__intro {
  max-width: 34rem;
  margin: 0;
  color: var(--ink-500);
  font-size: 0.86rem;
  line-height: 1.7;
}

.volume-editors {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}

.volume-editor-card {
  display: grid;
  grid-template-columns: 5rem minmax(0, 1fr);
  gap: 1rem;
  min-width: 0;
  padding: 1.15rem;
  border: 1px solid rgba(31, 79, 119, 0.13);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-sm);
}

.volume-editor-card > img,
.volume-editor-card__fallback {
  width: 5rem;
  height: 6rem;
  border-radius: 0.75rem;
  object-fit: cover;
}

.volume-editor-card__fallback {
  display: grid;
  place-items: center;
  color: var(--brand-600);
  background: var(--brand-100);
  font-size: 1.3rem;
}

.volume-editor-card__role {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--accent-700);
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.volume-editor-card h3 {
  margin-bottom: 0.35rem;
  font-size: 1rem;
  line-height: 1.3;
}

.volume-editor-card p,
.volume-editor-card small {
  display: block;
  margin: 0 0 0.25rem;
  color: var(--ink-500);
  font-size: 0.7rem;
  line-height: 1.45;
}

.volume-editor-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.55rem;
  color: var(--brand-700);
  font-size: 0.68rem;
  font-weight: 700;
}

.volume-boards {
  display: grid;
  gap: 0.8rem;
}

.volume-board {
  overflow: hidden;
  border: 1px solid rgba(31, 79, 119, 0.14);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-sm);
}

.volume-board summary {
  display: grid;
  grid-template-columns: 2.7rem minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 0.85rem;
  padding: 1rem 1.2rem;
  cursor: pointer;
  list-style: none;
}

.volume-board summary::-webkit-details-marker {
  display: none;
}

.volume-board__icon {
  display: grid;
  width: 2.7rem;
  height: 2.7rem;
  place-items: center;
  border-radius: 0.75rem;
  color: var(--brand-700);
  background: var(--brand-100);
}

.volume-board__summary small,
.volume-board__summary strong {
  display: block;
}

.volume-board__summary small {
  margin-bottom: 0.12rem;
  color: var(--accent-700);
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.volume-board__summary strong {
  color: var(--brand-900);
  font-family: var(--font-heading);
  font-size: 0.92rem;
}

.volume-board__count {
  color: var(--ink-500);
  font-size: 0.68rem;
  font-weight: 600;
}

.volume-board__chevron {
  color: var(--ink-500);
  font-size: 0.7rem;
  transition: transform 0.2s ease;
}

.volume-board[open] .volume-board__chevron {
  transform: rotate(180deg);
}

.volume-board__body {
  padding: 0 1.2rem 1.2rem 4.75rem;
  border-top: 1px solid var(--ink-200);
}

.volume-board__description {
  max-width: 52rem;
  margin: 1rem 0;
  color: var(--ink-500);
  font-size: 0.78rem;
  line-height: 1.65;
}

.volume-board__members {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
  padding-top: 1rem;
}

.volume-board__description + .volume-board__members {
  padding-top: 0;
}

.volume-board-member {
  display: grid;
  grid-template-columns: 2.25rem minmax(0, 1fr);
  align-items: start;
  gap: 0.65rem;
  min-width: 0;
  padding: 0.75rem;
  border: 1px solid var(--ink-200);
  border-radius: 0.7rem;
  background: var(--sand-50);
}

.volume-board-member__mark {
  display: grid;
  width: 2.25rem;
  height: 2.25rem;
  place-items: center;
  border-radius: 0.65rem;
  color: var(--accent-900);
  background: var(--accent-200);
  font-size: 0.66rem;
  font-weight: 800;
}

.volume-board-member strong,
.volume-board-member small,
.volume-board-member em {
  display: block;
  overflow-wrap: anywhere;
}

.volume-board-member strong {
  color: var(--ink-800);
  font-size: 0.72rem;
  line-height: 1.35;
}

.volume-board-member small,
.volume-board-member em {
  margin-top: 0.15rem;
  color: var(--ink-500);
  font-size: 0.62rem;
  font-style: normal;
  line-height: 1.4;
}

.volume-board__more {
  margin: 0.85rem 0 0;
  color: var(--ink-500);
  font-size: 0.68rem;
}

@media (max-width: 1199.98px) {
  .volume-editors {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .volume-board__members {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767.98px) {
  .volume-detail-hero {
    padding-bottom: 4rem;
  }

  .volume-detail-hero__breadcrumb {
    margin-bottom: 2.5rem;
  }

  .volume-detail-hero__title {
    font-size: clamp(3.4rem, 17vw, 5rem);
  }

  .volume-detail-hero__facts {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.65rem;
  }

  .volume-editors,
  .volume-board__members {
    grid-template-columns: 1fr;
  }

  .volume-board summary {
    grid-template-columns: 2.7rem minmax(0, 1fr) auto;
  }

  .volume-board__count {
    display: none;
  }

  .volume-board__body {
    padding-left: 1.2rem;
  }
}

@media (max-width: 575.98px) {
  .volume-detail-hero__actions .btn {
    width: 100%;
  }

  .volume-article-keywords {
    grid-template-columns: 1fr;
  }

  .volume-editor-card {
    grid-template-columns: 4.25rem minmax(0, 1fr);
  }

  .volume-editor-card > img,
  .volume-editor-card__fallback {
    width: 4.25rem;
    height: 5.25rem;
  }

  .volume-board summary {
    padding: 0.85rem;
  }

  .volume-board__body {
    padding: 0 0.85rem 0.85rem;
  }
}


/* Public legal documents */
.footer-legal-links {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.15rem;
}

.footer-legal-links a,
.author-auth-footer__credentials a {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.68rem;
  font-weight: 600;
}

.footer-legal-links a:hover,
.author-auth-footer__credentials a:hover {
  color: #fff;
}

.author-auth-footer__credentials a {
  display: inline-flex;
  align-items: center;
  min-height: 1.75rem;
  padding: 0.32rem 0.58rem;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 999px;
}

.legal-document {
  padding: clamp(1.6rem, 4vw, 3.5rem);
  color: var(--ink-700);
  font-size: 0.96rem;
  line-height: 1.85;
}

.legal-document > :first-child {
  margin-top: 0;
}

.legal-document > :last-child {
  margin-bottom: 0;
}

.legal-document h2,
.legal-document h3,
.legal-document h4 {
  scroll-margin-top: 7rem;
  line-height: 1.25;
}

.legal-document h2 {
  margin: 2.5rem 0 0.9rem;
  padding-bottom: 0.7rem;
  border-bottom: 1px solid var(--ink-200);
  font-size: clamp(1.45rem, 3vw, 1.85rem);
}

.legal-document h3 {
  margin: 2rem 0 0.75rem;
  font-size: 1.25rem;
}

.legal-document h4 {
  margin: 1.6rem 0 0.65rem;
  font-size: 1.05rem;
}

.legal-document p {
  margin-bottom: 1rem;
}

.legal-document ul,
.legal-document ol {
  margin: 0 0 1.25rem;
  padding-left: 1.35rem;
}

.legal-document li {
  margin-bottom: 0.45rem;
  padding-left: 0.25rem;
}

.legal-document blockquote {
  margin: 1.5rem 0;
  padding: 1rem 1.2rem;
  border-left: 3px solid var(--gold-500);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  color: var(--ink-700);
  background: var(--sand-50);
}

.legal-document a {
  color: var(--brand-700);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: var(--brand-200);
  text-underline-offset: 0.2em;
}

.legal-document .ql-align-center {
  text-align: center;
}

.legal-document .ql-align-right {
  text-align: right;
}

.legal-document .ql-align-justify {
  text-align: justify;
}

.legal-document .ql-indent-1 {
  margin-left: 2rem;
}

.legal-document .ql-indent-2 {
  margin-left: 4rem;
}

.legal-document .ql-indent-3 {
  margin-left: 6rem;
}

.legal-page__support {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  margin-top: 1.25rem;
  padding: 1.25rem 1.4rem;
  border: 1px solid var(--brand-200);
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--brand-100), rgba(255, 255, 255, 0.85));
}

.legal-page__support span,
.legal-page__support strong {
  display: block;
}

.legal-page__support span {
  margin-bottom: 0.18rem;
  color: var(--ink-500);
  font-size: 0.72rem;
}

.legal-page__support strong {
  color: var(--brand-900);
  font-family: var(--font-heading);
  font-size: 1rem;
}

@media (max-width: 575.98px) {
  .footer-legal-links {
    justify-content: center;
  }

  .legal-document {
    font-size: 0.9rem;
    line-height: 1.75;
  }

  .legal-document .ql-indent-1,
  .legal-document .ql-indent-2,
  .legal-document .ql-indent-3 {
    margin-left: 1rem;
  }

  .legal-page__support {
    align-items: stretch;
    flex-direction: column;
  }
}


/* Shared developer attribution */
.developer-credit {
  display: inline-flex;
  align-items: baseline;
  gap: 0.38rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.66rem;
  white-space: nowrap;
}

.developer-credit span {
  font-weight: 500;
}

.developer-credit a,
.developer-credit strong {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.7rem;
  font-weight: 700;
}

.developer-credit a {
  position: relative;
}

.developer-credit a::after {
  position: absolute;
  right: 0;
  bottom: -0.22rem;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--gold-500), var(--accent-500));
  content: '';
  transform: scaleX(0.35);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.developer-credit a:hover {
  color: #fff;
}

.developer-credit a:hover::after {
  transform: scaleX(1);
}

@media (max-width: 575.98px) {
  .developer-credit {
    white-space: normal;
  }
}


/* Focused footer for public authentication screens */
.author-auth-footer {
  position: relative;
  overflow: hidden;
  padding: 2.15rem 0 1.35rem;
  color: rgba(255, 255, 255, 0.72);
  background:
    radial-gradient(circle at 12% 130%, rgba(46, 143, 134, 0.18), transparent 30%),
    radial-gradient(circle at 91% -40%, rgba(200, 154, 61, 0.16), transparent 30%),
    linear-gradient(125deg, var(--brand-950), #0b1f31 58%, #102f43);
}

.author-auth-footer::before {
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-500), var(--accent-500) 52%, var(--brand-500));
  content: '';
}

.author-auth-footer__panel {
  position: relative;
  z-index: 1;
}

.author-auth-footer__main {
  display: grid;
  grid-template-columns: minmax(14rem, 1fr) auto minmax(17rem, 1fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 5rem);
}

.author-auth-footer__brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  width: fit-content;
  color: #fff;
}

.author-auth-footer__brand:hover {
  color: #fff;
}

.author-auth-footer__brand-mark {
  display: grid;
  flex: 0 0 3rem;
  width: 3rem;
  height: 3rem;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 0.85rem;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.16);
}

.author-auth-footer__brand-mark img {
  width: 2.45rem;
  height: 2.45rem;
  object-fit: contain;
}

.author-auth-footer__brand strong,
.author-auth-footer__brand small {
  display: block;
}

.author-auth-footer__brand strong {
  max-width: 14rem;
  font-family: var(--font-heading);
  font-size: 0.96rem;
  line-height: 1.28;
}

.author-auth-footer__brand small {
  margin-top: 0.2rem;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.68rem;
}

.author-auth-footer__nav > span {
  display: block;
  margin-bottom: 0.65rem;
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.author-auth-footer__nav > div {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.25rem;
}

.author-auth-footer__nav a {
  position: relative;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.76rem;
  font-weight: 600;
}

.author-auth-footer__nav a::after {
  position: absolute;
  right: 0;
  bottom: -0.3rem;
  left: 0;
  height: 1px;
  background: var(--gold-500);
  content: '';
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.author-auth-footer__nav a:hover {
  color: #fff;
}

.author-auth-footer__nav a:hover::after {
  transform: scaleX(1);
}

.author-auth-footer__contact {
  display: grid;
  grid-template-columns: 2.45rem minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.75rem;
  justify-self: end;
  width: 100%;
  max-width: 20rem;
  padding: 0.8rem 0.95rem;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: var(--radius-sm);
  color: #fff;
  background: rgba(255, 255, 255, 0.055);
}

.author-auth-footer__contact:hover {
  border-color: rgba(243, 228, 191, 0.28);
  color: #fff;
  background: rgba(255, 255, 255, 0.09);
  transform: translateY(-2px);
}

.author-auth-footer__contact-icon {
  display: grid;
  width: 2.45rem;
  height: 2.45rem;
  place-items: center;
  border-radius: 0.7rem;
  color: var(--gold-200);
  background: rgba(200, 154, 61, 0.14);
}

.author-auth-footer__contact small,
.author-auth-footer__contact strong,
.author-auth-footer__contact em {
  display: block;
  min-width: 0;
}

.author-auth-footer__contact small {
  margin-bottom: 0.15rem;
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.author-auth-footer__contact strong {
  font-size: 0.74rem;
  line-height: 1.3;
}

.author-auth-footer__contact em {
  overflow: hidden;
  margin-top: 0.15rem;
  color: rgba(255, 255, 255, 0.54);
  font-size: 0.64rem;
  font-style: normal;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.author-auth-footer__contact > i {
  color: var(--gold-200);
  font-size: 0.72rem;
}

.author-auth-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.075);
}

.author-auth-footer__bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.66rem;
}

.author-auth-footer__credentials {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.55rem;
}

.author-auth-footer__credentials span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.32rem 0.58rem;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.61rem;
  font-weight: 600;
}

.author-auth-footer__credentials i {
  color: var(--gold-200);
}

@media (max-width: 991.98px) {
  .author-auth-footer__main {
    grid-template-columns: 1fr 1fr;
  }

  .author-auth-footer__nav {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .author-auth-footer__contact {
    justify-self: end;
  }
}

@media (max-width: 575.98px) {
  .author-auth-footer {
    padding: 1.7rem 0 1.1rem;
  }

  .author-auth-footer__main {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .author-auth-footer__nav {
    grid-column: auto;
    grid-row: auto;
  }

  .author-auth-footer__nav > div {
    gap: 0.75rem 1rem;
  }

  .author-auth-footer__contact {
    justify-self: stretch;
    max-width: none;
  }

  .author-auth-footer__bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .author-auth-footer__credentials {
    justify-content: flex-start;
  }
}


/* Public author authentication */
.author-auth-page {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(3rem, 6vw, 5.5rem) 0;
}

.author-auth-page::before,
.author-auth-page::after {
  position: absolute;
  z-index: -1;
  border-radius: 999px;
  content: '';
  pointer-events: none;
}

.author-auth-page::before {
  top: 5%;
  left: -9rem;
  width: 22rem;
  height: 22rem;
  border: 1px solid rgba(44, 106, 160, 0.12);
  box-shadow: 0 0 0 3rem rgba(44, 106, 160, 0.035);
}

.author-auth-page::after {
  right: -5rem;
  bottom: 6%;
  width: 13rem;
  height: 13rem;
  background: rgba(200, 154, 61, 0.1);
  filter: blur(2px);
}

.author-auth-shell {
  display: grid;
  grid-template-columns: minmax(18rem, 0.82fr) minmax(0, 1fr);
  max-width: 66rem;
  min-height: 39rem;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid rgba(13, 32, 51, 0.1);
  border-radius: var(--radius-xl);
  background: var(--paper);
  box-shadow: var(--shadow-lg);
}

.author-auth-shell--wide {
  max-width: 72rem;
  grid-template-columns: minmax(19rem, 0.72fr) minmax(0, 1.28fr);
}

.author-auth-aside {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  padding: clamp(2rem, 4vw, 3rem);
  color: rgba(255, 255, 255, 0.78);
  background:
    radial-gradient(circle at 85% 12%, rgba(200, 154, 61, 0.28), transparent 25%),
    linear-gradient(145deg, var(--brand-950), var(--brand-800));
}

.author-auth-aside::after {
  position: absolute;
  right: -6rem;
  bottom: 7rem;
  width: 15rem;
  height: 15rem;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 50%;
  box-shadow: 0 0 0 2.6rem rgba(255, 255, 255, 0.025);
  content: '';
}

.author-auth-brand,
.author-auth-support {
  position: relative;
  z-index: 1;
}

.author-auth-brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  color: #fff;
}

.author-auth-brand:hover {
  color: #fff;
}

.author-auth-brand__mark {
  display: grid;
  flex: 0 0 3rem;
  width: 3rem;
  height: 3rem;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0.8rem;
  background: #fff;
}

.author-auth-brand__mark img {
  width: 2.5rem;
  height: 2.5rem;
  object-fit: contain;
}

.author-auth-brand strong,
.author-auth-brand small {
  display: block;
}

.author-auth-brand strong {
  max-width: 15rem;
  font-family: var(--font-heading);
  font-size: 1rem;
  line-height: 1.25;
}

.author-auth-brand small {
  margin-top: 0.18rem;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.72rem;
}

.author-auth-aside__content {
  position: relative;
  z-index: 1;
  margin: 3.5rem 0;
}

.author-auth-aside__eyebrow,
.author-auth-eyebrow {
  display: block;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.author-auth-aside__eyebrow {
  margin-bottom: 0.9rem;
  color: var(--gold-200);
  font-size: 0.7rem;
}

.author-auth-aside h2 {
  max-width: 19rem;
  margin-bottom: 1rem;
  color: #fff;
  font-size: clamp(1.9rem, 3vw, 2.55rem);
  line-height: 1.08;
}

.author-auth-aside__content > p {
  max-width: 21rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.92rem;
  line-height: 1.75;
}

.author-auth-benefits {
  display: grid;
  gap: 0.9rem;
  margin: 2rem 0 0;
  padding: 0;
  list-style: none;
}

.author-auth-benefits li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.84rem;
  font-weight: 600;
}

.author-auth-benefits i {
  display: grid;
  flex: 0 0 2rem;
  width: 2rem;
  height: 2rem;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 0.65rem;
  color: var(--gold-200);
  background: rgba(255, 255, 255, 0.06);
}

.author-auth-support {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  width: fit-content;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.78rem;
  font-weight: 700;
}

.author-auth-support:hover {
  color: #fff;
}

.author-auth-support > i {
  color: var(--gold-200);
  font-size: 1.15rem;
}

.author-auth-support small {
  display: block;
  margin-bottom: 0.12rem;
  color: rgba(255, 255, 255, 0.46);
  font-size: 0.67rem;
  font-weight: 600;
}

.author-auth-main {
  align-self: center;
  min-width: 0;
  padding: clamp(2rem, 5vw, 4rem);
}

.author-auth-heading {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-auth-icon {
  display: grid;
  flex: 0 0 3.25rem;
  width: 3.25rem;
  height: 3.25rem;
  place-items: center;
  border: 1px solid var(--brand-200);
  border-radius: 1rem;
  color: var(--brand-700);
  background: linear-gradient(145deg, var(--brand-100), #fff);
  font-size: 1.15rem;
  box-shadow: var(--shadow-sm);
}

.author-auth-eyebrow {
  margin-bottom: 0.35rem;
  color: var(--accent-700);
  font-size: 0.66rem;
}

.author-auth-heading h1 {
  margin: 0;
  font-size: clamp(1.85rem, 4vw, 2.5rem);
  line-height: 1.08;
}

.author-auth-summary {
  max-width: 37rem;
  margin: 1rem 0 2rem;
  color: var(--ink-500);
  font-size: 0.92rem;
  line-height: 1.7;
}

.author-auth-form,
.author-auth-fields {
  display: grid;
  gap: 1.15rem;
}

.author-auth-fields--two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.author-auth-field--full {
  grid-column: 1 / -1;
}

.author-auth-field label,
.author-auth-label-row label {
  display: block;
  margin-bottom: 0.48rem;
  color: var(--ink-800);
  font-size: 0.76rem;
  font-weight: 700;
}

.author-auth-field label > span {
  margin-left: 0.3rem;
  color: var(--ink-500);
  font-size: 0.68rem;
  font-weight: 600;
}

.author-auth-label-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
}

.author-auth-label-row a {
  color: var(--brand-700);
  font-size: 0.74rem;
  font-weight: 700;
}

.author-auth-input,
.author-auth-file {
  display: grid;
  grid-template-columns: 2.9rem minmax(0, 1fr);
  align-items: center;
  min-height: 3.25rem;
  overflow: hidden;
  border: 1px solid var(--ink-300);
  border-radius: var(--radius-sm);
  background: #fff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.author-auth-input:focus-within,
.author-auth-file:focus-within {
  border-color: var(--brand-600);
  box-shadow: 0 0 0 0.22rem rgba(44, 106, 160, 0.12);
}

.author-auth-input.is-invalid,
.author-auth-file.is-invalid {
  border-color: #c93c49;
}

.author-auth-input > i,
.author-auth-file > i {
  color: var(--ink-500);
  text-align: center;
}

.author-auth-input:focus-within > i,
.author-auth-file:focus-within > i {
  color: var(--brand-700);
}

.author-auth-input input,
.author-auth-file input {
  width: 100%;
  min-width: 0;
  min-height: 3.15rem;
  padding: 0.75rem 0.9rem 0.75rem 0;
  border: 0;
  outline: 0;
  color: var(--ink-950);
  background: transparent;
  font: inherit;
  font-size: 0.88rem;
}

.author-auth-input input::placeholder {
  color: #98a2b3;
}

.author-auth-input--readonly {
  background: var(--ink-100);
}

.author-auth-input--readonly input {
  color: var(--ink-500);
}

.author-auth-file input {
  padding-top: 0.72rem;
  font-size: 0.78rem;
}

.author-auth-file input::file-selector-button {
  margin-right: 0.75rem;
  padding: 0.38rem 0.7rem;
  border: 0;
  border-radius: 0.45rem;
  color: var(--brand-800);
  background: var(--brand-100);
  font-size: 0.72rem;
  font-weight: 700;
  cursor: pointer;
}

.author-auth-help,
.author-auth-error {
  margin: 0.42rem 0 0;
  font-size: 0.7rem;
  line-height: 1.5;
}

.author-auth-help {
  color: var(--ink-500);
}

.author-auth-error {
  color: #b42331;
  font-weight: 600;
}

.author-auth-check {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  width: fit-content;
  color: var(--ink-500);
  font-size: 0.78rem;
  cursor: pointer;
}

.author-auth-check input {
  width: 1rem;
  height: 1rem;
  accent-color: var(--brand-700);
}

.author-auth-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  min-height: 3.25rem;
  padding: 0.78rem 1.3rem;
  border: 0;
  border-radius: var(--radius-sm);
  color: #fff;
  background: linear-gradient(135deg, var(--brand-800), var(--brand-600));
  font-size: 0.86rem;
  font-weight: 700;
  box-shadow: 0 12px 24px rgba(31, 79, 119, 0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.author-auth-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 28px rgba(31, 79, 119, 0.27);
}

.author-auth-card-footer {
  margin-top: 1.65rem;
  padding-top: 1.35rem;
  border-top: 1px solid var(--ink-200);
  color: var(--ink-500);
  font-size: 0.76rem;
  text-align: center;
}

.author-auth-card-footer a,
.author-auth-text-button {
  color: var(--brand-700);
  font-weight: 700;
}

.author-auth-alert {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  margin-bottom: 1.25rem;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(27, 108, 101, 0.2);
  border-radius: var(--radius-sm);
  color: var(--accent-900);
  background: var(--accent-100);
  font-size: 0.78rem;
  line-height: 1.5;
}

.author-auth-alert i {
  margin-top: 0.18rem;
}

.author-auth-message {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.3rem;
  padding: 1rem;
  border: 1px solid var(--brand-200);
  border-radius: var(--radius-sm);
  background: var(--brand-100);
}

.author-auth-message > i {
  margin-top: 0.15rem;
  color: var(--brand-700);
  font-size: 1.35rem;
}

.author-auth-message p {
  margin: 0;
  color: var(--ink-700);
  font-size: 0.8rem;
  line-height: 1.65;
}

.author-auth-inline-form {
  display: inline;
}

.author-auth-text-button {
  padding: 0;
  border: 0;
  background: transparent;
  font-size: inherit;
}

@media (max-width: 991.98px) {
  .author-auth-shell,
  .author-auth-shell--wide {
    grid-template-columns: minmax(16rem, 0.7fr) minmax(0, 1fr);
  }

  .author-auth-aside {
    padding: 2rem;
  }

  .author-auth-benefits li {
    align-items: flex-start;
  }
}

@media (max-width: 767.98px) {
  .author-auth-page {
    padding: 2.25rem 0;
  }

  .author-auth-shell,
  .author-auth-shell--wide {
    grid-template-columns: 1fr;
    min-height: 0;
    border-radius: var(--radius-lg);
  }

  .author-auth-aside {
    display: block;
    padding: 1.4rem;
  }

  .author-auth-aside__content,
  .author-auth-support {
    display: none;
  }

  .author-auth-brand__mark {
    flex-basis: 2.65rem;
    width: 2.65rem;
    height: 2.65rem;
  }

  .author-auth-brand__mark img {
    width: 2.15rem;
    height: 2.15rem;
  }

  .author-auth-main {
    padding: 2rem;
  }
}

@media (max-width: 575.98px) {
  .author-auth-page .container {
    padding-right: 0.85rem;
    padding-left: 0.85rem;
  }

  .author-auth-main {
    padding: 1.5rem 1.2rem 1.65rem;
  }

  .author-auth-heading {
    align-items: flex-start;
  }

  .author-auth-icon {
    flex-basis: 2.8rem;
    width: 2.8rem;
    height: 2.8rem;
    border-radius: 0.8rem;
  }

  .author-auth-heading h1 {
    font-size: 1.75rem;
  }

  .author-auth-summary {
    margin-bottom: 1.5rem;
  }

  .author-auth-fields--two {
    grid-template-columns: 1fr;
  }

  .author-auth-field--full {
    grid-column: auto;
  }

  .author-auth-label-row {
    align-items: flex-start;
  }

  .author-auth-submit {
    width: 100%;
  }
}
