:root {
  --red: #c91f2b;
  --red-dark: #9e111d;
  --red-soft: #fff1f1;
  --ink: #181b24;
  --muted: #69707d;
  --line: #e9e7e4;
  --paper: #ffffff;
  --canvas: #f6f5f2;
  --warm: #b86938;
  --shadow: 0 18px 50px rgba(35, 29, 23, 0.08);
  --radius: 22px;
  font-family:
    Inter, "PingFang SC", "Microsoft YaHei", "Noto Sans CJK SC", sans-serif;
  color: var(--ink);
  background: var(--canvas);
  font-synthesis: none;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 8% 7%, rgba(201, 31, 43, 0.07), transparent 24rem),
    var(--canvas);
  color: var(--ink);
}

button,
input,
select {
  font: inherit;
}

button,
a,
select,
input {
  -webkit-tap-highlight-color: transparent;
}

button {
  cursor: pointer;
}

.shell {
  width: min(1480px, calc(100% - 56px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  z-index: 30;
  top: 0;
  border-bottom: 1px solid rgba(24, 27, 36, 0.07);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
}

.nav-row {
  display: flex;
  min-height: 78px;
  align-items: center;
  gap: 48px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 43px;
  height: 43px;
  place-items: center;
  border-radius: 14px;
  background: var(--red);
  color: #fff;
  font-family: "STSong", serif;
  font-size: 25px;
  font-weight: 800;
  box-shadow: 0 9px 20px rgba(201, 31, 43, 0.22);
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 18px;
  letter-spacing: 0.08em;
}

.brand small {
  margin-top: 3px;
  color: #9a8d83;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav-row nav {
  display: flex;
  flex: 1;
  justify-content: center;
  gap: 38px;
}

.nav-row nav a {
  position: relative;
  padding: 28px 0 25px;
  color: #424650;
  font-size: 15px;
  text-decoration: none;
}

.nav-row nav a::after {
  position: absolute;
  right: 0;
  bottom: 16px;
  left: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--red);
  content: "";
  opacity: 0;
  transform: scaleX(0.4);
  transition: 0.2s ease;
}

.nav-row nav a:hover,
.nav-row nav a.active {
  color: var(--red);
}

.nav-row nav a.active::after {
  opacity: 1;
  transform: scaleX(1);
}

.data-status {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
  white-space: nowrap;
}

.data-status span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d6a12e;
  box-shadow: 0 0 0 5px rgba(214, 161, 46, 0.12);
}

.data-status.is-online span {
  background: #1f9a6c;
  box-shadow: 0 0 0 5px rgba(31, 154, 108, 0.12);
}

.data-status.is-error span {
  background: var(--red);
  box-shadow: 0 0 0 5px rgba(201, 31, 43, 0.12);
}

.hero {
  display: flex;
  min-height: 285px;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding-block: 68px 54px;
}

.hero-copy {
  max-width: 800px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--red);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  font-family: "STSong", "Songti SC", serif;
  font-size: clamp(38px, 5vw, 66px);
  font-weight: 650;
  letter-spacing: -0.04em;
  line-height: 1.08;
}

.hero-copy > p:last-child {
  max-width: 680px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.85;
}

.hero-stat {
  display: flex;
  min-width: 190px;
  flex-direction: column;
  align-items: center;
  padding: 28px 34px;
  border: 1px solid rgba(201, 31, 43, 0.13);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.67);
  aspect-ratio: 1;
  justify-content: center;
}

.hero-stat strong {
  color: var(--red);
  font-family: "STSong", serif;
  font-size: 50px;
  line-height: 1;
}

.hero-stat span {
  margin-top: 10px;
  color: var(--muted);
  font-size: 13px;
}

.search-panel,
.results-section {
  border: 1px solid rgba(39, 34, 29, 0.05);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.search-panel {
  padding: 34px 40px 30px;
}

.section-heading,
.results-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}

.section-heading h2,
.results-heading h2 {
  margin: 0;
  font-family: "STSong", "Songti SC", serif;
  font-size: 31px;
  font-weight: 650;
}

