:root {
  --jas-blue: #0f79b7;
  --jas-blue-deep: #0b5da0;
  --jas-blue-dark: #0a4f8c;
  --jas-orange: #ff8c26;
  --jas-red: #ea5f51;
  --jas-text: #202b38;
  --jas-muted: #5d6b7b;
  --jas-line: #dfe5ec;
  --jas-badge: #edf1f5;
  --jas-card-shadow: 0 8px 22px rgba(19, 48, 79, 0.09);
}

.jas-page {
  background: #ffffff;
  color: var(--jas-text);
  padding: 42px 0 80px;
}

.jas-page__inner {
  width: min(1760px, calc(100% - 64px));
  margin: 0 auto;
}

.jas-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-bottom: 42px;
  color: #637184;
  font-size: 12px;
}

.jas-sidebar-button:hover
 {
    color: #ffffff !important;
}

.jas-breadcrumbs a {
  color: #475569;
  text-decoration: none;
}

.jas-breadcrumbs a:hover {
  color: var(--jas-blue-deep);
}

.jas-breadcrumbs__sep {
  color: #8d98a7;
  font-size: 26px;
  line-height: 1;
}

.jas-layout {
  display: grid;
  grid-template-columns: 352px minmax(0, 1fr);
  gap: 78px;
  align-items: start;
}

.jas-sidebar__card {
  background: #f4f7fb;
  border-top: 4px solid var(--jas-blue);
  border-radius: 10px 10px 0 0;
  overflow: hidden;
  box-shadow: inset 0 0 0 1px rgba(214, 222, 232, 0.72);
}

.jas-sidebar__heading {
  padding: 22px 24px;
  font-size: 25px;
  font-weight: 700;
  color: #243446;
  background: #f3f6fa;
  border-bottom: 1px solid #dce4ec;
}

.jas-sidebar__body {
  padding: 0 22px 10px;
}

.jas-volume {
  border-bottom: 1px solid #dde5ed;
}

.jas-volume:last-child {
  border-bottom: 0;
}

.jas-volume__toggle {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: transparent;
  border: 0;
  color: #213347;
  padding: 20px 0;
  font-size: 15px;
  cursor: pointer;
  text-align: left;
  padding-left: 20px !important;
  padding-right: 20px !important;
  padding-top: 10px;
  padding-bottom: 10px;
}

.jas-volume__caret {
  color: #6e8094;
  font-size: 22px;
  transform: rotate(-90deg);
  transition: transform 0.2s ease;
}

.jas-volume.is-open .jas-volume__caret {
  transform: rotate(0deg);
}

.jas-volume__issues {
  display: none;
  padding: 0 0 18px 20px;
}

.jas-volume.is-open .jas-volume__issues {
  display: block;
}

.jas-issue-link {
  display: block;
  color: var(--jas-blue-deep);
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  padding: 12px 0;
}

.jas-issue-link.is-active {
  color: var(--jas-blue-dark);
  font-size: 15px;
}

.jas-content__header {
  margin-bottom: 34px;
}

.jas-content__header h1,
.jas-single__title {
  margin: 0;
  font-size: clamp(25px, 1.45vw, 58px);
  line-height: 1.16;
  color: #243245;
  font-weight: 700;
  margin-bottom: 41px;
}

.jas-card,
.jas-single {
  background: #fff;
  border: 1px solid rgba(220, 228, 236, 0.8);
  box-shadow: var(--jas-card-shadow);
  padding: 28px 28px 30px;
}

.jas-content__cards .jas-card + .jas-card {
  margin-top: 28px;
}

.jas-card__topline {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.jas-badge {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 8px 14px;
  background: var(--jas-badge);
  color: #253547;
  font-size: 19px;
  line-height: 1;
}

.jas-access {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--jas-orange);
  font-size: 19px;
}

.jas-access__icon {
  width: 15px;
  height: 18px;
  border: 2px solid currentColor;
  border-radius: 8px;
  display: inline-block;
  position: relative;
  box-sizing: border-box;
}

