:root {
  --bg: #f6f7f4;
  --panel: #ffffff;
  --panel-strong: #f1f4ee;
  --ink: #1d2420;
  --muted: #66706a;
  --line: #dfe5dd;
  --accent: #176b5b;
  --accent-strong: #0f4d42;
  --gold: #c28b2c;
  --sky: #316c9f;
  --danger: #a34d44;
  --shadow: 0 18px 48px rgba(25, 36, 31, 0.12);
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  overflow-x: hidden;
  min-height: 100%;
  background: var(--bg);
}

body {
  overflow-x: hidden;
  min-height: 100%;
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 18px 18px, rgba(24, 30, 27, 0.055) 1px, transparent 1.4px),
    radial-gradient(circle at 4px 28px, rgba(159, 141, 102, 0.07) 0.8px, transparent 1.2px),
    linear-gradient(90deg, rgba(23, 107, 91, 0.035) 1px, transparent 1px),
    linear-gradient(rgba(23, 107, 91, 0.03) 1px, transparent 1px),
    var(--bg);
  background-size: 22px 22px, 31px 31px, 32px 32px, 32px 32px;
  font-family: Arial, "Hiragino Sans", "Yu Gothic", Meiryo, sans-serif;
}

a {
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
}

.site-shell {
  display: grid;
  gap: 18px;
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
  min-height: 100vh;
  padding: 18px;
}

.site-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-width: 0;
  max-width: 100%;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow);
}

.brand-block {
  display: flex;
  align-items: center;
  min-width: 0;
  gap: 14px;
  text-decoration: none;
}

.brand-mark {
  width: 54px;
  height: 54px;
  flex: 0 0 auto;
  border-radius: 14px;
  object-fit: cover;
}

.custom-logo-wrap,
.custom-logo-wrap .custom-logo-link {
  display: block;
}

.custom-logo-wrap img {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  object-fit: cover;
}

.kicker {
  display: block;
  margin: 0 0 4px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.site-title {
  display: block;
  color: var(--ink);
  font-size: clamp(1.55rem, 2.4vw, 2.6rem);
  font-weight: 900;
  line-height: 1.03;
  letter-spacing: 0;
}

.topbar-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  max-width: 100%;
  min-width: min(620px, 54vw);
}

.schedule-toggle,
.menu-toggle,
.button-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 12px;
  border: 1px solid #cddbd4;
  border-radius: 8px;
  color: var(--accent-strong);
  background: #edf7f3;
  font-weight: 800;
  text-decoration: none;
}

.menu-toggle {
  display: none;
  cursor: pointer;
}

.schedule-toggle {
  cursor: pointer;
  white-space: nowrap;
}

.schedule-toggle[aria-expanded="true"] {
  border-color: rgba(23, 107, 91, 0.36);
  background: #dff2ec;
}

.schedule-popover {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: start end;
  padding: 112px 28px 28px;
  background: rgba(22, 31, 27, 0.18);
}

.schedule-card {
  width: min(760px, calc(100vw - 36px));
  padding: 18px;
  border: 1px solid rgba(23, 107, 91, 0.2);
  border-radius: 12px;
  background:
    radial-gradient(circle at 12px 12px, rgba(23, 107, 91, 0.04) 1px, transparent 1.4px),
    #fffdf8;
  background-size: 22px 22px;
  box-shadow: 0 24px 70px rgba(24, 36, 31, 0.24);
}

.schedule-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.schedule-head h2 {
  margin: 0;
  font-size: 1.1rem;
}

.schedule-close {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--accent-strong);
  background: #fff;
  cursor: pointer;
  font-size: 1.2rem;
  font-weight: 900;
}

.schedule-week {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 8px;
}

.schedule-day {
  display: grid;
  align-content: start;
  gap: 5px;
  min-height: 132px;
  padding: 10px;
  border: 1px solid #dbe7df;
  border-radius: 10px;
  background: #ffffff;
}