.text-button {
  border: 0;
  background: none;
  color: var(--red);
  font-size: 14px;
}

.text-button:hover {
  text-decoration: underline;
}

.keyword-row {
  display: grid;
  margin-top: 25px;
  grid-template-columns: minmax(0, 1fr) 155px;
  gap: 14px;
}

.search-box {
  display: flex;
  height: 54px;
  align-items: center;
  gap: 12px;
  padding: 0 18px;
  border: 1px solid #dfdcd7;
  border-radius: 12px;
  background: #fbfaf8;
  transition: 0.2s ease;
}

.search-box:focus-within {
  border-color: rgba(201, 31, 43, 0.65);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(201, 31, 43, 0.07);
}

.search-box svg {
  width: 21px;
  fill: none;
  stroke: #8b8f97;
  stroke-linecap: round;
  stroke-width: 1.8;
}

.search-box input {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
}

.search-box input::placeholder {
  color: #a2a2a2;
}

.primary-button,
.detail-button {
  border: 0;
  border-radius: 12px;
  background: var(--red);
  color: #fff;
  font-weight: 700;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.primary-button:hover,
.detail-button:hover {
  background: var(--red-dark);
  box-shadow: 0 10px 24px rgba(201, 31, 43, 0.2);
  transform: translateY(-1px);
}

.filter-groups {
  margin-top: 26px;
  border-top: 1px solid var(--line);
}

.filter-group {
  display: grid;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  grid-template-columns: 108px 1fr;
  gap: 12px;
}

.filter-group-title {
  padding-top: 8px;
  color: #555a65;
  font-size: 14px;
  font-weight: 700;
}

.filter-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.filter-chip {
  position: relative;
}

.filter-chip input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.filter-chip span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  gap: 5px;
  padding: 7px 11px;
  border: 1px solid transparent;
  border-radius: 9px;
  color: #575c66;
  cursor: pointer;
  font-size: 13px;
  transition: 0.18s ease;
}

.filter-chip small {
  color: #a0a2a7;
  font-size: 10px;
}

.filter-chip span:hover {
  background: #f7f3f1;
  color: var(--red);
}

.filter-chip input:focus-visible + span {
  outline: 2px solid rgba(201, 31, 43, 0.35);
  outline-offset: 2px;
}

.filter-chip input:checked + span {
  border-color: rgba(201, 31, 43, 0.13);
  background: var(--red-soft);
  color: var(--red);
  font-weight: 700;
}

.filter-chip input:checked + span small {
  color: #c57c81;
}

.filter-skeleton {
  height: 52px;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(90deg, transparent, #f5f2ef, transparent);
  background-size: 220% 100%;
  animation: shimmer 1.4s infinite;
}

.filter-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 18px;
}

.selected-summary {
  color: var(--muted);
  font-size: 13px;
}

.sort-field {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--muted);
  font-size: 13px;
}

.sort-field select {
  min-width: 118px;
  padding: 8px 30px 8px 11px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: #fff;
  color: var(--ink);
}

.results-section {
  margin-top: 32px;
  padding: 40px;
}

.results-heading {
  margin-bottom: 28px;
}

.results-heading > p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.notice {
  display: none;
  margin-bottom: 20px;
  padding: 12px 15px;
  border-radius: 10px;
  background: #fff3e6;
  color: #925419;
  font-size: 14px;
}

.notice.is-visible {
  display: block;
}

.notice.is-error {
  background: var(--red-soft);
  color: var(--red-dark);
}

.journal-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 44px;
}

.journal-card {
  display: grid;
  min-width: 0;
  padding: 28px 0;
  border-top: 1px solid var(--line);
  grid-template-columns: 152px minmax(0, 1fr);
  gap: 25px;
}

.journal-card:nth-child(-n + 2) {
  padding-top: 0;
  border-top: 0;
}

.cover-wrap {
  position: relative;
  height: 212px;
  overflow: hidden;
  border: 8px solid #f2f1ef;
  border-radius: 4px;
  background: #eeece8;
}