.jas-access__icon::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -8px;
  width: 9px;
  height: 8px;
  border: 2px solid currentColor;
  border-bottom: 0;
  border-radius: 8px 8px 0 0;
  transform: translateX(-35%);
}

.jas-card__title,
.jas-card__title a {
  color: var(--jas-blue-deep);
  text-decoration: none;
  font-size: clamp(28px, 2.2vw, 49px);
  line-height: 1.33;
  font-weight: 700;
  margin: 0 0 8px;
}

.jas-card__title a:hover {
  color: var(--jas-blue-dark);
}

.jas-card__authors,
.jas-single__authors {
  margin: 0 0 24px;
  font-size: 15px;
  color: #243445;
}

.jas-author-link {
  color: var(--jas-blue-deep);
  text-decoration: none;
}

.jas-author-link:hover {
  color: var(--jas-blue-dark);
  text-decoration: underline;
}

.jas-card__meta,
.jas-single__meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px 36px;
  margin-bottom: 24px;
  font-size: 15px;
  line-height: 1.55;
  color: #243445;
}

.jas-card__meta-item {
  min-width: 0;
}

.jas-card__meta-item a,
.jas-single__meta a,
.jas-inline-link {
  color: var(--jas-blue-deep);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.jas-card__abstract,
.jas-single__section {
  font-size: 15px;
  line-height: 1.7;
  color: #273646;
}

.jas-card__abstract {
  margin-bottom: 26px;
}

.jas-card__actions,
.jas-single__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  align-items: center;
  margin-bottom: 48px;
}

.jas-action {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-size: 15px;
  color: #1e354c;
  text-decoration: none;
}

.jas-action:hover {
  color: #ffffff;
}

.jas-action__icon {
  width: 38px;
  height: 38px;
  display: inline-grid;
  place-items: center;
  color: #fff;
  font-size: 22px;
  border-radius: 3px;
  line-height: 1;
}

.jas-action--download .jas-action__icon {
  background: var(--jas-red);
}

.jas-action--view .jas-action__icon {
  background: var(--jas-blue-deep);
}

.jas-page--single .jas-page__inner {
  width: min(1180px, calc(100% - 48px));
}

.jas-single-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 398px;
  gap: 46px;
  align-items: start;
}

.jas-single-main {
  min-width: 0;
}

.jas-single-topline {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  margin-bottom: 18px;
  font-size: 15px;
  color: #233446;
}

.jas-single-topline__access {
  color: var(--jas-orange);
}

.jas-single-topline__peer {
  color: var(--jas-blue-deep);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.jas-single__published {
  margin: 0 0 22px;
  font-size: 15px;
  line-height: 1.6;
}

.jas-single__published strong {
  color: var(--jas-blue-deep);
  font-style: italic;
}

.jas-single__stats {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  margin: 0 0 48px;
  font-size: 15px;
}

.jas-action--share {
  border: 2px solid #1aa5d4;
  background: #fff;
  cursor: pointer;
  padding: 0 24px;
  min-height: 58px;
}

.jas-action--share .jas-action__icon {
  background: transparent;
  color: #1aa5d4;
  width: auto;
}

.jas-single__section + .jas-single__section,
.jas-single-info-card + .jas-single__section,
.jas-single__section + .jas-single-info-card {
  margin-top: 34px;
}

.jas-single__section h2 {
  margin: 0 0 12px;
  font-size: 24px;
  line-height: 1.3;
  color: #233345;
}

.jas-single__section p {
  margin: 0;
  text-align: justify;
}

.jas-accordion {
  border: 1px solid #dce5ee;
  background: #f9fbfd;
}

.jas-accordion__toggle,
.jas-archive-issue__toggle {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 18px 22px;
  border: 0;
  background: transparent;
  color: #233345;
  font-size: 17px;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
}

.jas-accordion__icon {
  color: var(--jas-blue-deep);
  font-size: 28px;
  line-height: 1;
  transition: transform 0.2s ease;
}

[data-jas-accordion].is-open .jas-accordion__icon {
  transform: rotate(45deg);
}

.jas-accordion__panel,
.jas-archive-issue__panel {
  display: none;
  padding: 22px 22px 22px;
}

[data-jas-accordion].is-open .jas-accordion__panel,
[data-jas-accordion].is-open .jas-archive-issue__panel {
  display: block;
}

.jas-reference-text p + p {
  margin-top: 16px;
}

.jas-prose {
  font-size: 15px;
  line-height: 1.8;
  color: #253649;
}

.jas-prose > *:first-child {
  margin-top: 0;
}

.jas-prose a {
  color: var(--jas-blue-deep);
}

.jas-single-info-card {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 24px 26px;
  margin-top: 34px;
  padding: 30px 24px;
  background: #eaf3fb;
  border-radius: 14px;
  font-size: 15px;
  line-height: 1.7;
}

.jas-single-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 36px;
  padding: 24px 28px;
  background: #f5f7f9;
}