.schedule-day span {
  display: inline-flex;
  width: 30px;
  height: 30px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #fff;
  background: var(--accent);
  font-weight: 900;
}

.schedule-day strong {
  color: #12312d;
  font-size: 0.82rem;
  line-height: 1.3;
}

.schedule-day small {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 900;
}

.schedule-day.highlight {
  border-color: rgba(23, 107, 91, 0.34);
  background: #edf8f3;
}

.schedule-day.muted {
  background: #f8f8f5;
}

.primary-nav {
  padding: 0 4px;
}

.primary-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.primary-menu a {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 800;
  text-decoration: none;
}

.wp-news-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.42fr) minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  min-width: 0;
  max-width: 100%;
}

.wp-news-layout.single-column {
  grid-template-columns: 1fr;
}

.news-sidebar {
  display: grid;
  gap: 14px;
  position: sticky;
  top: 18px;
}

.nav-panel,
.content-panel,
.post-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 12px 32px rgba(25, 36, 31, 0.08);
}

.nav-panel {
  padding: 14px;
}

.content-panel {
  min-width: 0;
  max-width: 100%;
  padding: 22px;
}

.section-heading,
.archive-heading,
.post-meta-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.accordion-summary {
  cursor: pointer;
  list-style: none;
}

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

.accordion-summary::after {
  display: inline-flex;
  width: 26px;
  height: 26px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: var(--accent-strong);
  background: #eaf6f1;
  content: "＋";
  font-weight: 900;
}

.sidebar-accordion[open] .accordion-summary::after {
  content: "－";
}

.accordion-summary span {
  font-size: 1rem;
  font-weight: 900;
}

.section-heading h2,
.archive-heading h1,
.reader-empty h1,
.reader-empty h2 {
  margin: 0;
}

.section-heading h2 {
  font-size: 1rem;
}

.section-heading p,
.archive-heading p,
.reader-empty p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.5;
}

.archive-heading {
  margin-bottom: 18px;
}

.archive-heading h1 {
  font-size: clamp(1.7rem, 3vw, 2.8rem);
  line-height: 1.12;
}

.count-badge {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 0 9px;
  border-radius: 999px;
  color: var(--accent-strong);
  background: #eaf6f1;
  font-size: 0.78rem;
  font-weight: 900;
  white-space: nowrap;
}

.category-tabs {
  display: grid;
  gap: 8px;
  margin-top: 12px;
}

.date-filter {
  display: grid;
  gap: 8px;
  margin-top: 12px;
}

.topbar-date-filter {
  display: grid;
  gap: 6px;
  min-width: 0;
  padding: 8px;
  border: 1px solid rgba(23, 107, 91, 0.16);
  border-radius: 8px;
  background: rgba(246, 251, 248, 0.92);
}

.date-filter-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.date-filter-row.compact {
  grid-template-columns: repeat(3, minmax(58px, 1fr));
  gap: 6px;
}

.date-filter-button,
.date-filter-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: #fff;
  font-size: 0.84rem;
  font-weight: 900;
  text-decoration: none;
}

.topbar-date-filter .date-filter-button,
.topbar-date-filter .date-filter-form button,
.topbar-date-filter .date-filter-form input {
  min-height: 34px;
  font-size: 0.78rem;
}

.date-filter-button.active,
.date-filter-button:hover,
.date-filter-form button:hover {
  border-color: rgba(23, 107, 91, 0.36);
  color: var(--accent-strong);
  background: #eaf6f1;
}

.date-filter-form {
  display: grid;
  grid-column: span 1;
  grid-template-columns: minmax(0, 1fr);
  gap: 6px;
}

.date-filter-form.compact {
  grid-template-columns: minmax(112px, 1fr) auto;
  gap: 6px;
}

.date-filter-form input {
  min-width: 0;
  min-height: 38px;
  padding: 0 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: #fff;
  font: inherit;
  font-size: 0.8rem;
  font-weight: 800;
}