.journal-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cover-placeholder {
  display: grid;
  width: 100%;
  height: 100%;
  place-content: center;
  background:
    linear-gradient(145deg, rgba(201, 31, 43, 0.08), transparent),
    #f0f1f3;
  color: #9b9290;
  text-align: center;
}

.cover-placeholder span {
  font-family: "STSong", serif;
  font-size: 50px;
}

.cover-placeholder small {
  margin-top: 7px;
}

.journal-main {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.journal-title-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}

.journal-title-row h3 {
  margin: 7px 0 0;
  font-family: "STSong", "Songti SC", serif;
  font-size: 25px;
  line-height: 1.25;
}

.journal-title-button {
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font: inherit;
  text-align: left;
}

.journal-title-button:hover,
.journal-title-button:focus-visible {
  color: var(--red);
}

.journal-title-button:focus-visible {
  border-radius: 4px;
  outline: 2px solid rgba(201, 31, 43, 0.32);
  outline-offset: 3px;
}

.tag-row {
  display: flex;
  min-height: 22px;
  flex-wrap: wrap;
  gap: 6px;
}

.tag {
  display: inline-flex;
  padding: 4px 7px;
  border-radius: 5px;
  background: #f8eee8;
  color: var(--warm);
  font-size: 11px;
}

.tag.tag-dark {
  background: #eff0f3;
  color: #565c67;
}

.detail-link {
  flex: 0 0 auto;
  padding: 4px 0;
  border: 0;
  background: transparent;
  color: #7a7e86;
  font-size: 13px;
}

.detail-link:hover {
  color: var(--red);
}

.journal-meta {
  display: grid;
  margin: 18px 0 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 18px;
}

.journal-meta div {
  min-width: 0;
}

.journal-meta dt,
.journal-meta dd {
  display: inline;
  margin: 0;
  font-size: 13px;
}

.journal-meta dt {
  color: #8a8e95;
}

.journal-meta dd {
  color: #343841;
}

.current-issue {
  display: -webkit-box;
  overflow: hidden;
  margin: 16px 0 0;
  color: #60656f;
  font-size: 13px;
  line-height: 1.75;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 17px;
}

.journal-code {
  color: #9a9ca2;
  font-size: 11px;
}

.detail-button {
  padding: 9px 14px;
  font-size: 12px;
}

.card-skeleton {
  display: grid;
  min-height: 270px;
  padding: 24px 0;
  border-top: 1px solid var(--line);
  grid-template-columns: 152px 1fr;
  gap: 25px;
}