.jas-single-nav div:last-child {
  text-align: right;
}

.jas-single-nav a {
  color: var(--jas-blue-deep);
  text-decoration: none;
  font-size: 18px;
}

.jas-single-sidebar {
  position: relative;
}

.jas-sticky-panel {
  position: sticky;
  top: 28px;
}

.jas-sticky-panel__close {
  text-align: right;
  font-size: 34px;
  line-height: 1;
  color: #ffffff;
  margin-bottom: 16px;
}

.jas-journal-cover {
  margin-bottom: 18px;
  background: #fff;
  border: 1px solid #dbe5ef;
  max-width: 67%;
  margin-left: auto;
  margin-right: auto;
}

.jas-journal-cover img {
  display: block;
  width: 100%;
  height: auto;
}

.jas-journal-cover__placeholder {
  padding: 34px 24px;
  min-height: 260px;
  display: grid;
  place-items: center;
  text-align: center;
  gap: 12px;
  color: #243445;
}

.jas-sidebar-button {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 60px;
  margin-bottom: 16px;
  text-decoration: none;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
}

.jas-sidebar-button--download {
  background: #18a6d8;
}

.jas-sidebar-button--submit {
  background: #ef594a;
}

.jas-side-tabs {
  margin-top: 26px;
  border: 1px solid #dfe5ec;
  background: #fff;
}

.jas-side-tabs__nav {
  display: flex;
  background: #f5f7fb;
  border-bottom: 1px solid #dfe5ec;
}

.jas-side-tabs__nav button {
  flex: 1;
  border: 0;
  background: transparent;
  padding: 16px 14px;
  font-size: 17px;
  font-weight: 700;
  color: #2e3a47;
  cursor: pointer;
}

.jas-side-tabs__nav button.is-active {
  background: #fff;
  color: #1296c9;
  box-shadow: inset 0 3px 0 #1296c9;
}

.jas-side-tabs__panel {
  display: none;
  max-height: 560px;
  overflow: auto;
  padding: 16px;
}

.jas-side-tabs__panel.is-active {
  display: block;
}

.jas-side-tabs__panel a {
  display: block;
  padding: 11px 0;
  border-bottom: 1px solid #e3e8ee;
  color: var(--jas-blue-deep);
  text-decoration: none;
  font-size: 17px;
  line-height: 1.5;
}

.jas-citation-card {
  font-size: 12px;
  line-height: 1.8;
  color: #243445;
}

.jas-citation-card a {
  color: var(--jas-blue-deep);
  word-break: break-word;
}

.jas-asset-card {
  padding: 12px 0 18px;
  border-bottom: 1px solid #e3e8ee;
}

.jas-asset-card img {
  display: block;
  width: 100%;
  height: auto;
  margin: 10px 0;
}

.jas-secondary-image {
  width: 120px;
  height: 120px;
  margin: 78px auto 0;
  padding: 0;
  border: 1px solid #d6e1ec;
  border-radius: 6px;
  background: #ffffff;
  box-shadow: 0 8px 18px rgba(15, 54, 92, 0.08);
  overflow: hidden;
}