.category-tab {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  min-height: 42px;
  align-items: center;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 800;
  text-decoration: none;
}

.category-tab span {
  color: var(--muted);
  font-size: 0.76rem;
}

.category-tab.active,
.category-tab:hover {
  border-color: rgba(23, 107, 91, 0.36);
  background: #eaf6f1;
  color: var(--accent-strong);
}

.reader-list {
  display: grid;
  gap: 8px;
  max-height: 440px;
  overflow-y: auto;
  margin-top: 12px;
  padding-right: 4px;
}

.reader-list-item {
  display: grid;
  gap: 4px;
  padding: 11px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  text-decoration: none;
}

.reader-list-item.active,
.reader-list-item:hover {
  border-color: rgba(23, 107, 91, 0.4);
  background: #eaf6f1;
}

.reader-list-item span {
  font-size: 0.86rem;
  font-weight: 900;
  line-height: 1.35;
}

.reader-list-item small {
  color: var(--muted);
  font-size: 0.72rem;
}

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

.post-card {
  overflow: hidden;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.post-card:hover {
  border-color: rgba(23, 107, 91, 0.28);
  box-shadow: 0 18px 38px rgba(25, 36, 31, 0.13);
  transform: translateY(-2px);
}

.post-card-link {
  display: flex;
  flex-direction: column;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

.post-card-image {
  display: grid;
  place-items: center;
  aspect-ratio: 16 / 9;
  height: auto;
  margin: 0;
  padding: 10px;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(180deg, #fffdfa 0%, #f4fbf8 100%);
}

.post-card-image img {
  display: block;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  border-radius: 6px;
  object-fit: contain;
  object-position: center center;
}

.post-card-image-placeholder {
  display: grid;
  place-items: center;
  color: var(--accent-strong);
  font-size: 1.4rem;
  font-weight: 900;
}

.post-card-body {
  display: flex;
  flex: 0 0 auto;
  flex-direction: column;
  gap: 6px;
  min-height: 0;
  padding: 10px 12px 12px;
  border-top: 1px solid rgba(23, 107, 91, 0.08);
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(234, 246, 241, 0.92), rgba(255, 249, 229, 0.76)),
    #fbfcfa;
}

.post-card h2 {
  margin: 0;
  color: #12312d;
  display: -webkit-box;
  overflow: hidden;
  min-height: 2.6em;
  font-size: clamp(0.88rem, 1vw, 1rem);
  line-height: 1.3;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.post-card p {
  margin: 0;
  color: var(--muted);
  display: -webkit-box;
  overflow: hidden;
  font-size: clamp(0.72rem, 0.82vw, 0.8rem);
  line-height: 1.45;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.post-meta-row {
  order: 0;
  margin-top: 0;
  padding-top: 0;
  align-items: center;
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 800;
}

.npp-badge {
  display: inline-flex;
  min-height: 24px;
  align-items: center;
  padding: 0 8px;
  border: 1px solid rgba(23, 107, 91, 0.18);
  border-radius: 999px;
  color: var(--accent-strong);
  background: #eaf6f1;
  text-decoration: none;
}

.reader-article {
  max-width: 960px;
  margin: 0 auto;
}

.reader-article h1 {
  position: relative;
  margin: 14px 0 0;
  padding-bottom: 14px;
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1.15;
}

.reader-article h1::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: min(320px, 70%);
  height: 5px;
  border-radius: 999px;
  background: linear-gradient(90deg, #81bda8, #f0c86e 48%, #d9b5e8);
  content: "";
}

.reader-summary {
  margin: 16px 0 0;
  padding: 16px 16px 16px 20px;
  border-left: 5px solid var(--accent);
  border-radius: 8px;
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(234, 246, 241, 0.96), rgba(255, 248, 225, 0.88)),
    #eef7f2;
  box-shadow: inset 0 0 0 1px rgba(51, 104, 84, 0.07);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.75;
}

.reader-diagram-wrap {
  margin: 20px 0 0;
}

.reader-diagram {
  display: block;
  width: 100%;
  padding: 10px;
  border: 1px solid #d9e6de;
  border-radius: 8px;
  background: #fffdfa;
  box-shadow: 0 16px 34px rgba(42, 67, 58, 0.13);
  object-fit: contain;
}

.reader-section-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.reader-section {
  position: relative;
  overflow: hidden;
  padding: 15px;
  border: 1px solid var(--line);
  border-top: 5px solid var(--accent);
  border-radius: 8px;
  background: #fbfcfa;
}

.reader-section::before {
  position: absolute;
  top: 11px;
  right: 12px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.55);
  content: "";
}

.reader-section:nth-child(4n + 1) {
  border-top-color: #81bda8;
  background: #f3faf6;
}

.reader-section:nth-child(4n + 2) {
  border-top-color: #efc668;
  background: #fff9e8;
}

.reader-section:nth-child(4n + 3) {
  border-top-color: #bda9e7;
  background: #f8f5ff;
}

.reader-section:nth-child(4n + 4) {
  border-top-color: #e9a9bc;
  background: #fff4f7;
}

.reader-section h2 {
  position: relative;
  z-index: 1;
  margin: 0 0 8px;
  color: var(--accent-strong);
  font-size: 0.98rem;
}

.reader-section p {
  position: relative;
  z-index: 1;
  margin: 0 0 0.8em;
  font-size: 0.95rem;
  line-height: 1.75;
}

.reader-section p:last-child {
  margin-bottom: 0;
}

.reader-section strong,
.entry-content strong {
  color: var(--accent-strong);
  background: linear-gradient(transparent 62%, rgba(239, 198, 104, 0.38) 0);
  font-weight: 900;
}

.entry-content {
  margin-top: 20px;
  font-size: 1rem;
  line-height: 1.8;
}

.entry-content h2,
.entry-content h3,
.entry-content h4 {
  margin-top: 1.7em;
  color: var(--accent-strong);
}

.reader-sources {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.reader-sources summary {
  cursor: pointer;
  color: var(--accent-strong);
  font-weight: 900;
}

.article-sources {
  display: grid;
  gap: 8px;
  margin: 12px 0 0;
  padding-left: 20px;
}

.article-sources a {
  color: var(--sky);
  overflow-wrap: anywhere;
}

.article-pager {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  max-width: 960px;
  margin: 22px auto 0;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  font-size: 0.9rem;
  font-weight: 900;
}

.article-pager a {
  color: var(--accent-strong);
  text-decoration: none;
}

.article-pager span:last-child {
  text-align: right;
}

.pagination-wrap {
  margin-top: 20px;
}

.pagination .nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.page-numbers {
  display: inline-flex;
  min-width: 36px;
  min-height: 36px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  font-weight: 900;
  text-decoration: none;
}

.page-numbers.current {
  border-color: var(--accent);
  color: #fff;
  background: var(--accent);
}

.reader-empty {
  display: grid;
  align-content: center;
  min-height: 360px;
  color: var(--muted);
  text-align: center;
}

.site-footer {
  padding: 14px 4px;
  color: var(--muted);
  font-size: 0.82rem;
  text-align: center;
}

.empty-state {
  padding: 12px;
  border: 1px dashed var(--line);
  border-radius: 8px;
  color: var(--muted);
  background: #fbfcfa;
  font-size: 0.86rem;
}

@media (max-width: 1080px) {
  .site-topbar {
    position: sticky;
    top: 8px;
    z-index: 30;
    flex-wrap: wrap;
  }

  .topbar-actions {
    width: 100%;
    min-width: 0;
  }

  .topbar-date-filter {
    width: 100%;
  }

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

  .news-sidebar {
    position: static;
    z-index: 18;
    order: 1;
    gap: 8px;
  }

  .content-panel {
    order: 2;
  }

  .category-tabs {
    display: flex;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .category-tab {
    min-width: 160px;
  }

  .reader-list {
    display: flex;
    max-height: none;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 4px;
  }

  .reader-list-item {
    min-width: 220px;
  }
}

@media (max-width: 760px) {
  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  .site-shell {
    gap: 10px;
    width: 100%;
    max-width: 100%;
    padding: 8px;
  }

  .site-topbar {
    width: 100%;
    max-width: 100%;
    top: 6px;
    align-items: flex-start;
    gap: 8px;
    padding: 9px;
  }

  .brand-mark,
  .custom-logo-wrap img {
    width: 40px;
    height: 40px;
  }

  .site-title {
    font-size: 1.18rem;
    line-height: 1.12;
  }

  .brand-block {
    width: 100%;
    max-width: 100%;
    gap: 9px;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .topbar-actions {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 6px;
  }

  .schedule-toggle {
    flex: 1 1 auto;
    min-height: 34px;
    font-size: 0.78rem;
  }

  .topbar-date-filter {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    order: 2;
    padding: 5px;
  }

  .date-filter-row.compact {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 4px;
  }

  .date-filter-form.compact {
    grid-template-columns: 1fr;
    gap: 4px;
    min-width: 0;
  }

  .topbar-date-filter .date-filter-button,
  .topbar-date-filter .date-filter-form button,
  .topbar-date-filter .date-filter-form input {
    width: 100%;
    min-width: 0;
    min-height: 30px;
    padding: 0 6px;
    font-size: 0.72rem;
  }

  .primary-nav {
    display: none;
  }

  .primary-nav.is-open {
    display: block;
  }

  .primary-menu {
    display: grid;
  }

  .content-panel,
  .nav-panel {
    width: 100%;
    max-width: 100%;
    padding: 10px;
  }

  .news-sidebar {
    width: 100%;
    max-width: 100%;
    gap: 8px;
  }

  .category-tabs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    overflow: visible;
    padding-bottom: 0;
  }

  .category-tab {
    min-width: 0;
    padding: 0 9px;
    font-size: 0.8rem;
  }

  .reader-list {
    display: grid;
    max-height: 260px;
    overflow-x: hidden;
    overflow-y: auto;
    padding-right: 2px;
    padding-bottom: 0;
  }

  .reader-list-item {
    min-width: 0;
    width: 100%;
  }

  .section-heading h2 {
    font-size: 0.92rem;
  }

  .accordion-summary span {
    font-size: 0.92rem;
  }

  .sidebar-accordion:not([open]) {
    padding-bottom: 10px;
  }

  .nav-panel {
    background: rgba(255, 255, 255, 0.96);
  }

  .post-grid,
  .reader-section-grid {
    width: 100%;
    max-width: 100%;
    grid-template-columns: 1fr;
  }

  .archive-heading {
    align-items: center;
  }

  .post-card-image {
    height: auto;
    padding: 8px;
  }

  .post-card-body {
    gap: 5px;
    min-height: 0;
    padding: 9px 10px 11px;
  }

  .post-card h2 {
    font-size: 0.92rem;
  }

  .post-card p {
    font-size: 0.74rem;
    line-height: 1.42;
    -webkit-line-clamp: 2;
  }

  .post-meta-row {
    font-size: 0.7rem;
  }

  .npp-badge {
    min-height: 21px;
    padding: 0 7px;
  }

  .schedule-popover {
    align-items: start;
    padding: 96px 8px 18px;
  }

  .schedule-card {
    width: 100%;
    max-width: 100%;
    padding: 14px;
  }

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

  .schedule-day {
    min-height: 116px;
  }

  .reader-article h1,
  .archive-heading h1 {
    font-size: 1.55rem;
  }

  .reader-summary {
    padding: 12px;
    font-size: 0.94rem;
  }

  .article-pager {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .article-pager span:last-child {
    text-align: left;
  }
}