.card-skeleton::before,
.card-skeleton::after {
  border-radius: 8px;
  background: linear-gradient(90deg, #f4f2ef, #faf9f7, #f4f2ef);
  background-size: 220% 100%;
  content: "";
  animation: shimmer 1.4s infinite;
}

.empty-state {
  grid-column: 1 / -1;
  padding: 80px 20px;
  color: var(--muted);
  text-align: center;
}

.empty-state strong {
  display: block;
  margin-bottom: 10px;
  color: var(--ink);
  font-family: "STSong", serif;
  font-size: 28px;
}

.load-more-wrap {
  display: flex;
  justify-content: center;
  padding-top: 30px;
}

.load-more-button {
  min-width: 210px;
  padding: 12px 25px;
  border: 1px solid rgba(201, 31, 43, 0.32);
  border-radius: 12px;
  background: #fff;
  color: var(--red);
  transition: 0.2s ease;
}

.load-more-button span,
.load-more-button small {
  display: block;
}

.load-more-button span {
  font-weight: 700;
}

.load-more-button small {
  margin-top: 4px;
  color: #a56b70;
  font-size: 10px;
}

.load-more-button:hover {
  background: var(--red);
  color: #fff;
}

.load-more-button:hover small {
  color: #ffd8db;
}

.load-more-button:disabled {
  cursor: wait;
  opacity: 0.55;
}

.guide {
  display: grid;
  margin-block: 34px 72px;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.guide > div {
  min-height: 145px;
  padding: 25px 27px;
  border: 1px solid rgba(39, 34, 29, 0.06);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.68);
}

.guide span {
  color: var(--red);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.guide h3 {
  margin: 12px 0 8px;
  font-size: 16px;
}

.guide p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.site-footer {
  background: #191b20;
  color: #fff;
}

.footer-row {
  display: flex;
  min-height: 155px;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.footer-row strong {
  font-family: "STSong", serif;
  font-size: 24px;
}

.footer-row p {
  margin: 7px 0 0;
  color: #aeb0b7;
  font-size: 13px;
}

.modal[hidden] {
  display: none;
}

.modal {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
}

.modal-backdrop {
  position: absolute;
  background: rgba(15, 16, 20, 0.65);
  backdrop-filter: blur(5px);
  inset: 0;
}

.modal-card {
  position: relative;
  display: flex;
  width: min(1180px, 100%);
  max-height: min(880px, calc(100vh - 48px));
  overflow: hidden;
  flex-direction: column;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.28);
  animation: modal-in 0.24s ease both;
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 23px 28px;
  border-bottom: 1px solid var(--line);
}

.modal-header .eyebrow {
  margin-bottom: 5px;
}

.modal-header h2 {
  margin: 0;
  font-family: "STSong", serif;
  font-size: 25px;
}

.modal-close {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
  color: #4b4e55;
}

.modal-close:hover {
  border-color: rgba(201, 31, 43, 0.2);
  background: var(--red-soft);
  color: var(--red);
}

.modal-close svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 1.7;
}

.modal-body {
  overflow: auto;
  padding: 30px;
}

.modal-loading {
  padding: 90px 20px;
  color: var(--muted);
  text-align: center;
}

.member-access-card {
  position: relative;
  z-index: 1;
  width: min(460px, 100%);
  padding: 42px 38px 34px;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.28);
  text-align: center;
  animation: modal-in 0.24s ease both;
}

.member-access-close {
  position: absolute;
  top: 16px;
  right: 16px;
}

.member-access-badge {
  display: inline-flex;
  min-width: 60px;
  height: 60px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--red-soft);
  color: var(--red);
  font-size: 15px;
  font-weight: 700;
}

.member-access-card h2 {
  margin: 20px 0 10px;
  font-family: "STSong", "Songti SC", serif;
  font-size: 28px;
}

.member-access-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.member-access-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 26px;
}

.member-access-actions .primary-button,
.member-access-actions .text-button {
  min-width: 132px;
}

.detail-layout {
  display: grid;
  grid-template-columns: 245px minmax(0, 1fr);
  gap: 34px;
}

.detail-aside {
  min-width: 0;
}

.detail-cover {
  width: 100%;
  max-height: 340px;
  border: 10px solid #f1f0ee;
  background: #eeece8;
  object-fit: cover;
}

.detail-aside h3 {
  margin: 20px 0 8px;
  font-family: "STSong", serif;
  font-size: 26px;
}

.detail-aside .detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.detail-section {
  overflow: hidden;
  margin-bottom: 18px;
  border: 1px solid var(--line);
  border-radius: 13px;
}

.detail-section h4 {
  margin: 0;
  padding: 13px 18px;
  background: #f6f3f0;
  font-size: 15px;
}

.detail-section.price-section h4 {
  background: var(--red);
  color: #fff;
}

.detail-list {
  display: grid;
  margin: 0;
  padding: 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 24px;
}

.detail-list div {
  min-width: 0;
}

.detail-list dt {
  margin: 0 0 4px;
  color: #858992;
  font-size: 12px;
}

.detail-list dd {
  margin: 0;
  color: #353943;
  font-size: 14px;
  line-height: 1.65;
  white-space: pre-line;
}

.detail-text {
  margin: 0;
  padding: 18px;
  color: #4d525d;
  font-size: 14px;
  line-height: 1.85;
  white-space: pre-line;
}

.agent-price {
  padding: 20px 18px 22px;
}

.agent-price strong {
  display: block;
  color: var(--red);
  font-family: "STSong", serif;
  font-size: 32px;
}

.agent-price span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 12px;
}

body.modal-open {
  overflow: hidden;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  padding: 0;
  border: 0;
  margin: -1px;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

@keyframes shimmer {
  to {
    background-position: -220% 0;
  }
}

@keyframes modal-in {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.985);
  }
}