.jas-secondary-image__img {
  width: 120px !important;
  height: 120px !important;
  display: block;
  object-fit: cover;
  aspect-ratio: 1 / 1;
}

.jas-empty-state {
  background: #fff;
  border: 1px solid var(--jas-line);
  padding: 28px;
  font-size: 20px;
  color: var(--jas-muted);
}

.jas-shortcode-wrap {
  width: 100%;
}

.jas-filter-wrap {
  width: 100%;
}

.jas-filter-form {
  margin-bottom: 28px;
  padding: 24px;
  background: #f5f8fb;
  border: 1px solid #dce5ee;
}

.jas-filter-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.jas-filter-form--horizontal .jas-filter-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.jas-filter-form--vertical .jas-filter-grid {
  grid-template-columns: 1fr;
}

.jas-filter-wrap--vertical .jas-filter-form {
  max-width: 420px;
}

.jas-filter-field label {
  display: block;
  margin-bottom: 8px;
  font-size: 15px;
  font-weight: 700;
  color: #223446;
}

.jas-filter-field input {
  width: 100%;
  min-height: 46px;
  padding: 10px 14px;
  border: 1px solid #cfd9e5;
  background: #fff;
  font-size: 13px;
}

.jas-filter-field select {
  width: 100%;
  min-height: 46px;
  padding: 10px 14px;
  border: 1px solid #cfd9e5;
  background: #fff;
  font-size: 15px;
}

.jas-filter-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.jas-filter-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 37px;
  padding: 0 18px;
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
}

.jas-filter-button--primary {
  border: 0;
  background: var(--jas-blue-deep);
  color: #fff;
  cursor: pointer;
}

.jas-filter-button--secondary {
  border: 1px solid #cbd6e2;
  background: #fff;
  color: #223446;
}

.jas-content--full {
  grid-column: 1 / -1;
}

.jas-archive-year-nav + .jas-archive-year-nav {
  margin-top: 22px;
}

.jas-archive-year-nav__title {
  margin: 0 0 10px;
  font-size: 15px;
  line-height: 1.4;
  color: #637184;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-top: 15px;
}

.jas-list--classic .jas-card {
  background: #f5f5f5;
  padding: 20px;
  margin-bottom: 25px;
  border-radius: 6px;
  border: 0;
  box-shadow: none;
}

.jas-list--classic .jas-card:last-child {
  margin-bottom: 0;
}

.jas-list--classic .jas-card__topline {
  gap: 10px;
  margin-bottom: 10px;
}

.jas-list--classic .jas-badge,
.jas-list--classic .jas-access {
  font-size: 12px;
  min-height: auto;
  padding: 4px 8px;
}

.jas-list--classic .jas-card__title,
.jas-list--classic .jas-card__title a {
  font-size: 22px;
  line-height: 1.35;
  margin: 10px 0;
}

.jas-list--classic .jas-card__authors {
  font-size: 13px;
  margin-bottom: 10px;
}

.jas-list--classic .jas-card__meta {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  font-size: 13px;
  line-height: 1.6;
  gap: 8px 18px;
  margin-bottom: 10px;
}

.jas-list--classic .jas-card__abstract,
.jas-list--classic .jas-card__keywords {
  font-size: 14px;
  line-height: 1.6;
}

.jas-list--classic .jas-card__keywords {
  margin-bottom: 14px;
}

.jas-list--classic .jas-action {
  font-size: 14px;
  gap: 10px;
}

.jas-list--classic .jas-action__icon {
  width: 28px;
  height: 28px;
  font-size: 16px;
}

@media (max-width: 1400px) {
  .jas-page__inner {
    width: min(1280px, calc(100% - 36px));
  }

  .jas-layout {
    grid-template-columns: 290px minmax(0, 1fr);
    gap: 36px;
  }

  .jas-sidebar__heading {
    font-size: 24px;
  }

  .jas-volume__toggle,
  .jas-issue-link {
    font-size: 20px;
  }

  .jas-card__meta,
  .jas-single__meta {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .jas-page {
    padding: 28px 0 48px;
  }

  .jas-page__inner,
  .jas-page--single .jas-page__inner {
    width: calc(100% - 24px);
  }

  .jas-breadcrumbs {
    margin-bottom: 24px;
    font-size: 15px;
    gap: 8px;
  }

  .jas-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .jas-single-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .jas-filter-grid {
    grid-template-columns: 1fr;
  }

  .jas-filter-wrap--vertical {
    position: relative;
  }

  .jas-filter-wrap--vertical .jas-filter-form {
    position: relative;
    overflow: hidden;
    max-width: none;
    margin-bottom: 24px;
    padding: 20px 18px 18px;
    background:
      radial-gradient(circle at top right, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0) 34%),
      linear-gradient(180deg, #f8fbff 0%, #edf4fb 54%, #e7eef7 100%);
    border: 1px solid #d2dde9;
    border-radius: 20px;
    box-shadow:
      0 16px 34px rgba(15, 54, 92, 0.12),
      inset 0 1px 0 rgba(255, 255, 255, 0.7);
  }

  .jas-filter-wrap--vertical .jas-filter-form::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 5px;
    background: linear-gradient(90deg, var(--jas-blue) 0%, #39a6d6 45%, var(--jas-orange) 100%);
  }

  .jas-filter-wrap--vertical .jas-filter-form::after {
    content: "";
    position: absolute;
    right: -50px;
    bottom: -60px;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(15, 121, 183, 0.18) 0%, rgba(15, 121, 183, 0) 72%);
    pointer-events: none;
  }

  .jas-filter-wrap--vertical .jas-filter-grid {
    position: relative;
    gap: 15px;
  }

  .jas-filter-wrap--vertical .jas-filter-field label {
    margin-bottom: 7px;
    padding-left: 2px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #4d6072;
  }

  .jas-filter-wrap--vertical .jas-filter-field input,
  .jas-filter-wrap--vertical .jas-filter-field select {
    min-height: 50px;
    padding: 12px 14px;
    border: 1px solid #c4d3e1;
    border-radius: 14px;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 251, 255, 0.96) 100%);
    color: var(--jas-text);
    font-size: 15px;
    font-weight: 600;
    line-height: 1.4;
    box-shadow:
      inset 0 1px 2px rgba(13, 36, 61, 0.03),
      0 6px 14px rgba(15, 54, 92, 0.05);
    appearance: none;
    -webkit-appearance: none;
    transition: transform 0.18s ease, border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
  }

  .jas-filter-wrap--vertical .jas-filter-field input::placeholder {
    color: #93a0af;
    font-weight: 500;
  }

  .jas-filter-wrap--vertical .jas-filter-field input:focus,
  .jas-filter-wrap--vertical .jas-filter-field select:focus {
    outline: none;
    transform: translateY(-1px);
    border-color: rgba(11, 93, 160, 0.8);
    box-shadow:
      0 0 0 4px rgba(15, 121, 183, 0.14),
      0 10px 18px rgba(11, 93, 160, 0.12);
    background: #ffffff;
  }

  .jas-filter-wrap--vertical .jas-filter-field select {
    padding-right: 42px;
    background-image:
      linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 251, 255, 0.96) 100%),
      linear-gradient(45deg, transparent 50%, var(--jas-blue-deep) 50%),
      linear-gradient(135deg, var(--jas-blue-deep) 50%, transparent 50%);
    background-repeat: no-repeat, no-repeat, no-repeat;
    background-position: 0 0, calc(100% - 18px) 22px, calc(100% - 12px) 22px;
    background-size: auto, 6px 6px, 6px 6px;
  }

  .jas-filter-wrap--vertical .jas-filter-actions {
    gap: 10px;
    margin-top: 18px;
    padding-top: 4px;
  }

  .jas-filter-wrap--vertical .jas-filter-button {
    position: relative;
    width: 100%;
    min-height: 50px;
    padding: 0 16px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.02em;
    transition: transform 0.18s ease, box-shadow 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
  }

  .jas-filter-wrap--vertical .jas-filter-button--primary {
    background: linear-gradient(135deg, var(--jas-blue) 0%, var(--jas-blue-deep) 100%);
    box-shadow: 0 12px 24px rgba(11, 93, 160, 0.24);
  }

  .jas-filter-wrap--vertical .jas-filter-button--secondary {
    border-color: #cfdae6;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(245, 248, 252, 0.95) 100%);
    box-shadow: 0 8px 18px rgba(15, 54, 92, 0.06);
  }

  .jas-filter-wrap--vertical .jas-filter-button:active {
    transform: translateY(1px);
  }

  .jas-sidebar {
    order: 2;
  }

  .jas-content {
    order: 1;
  }

  .jas-card,
  .jas-single {
    padding: 22px 18px 24px;
  }

  .jas-card__authors,
  .jas-single__authors,
  .jas-card__meta,
  .jas-single__meta,
  .jas-card__abstract,
  .jas-card__keywords,
  .jas-single__section,
  .jas-prose,
  .jas-action {
    font-size: 17px;
  }

  .jas-card__meta,
  .jas-single__meta {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .jas-single-info-card {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 22px 18px;
  }

  .jas-single-nav {
    grid-template-columns: 1fr;
    padding: 18px;
  }

  .jas-single-nav div:last-child {
    text-align: left;
  }

  .jas-sticky-panel {
    position: static;
  }
}