@media (max-width: 1100px) {
  .nav-row nav {
    display: none;
  }

  .data-status {
    margin-left: auto;
  }

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

  .journal-card:nth-child(2) {
    padding-top: 28px;
    border-top: 1px solid var(--line);
  }
}

@media (max-width: 760px) {
  .shell {
    width: min(100% - 28px, 1480px);
  }

  .nav-row {
    min-height: 68px;
  }

  .brand small,
  .data-status {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-block: 48px 34px;
  }

  .hero-stat {
    display: none;
  }

  .hero h1 {
    font-size: 39px;
  }

  .hero-copy > p:last-child {
    font-size: 15px;
  }

  .search-panel,
  .results-section {
    padding: 25px 20px;
    border-radius: 17px;
  }

  .keyword-row {
    grid-template-columns: 1fr;
  }

  .primary-button {
    min-height: 48px;
  }

  .filter-group {
    grid-template-columns: 1fr;
  }

  .filter-group-title {
    padding-top: 0;
  }

  .filter-footer,
  .results-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .journal-card {
    grid-template-columns: 110px minmax(0, 1fr);
    gap: 16px;
  }

  .cover-wrap {
    height: 158px;
    border-width: 5px;
  }

  .journal-title-row h3 {
    font-size: 21px;
  }

  .detail-link,
  .journal-meta,
  .current-issue {
    display: none;
  }

  .card-footer {
    margin-top: 16px;
  }

  .guide {
    grid-template-columns: 1fr;
  }

  .footer-row {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
  }

  .modal {
    padding: 0;
  }

  .modal-card {
    width: 100%;
    max-height: 100vh;
    min-height: 100vh;
    border-radius: 0;
  }

  .modal-body {
    padding: 20px;
  }

  .detail-layout {
    grid-template-columns: 1fr;
  }

  .detail-cover {
    width: 160px;
    max-height: 225px;
  }

  .detail-list {
    grid-template-columns: 1fr;
  }
}

/* Align the journal finder with the compact public-site layout. */
body[data-page="journals"] .hero {
  display: none;
}

body[data-page="journals"] main {
  padding-top: 30px;
}

body[data-page="journals"] .search-panel,
body[data-page="journals"] .results-section {
  border-radius: 12px;
}

body[data-page="journals"] .section-heading .eyebrow,
body[data-page="journals"] .results-heading .eyebrow {
  display: none;
}

body[data-page="journals"] .section-heading h2,
body[data-page="journals"] .results-heading h2 {
  color: var(--red);
  font-family: "Microsoft YaHei", "PingFang SC", sans-serif;
  font-size: 27px;
  font-weight: 500;
}

body[data-page="journals"] .search-panel {
  padding: 30px 40px 22px;
}

body[data-page="journals"] .keyword-row {
  margin-top: 18px;
}

body[data-page="journals"] .search-box {
  height: 44px;
  border-radius: 4px;
}

body[data-page="journals"] .primary-button {
  border-radius: 4px;
}

body[data-page="journals"] .filter-groups {
  margin-top: 14px;
}

body[data-page="journals"] .filter-group {
  padding: 5px 0;
  grid-template-columns: 108px 1fr;
}

body[data-page="journals"] .filter-group-title {
  padding-top: 4px;
}

body[data-page="journals"] .filter-options {
  gap: 2px 7px;
}

body[data-page="journals"] .filter-chip span {
  min-height: 25px;
  gap: 5px;
  padding: 2px 5px;
  border-radius: 3px;
}

body[data-page="journals"] .filter-chip span::before {
  width: 12px;
  height: 12px;
  flex: 0 0 12px;
  border: 1px solid #d7dce2;
  border-radius: 2px;
  content: "";
}

body[data-page="journals"] .filter-chip input:checked + span::before {
  border-color: var(--red);
  background:
    linear-gradient(135deg, transparent 44%, #fff 44% 54%, transparent 54%) center / 8px 8px,
    var(--red);
}

body[data-page="journals"] .filter-footer {
  padding-top: 9px;
}