.jpase-archive {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  color: var(--jas-text);
}

.jpase-archive *,
.jpase-archive *::before,
.jpase-archive *::after {
  box-sizing: border-box;
}

.jpase-archive__header {
  margin-bottom: 28px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--jas-line);
}

.jpase-archive__eyebrow {
  margin: 0 0 8px;
  color: var(--jas-blue-deep);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.jpase-archive__header h2 {
  margin: 0 0 10px;
  color: #182c44;
  font-size: 34px;
  line-height: 1.2;
  font-weight: 750;
}

.jpase-archive__header p:last-child {
  max-width: 720px;
  margin: 0;
  color: var(--jas-muted);
  font-size: 16px;
  line-height: 1.65;
}

.jpase-archive__search {
  margin-bottom: 28px;
}

.jpase-year-list {
  display: grid;
  gap: 14px;
}

.jpase-year {
  border: 1px solid #cfdceb;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 10px 26px rgba(15, 55, 96, 0.07);
  overflow: hidden;
}

.jpase-year__heading {
  margin: 0;
}

.jpase-year__toggle {
  width: 100%;
  min-height: 72px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 18px 24px;
  border: 0;
  border-left: 5px solid var(--jas-blue);
  background: #f7fbff;
  color: #182c44;
  text-align: left;
  cursor: pointer;
}

.jpase-year__toggle:hover,
.jpase-year__toggle:focus-visible {
  background: #eef7fd;
  color: #182c44 !important;
}

.jpase-year__toggle:focus-visible,
.jpase-inline-button:focus-visible,
.jpase-action:focus-visible {
  outline: 3px solid rgba(15, 121, 183, 0.28);
  outline-offset: 3px;
}

.jpase-year__label {
  font-size: 24px;
  font-weight: 800;
  line-height: 1;
}

.jpase-year__meta {
  justify-self: start;
  color: #182c44 !important;
  font-size: 14px;
  font-weight: 650;
}

.jpase-year__chevron {
  width: 12px;
  height: 12px;
  border-right: 2px solid var(--jas-blue-deep);
  border-bottom: 2px solid var(--jas-blue-deep);
  transform: rotate(45deg);
  transition: transform 0.2s ease;
}

.jpase-year.is-open .jpase-year__chevron {
  transform: rotate(225deg);
}

.jpase-year__panel {
  padding: 24px;
  background: #ffffff;
}

.jpase-issue + .jpase-issue {
  margin-top: 28px;
  padding-top: 26px;
  border-top: 1px solid var(--jas-line);
}

.jpase-issue__header {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px 18px;
  margin-bottom: 16px;
}

.jpase-issue__header h4 {
  margin: 0;
  color: #243245;
  font-size: 19px;
  line-height: 1.35;
  font-weight: 750;
}

.jpase-issue__header span {
  color: var(--jas-muted);
  font-size: 14px;
  font-weight: 650;
}

.jpase-article-list {
  display: grid;
  gap: 18px;
}

.jpase-card {
  padding: 22px;
  border: 1px solid #dce6f0;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 8px 20px rgba(27, 57, 86, 0.06);
}

.jpase-card__topline,
.jpase-card__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 14px;
}

.jpase-card__topline {
  margin-bottom: 12px;
}

.jpase-badge,
.jpase-access {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 750;
  line-height: 1;
}

.jpase-badge {
  padding: 7px 10px;
  background: #edf4fa;
  color: #1e405f;
}

.jpase-access {
  gap: 7px;
  color: #b95719;
}

.jpase-access__icon {
  width: 13px;
  height: 15px;
  border: 2px solid currentColor;
  border-radius: 7px;
  position: relative;
}

.jpase-access__icon::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -8px;
  width: 8px;
  height: 8px;
  border: 2px solid currentColor;
  border-bottom: 0;
  border-radius: 8px 8px 0 0;
  transform: translateX(-35%);
}

.jpase-card__title {
  margin: 0 0 8px;
  font-size: 22px;
  line-height: 1.32;
  font-weight: 760;
}

.jpase-card__title a {
  color: var(--jas-blue-deep);
  text-decoration: none;
}

.jpase-card__title a:hover {
  color: var(--jas-blue-dark);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.jpase-card__authors {
  margin: 0 0 16px;
  color: #26384b;
  font-size: 15px;
  line-height: 1.55;
}

.jpase-card__meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 22px;
  margin-bottom: 16px;
  color: #34465a;
  font-size: 14px;
  line-height: 1.55;
}

.jpase-card__meta strong,
.jpase-card__abstract strong,
.jpase-card__keywords strong {
  color: #203349;
}

.jpase-card__meta a,
.jpase-card__authors a,
.jpase-inline-button {
  color: var(--jas-blue-deep);
}

.jpase-card__abstract,
.jpase-card__keywords {
  color: #2f4054;
  font-size: 15px;
  line-height: 1.7;
}

.jpase-card__abstract {
  margin-bottom: 12px;
}

.jpase-card__keywords {
  margin-bottom: 18px;
}

.jpase-inline-button {
  margin-left: 8px;
  padding: 0;
  border: 0;
  background: transparent;
  font: inherit;
  font-weight: 750;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
}

.jpase-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 10px 15px;
  border-radius: 4px;
  border: 1px solid var(--jas-blue-deep);
  color: var(--jas-blue-deep);
  background: #ffffff;
  font-size: 14px;
  font-weight: 750;
  line-height: 1.2;
  text-decoration: none;
}

.jpase-action--download {
  border-color: var(--jas-blue-deep);
  background: var(--jas-blue-deep);
  color: #ffffff;
}

.jpase-action--download span {
  display: inline-grid;
  place-items: center;
  min-width: 32px;
  height: 22px;
  margin-right: 8px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.18);
  font-size: 11px;
  letter-spacing: 0;
}

.jpase-action:hover {
  border-color: var(--jas-blue-dark);
  background: var(--jas-blue-dark);
  color: #ffffff;
}

@media (max-width: 860px) {
  .jpase-archive {
    width: min(100% - 28px, 100%);
  }

  .jpase-archive__header h2 {
    font-size: 28px;
  }

  .jpase-year__toggle {
    grid-template-columns: 1fr auto;
    gap: 8px 14px;
    padding: 16px 18px;
  }

  .jpase-year__meta {
    grid-column: 1;
  }

  .jpase-year__chevron {
    grid-row: 1 / span 2;
    grid-column: 2;
  }

  .jpase-year__panel {
    padding: 18px;
  }

  .jpase-card__meta {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .jpase-year__label {
    font-size: 21px;
  }

  .jpase-card {
    padding: 18px;
  }

  .jpase-card__title {
    font-size: 19px;
  }

  .jpase-card__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .jpase-action {
    width: 100%;
  }
}
