:root {
  --bg: #fbfefd;
  --surface: #ffffff;
  --bg-soft: #E8F5EE;
  --bg-mint: #E8F5EE;
  --text: #172128;
  --muted: #5d6f78;
  --line: #d7e7e4;
  --primary: #2E7D6B;
  --primary-dark: #235F52;
  --brand-light: #7AC19A;
  --brand-heart: #FF8F8F;
  --blue: #2563eb;
  --coral: #f47272;
  --amber: #f5b84b;
  --shadow: 0 20px 60px rgba(7, 95, 88, 0.13);
  --shadow-soft: 0 10px 30px rgba(23, 33, 40, 0.08);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--text);
  background:
    linear-gradient(180deg, #eefbf8 0, rgba(238, 251, 248, 0) 520px),
    var(--bg);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.8;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.narrow {
  width: min(720px, calc(100% - 40px));
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -60px;
  z-index: 10;
  padding: 8px 12px;
  color: #fff;
  background: var(--primary);
  border-radius: 999px;
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 5;
  width: 100%;
  margin: 0;
  background: rgba(251, 254, 253, 0.92);
  border-bottom: 1px solid rgba(215, 231, 228, 0.9);
  box-shadow: 0 8px 24px rgba(23, 33, 40, 0.04);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-symbol { display: block; flex: none; width: 40px; height: 40px; object-fit: contain; }
.brand-wordmark { display: block; line-height: 1; }
.brand strong { display: block; color: var(--text); font-size: 18px; font-weight: 800; }

.site-nav {
  display: flex;
  align-items: center;
  gap: 2px;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
}

.site-nav a {
  padding: 9px 12px;
  color: #334155;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
}

.site-nav a:hover,
.site-nav a.is-active {
  color: var(--primary-dark);
  background: rgba(223, 245, 240, 0.8);
  box-shadow: none;
}

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 12px;
  width: 44px;
  height: 44px;
  padding: 0;
  color: var(--text);
  font-weight: 700;
  place-items: center;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--text);
  border-radius: 999px;
}

.nav-toggle span + span {
  margin-top: 4px;
}

.hero,
.page-hero {
  background: transparent;
}

.hero {
  padding: 44px 0 56px;
}

.hero-grid {
  max-width: 900px;
}

.hero-copy {
  padding: 4px 0 14px;
}

.hero h1,
.page-hero h1,
.article-header h1 {
  margin: 0;
  color: #102a2a;
  font-size: clamp(32px, 4.6vw, 56px);
  line-height: 1.14;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 760px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.2;
}

.hero-copy > p:not(.eyebrow),
.page-hero p,
.article-header > p {
  color: #475569;
  max-width: 680px;
  font-size: 18px;
}

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

.pillar-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 640px;
  gap: 8px;
  margin-top: 22px;
}

.pillar-strip a {
  display: flex;
  aspect-ratio: 1 / 1;
  min-height: 0;
  flex-direction: column;
  justify-content: stretch;
  min-width: 0;
  padding: 0;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(215, 231, 228, 0.9);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 22px rgba(23, 33, 40, 0.05);
}

.pillar-art {
  display: grid;
  flex: 1 1 52%;
  width: 100%;
  place-items: center;
  color: var(--primary-dark);
  background:
    radial-gradient(circle at 22% 28%, rgba(244, 114, 114, 0.14), transparent 30%),
    linear-gradient(135deg, #e2f7f2, #ffffff);
}

.pillar-art svg {
  width: 38%;
  height: 38%;
  fill: none;
  stroke: currentColor;
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.pillar-copy {
  display: block;
  flex: 0 0 48%;
  padding: 9px 10px 10px;
  background: #fff;
}

.visual-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  border-radius: 14px;
  font-size: 14px;
  font-weight: 900;
  line-height: 1;
}

.visual-mark svg,
.article-thumb svg,
.feature-visual svg {
  width: 62%;
  height: 62%;
  fill: none;
  stroke: currentColor;
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.pillar-strip strong {
  display: block;
  font-size: 12px;
  line-height: 1.28;
}

.pillar-strip small {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  line-height: 1.25;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 10px 20px;
  font-weight: 800;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  color: #fff;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  box-shadow: 0 16px 34px rgba(15, 139, 127, 0.28);
}

.button.secondary {
  color: var(--primary-dark);
  background: #fff;
  border: 1px solid var(--line);
}

.hero-panel {
  position: relative;
  overflow: hidden;
  padding: 28px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(239, 250, 247, 0.92)),
    #fff;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.hero-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(135deg, rgba(15, 139, 127, 0.14), transparent 38%),
    linear-gradient(315deg, rgba(244, 114, 114, 0.1), transparent 34%);
}

.hero-panel dl {
  position: relative;
  display: grid;
  gap: 16px;
  margin: 0;
}

.hero-panel div {
  padding: 16px;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(215, 231, 228, 0.72);
  border-radius: 18px;
}

.hero-panel dt {
  color: var(--primary-dark);
  font-weight: 800;
}

.hero-panel dd {
  margin: 2px 0 0;
  color: var(--muted);
}

.section {
  padding: 72px 0;
}

.muted {
  background: linear-gradient(180deg, rgba(241, 250, 248, 0.86), rgba(255, 255, 255, 0.72));
}

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

.section-heading h2,
.about-band h2 {
  margin: 0;
  font-size: clamp(28px, 3.2vw, 42px);
  line-height: 1.18;
}

.category-grid,
.article-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.visual-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.visual-grid.compact {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.visual-card {
  position: relative;
  overflow: hidden;
  display: flex;
  aspect-ratio: 1 / 1;
  min-height: 0;
  flex-direction: column;
  gap: 10px;
  padding: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(246, 252, 250, 0.95)),
    #fff;
  border: 1px solid rgba(215, 231, 228, 0.9);
  border-radius: 28px;
  box-shadow: 0 10px 28px rgba(23, 33, 40, 0.06);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.visual-card::before {
  content: "";
  position: absolute;
  right: -44px;
  top: -44px;
  width: 128px;
  height: 128px;
  background: rgba(15, 139, 127, 0.1);
  border-radius: 999px;
}

.visual-card:hover {
  border-color: #a7d9d1;
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.visual-card h3 {
  position: relative;
  margin: 0;
  font-size: 20px;
  line-height: 1.34;
}

.visual-card p {
  display: none;
}

.visual-card .eyebrow,
.visual-card .visual-mark,
.visual-card .topic-pills {
  position: relative;
}

.visual-card.is-compact {
  aspect-ratio: 1 / 1;
  min-height: 0;
  padding: 18px;
  border-radius: 22px;
}

.visual-card.is-compact p {
  display: none;
}

.visual-card.is-compact .topic-pills span:nth-child(n + 3) {
  display: none;
}

.topic-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: auto;
}

.topic-pills span {
  padding: 5px 9px;
  color: var(--primary-dark);
  background: rgba(223, 245, 240, 0.92);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  line-height: 1.3;
}

.topic-pills.large {
  margin-top: 20px;
}

.topic-pills.large span {
  padding: 7px 12px;
  background: #fff;
  border: 1px solid var(--line);
  font-size: 13px;
}

.category-card,
.article-card a {
  position: relative;
  overflow: hidden;
  display: block;
  height: 100%;
  padding: 24px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(215, 231, 228, 0.82);
  border-radius: 22px;
  box-shadow: 0 10px 28px rgba(23, 33, 40, 0.05);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.article-thumb {
  display: grid;
  width: 100%;
  height: 112px;
  place-items: center;
  margin-bottom: 18px;
  color: var(--primary-dark);
  background:
    radial-gradient(circle at 20% 25%, rgba(244, 114, 114, 0.18), transparent 28%),
    radial-gradient(circle at 82% 18%, rgba(37, 99, 235, 0.16), transparent 26%),
    linear-gradient(135deg, #e2f7f2, #ffffff);
  border-radius: 18px;
  font-size: 28px;
  font-weight: 900;
}

.category-card::after,
.article-card a::after {
  content: "→";
  position: absolute;
  right: 20px;
  top: 18px;
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  color: var(--primary-dark);
  background: var(--bg-mint);
  border-radius: 999px;
  font-weight: 900;
}

.category-card:hover,
.article-card a:hover {
  border-color: #a7d9d1;
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.category-card span {
  color: var(--primary);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.03em;
}

.category-card h3,
.article-card h3 {
  margin: 10px 42px 10px 0;
  font-size: 21px;
  line-height: 1.35;
}

.category-card p,
.article-card p {
  margin: 0;
  color: var(--muted);
}

.article-card time {
  display: inline-block;
  margin-top: 14px;
  color: var(--muted);
  font-size: 13px;
}

.magazine-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 22px;
  align-items: start;
}

.magazine-side {
  display: grid;
  gap: 16px;
}

.feature-card {
  position: sticky;
  top: 112px;
  overflow: hidden;
  display: block;
  min-height: 520px;
  padding: 30px;
  color: #fff;
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.28), transparent 28%),
    radial-gradient(circle at 88% 16%, rgba(244, 114, 114, 0.28), transparent 28%),
    linear-gradient(135deg, #075f58, #0f8b7f 54%, #2fb8a8);
  border-radius: 32px;
  box-shadow: var(--shadow);
}

.feature-card::after {
  content: "読む";
  position: absolute;
  right: 24px;
  bottom: 24px;
  padding: 9px 15px;
  color: var(--primary-dark);
  background: #fff;
  border-radius: 999px;
  font-weight: 900;
}

.feature-card .eyebrow,
.feature-card p {
  color: #d9fbf5;
}

.feature-card h3 {
  margin: 18px 0 14px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.1;
}

.feature-card .topic-pills span {
  color: #073f3b;
  background: rgba(255, 255, 255, 0.86);
}

.feature-visual {
  display: grid;
  width: 96px;
  height: 96px;
  place-items: center;
  color: var(--primary-dark);
  background: rgba(255, 255, 255, 0.9);
  border-radius: 30px;
  font-size: 28px;
  font-weight: 900;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.12);
}

.empty-feature {
  color: var(--text);
  background: #fff;
  border: 1px solid var(--line);
}

.empty-feature .eyebrow,
.empty-feature p {
  color: var(--muted);
}

.article-list {
  display: grid;
  gap: 14px;
}

.article-list .article-card a {
  display: grid;
  min-height: 0;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 16px;
  padding: 14px 0;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  box-shadow: none;
}

.article-list .article-card a::after {
  display: none;
}

.article-list .article-card a:hover {
  box-shadow: none;
  transform: none;
}

.article-list .article-thumb {
  grid-row: span 4;
  width: 92px;
  height: 92px;
  margin: 0;
  border-radius: 18px;
  font-size: 20px;
}

.article-list .article-card h3 {
  margin: 0;
  font-size: 18px;
  line-height: 1.45;
}

.article-list .article-card p {
  display: none;
}

.article-list .article-card time {
  margin-top: 0;
}

.about-band {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 32px;
  padding: 38px;
  background:
    linear-gradient(135deg, #0b5f59, #0f8b7f 62%, #2fb8a8);
  border-radius: 28px;
  color: #fff;
  box-shadow: var(--shadow);
}

.about-band p {
  margin: 0;
  color: #d9fbf5;
}

.about-band .eyebrow {
  color: #bff4ea;
}

.page-hero {
  padding: 42px 0 30px;
}

.category-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 330px);
  gap: 20px;
  align-items: center;
}

.category-title-block {
  display: grid;
  gap: 10px;
}

.category-title-block .eyebrow {
  margin: 0;
}

.category-identity {
  padding: 20px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(239, 250, 247, 0.92)),
    #fff;
  border: 1px solid rgba(215, 231, 228, 0.9);
  border-radius: 22px;
  box-shadow: var(--shadow-soft);
}

.category-identity .visual-mark.large {
  width: 72px;
  height: 72px;
  border-radius: 24px;
  font-size: 20px;
}

.category-identity strong {
  display: block;
  font-size: 18px;
}

.category-identity p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.compact-section {
  padding-top: 34px;
  padding-bottom: 42px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
  color: var(--muted);
  font-size: 13px;
}

.breadcrumb a {
  color: var(--primary-dark);
  font-weight: 700;
}

.article-page {
  padding: 56px 0 82px;
}

.article-header {
  padding-bottom: 26px;
  border-bottom: 0;
}

.article-header h1 {
  font-size: clamp(34px, 4.8vw, 54px);
  line-height: 1.18;
}

.article-header > p {
  margin-top: 18px;
  font-size: 19px;
  line-height: 1.85;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  color: var(--muted);
  font-size: 14px;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.tags span {
  padding: 5px 11px;
  color: var(--primary-dark);
  background: var(--bg-mint);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
}

.prose {
  margin-top: 24px;
  color: #24323a;
  font-size: 19px;
  line-height: 2;
}

.prose h2,
.prose h3,
.prose h4 {
  margin-top: 48px;
  margin-bottom: 14px;
  color: #102a2a;
  line-height: 1.45;
}

.prose h2 {
  padding-top: 20px;
  border-top: 1px solid var(--line);
  font-size: 28px;
}

.prose h3 {
  font-size: 23px;
}

.prose p,
.prose ul {
  margin: 22px 0;
}

.prose li + li {
  margin-top: 8px;
}

.prose a {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.empty {
  color: var(--muted);
}

.site-footer {
  padding: 42px 0;
  color: #d8f3ef;
  background: linear-gradient(135deg, #082f2c, #0b3b38);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 32px;
}

.footer-grid p {
  margin: 8px 0 0;
  color: #b7d9d4;
}

.footer-label {
  font-weight: 800;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}

.footer-links a {
  color: #fff;
  font-weight: 700;
}

@media (max-width: 860px) {
  .site-header {
    top: 0;
    width: 100%;
    border-radius: 0;
  }

  .header-inner {
    flex-wrap: wrap;
    padding: 12px 0;
  }

  .nav-toggle {
    display: grid;
  }

  .site-nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    padding-bottom: 8px;
    background: transparent;
    border: 0;
    border-radius: 0;
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    background: #f4faf8;
    border-radius: 12px;
  }

  .hero-grid,
  .category-hero-grid,
  .about-band,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .page-hero {
    padding: 28px 0 18px;
  }

  .category-title-block {
    grid-template-columns: 44px minmax(0, 1fr);
    column-gap: 12px;
    align-items: center;
  }

  .category-title-block .visual-mark.large {
    grid-row: span 2;
    width: 44px;
    height: 44px;
    border-radius: 14px;
  }

  .category-title-block h1 {
    font-size: 28px;
  }

  .category-title-block .topic-pills {
    grid-column: 1 / -1;
    margin-top: 6px;
  }

  .category-identity {
    padding: 16px;
    border-radius: 18px;
  }

  .pillar-strip {
    max-width: 520px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .pillar-strip a {
    padding: 0;
  }

  .category-grid,
  .article-grid {
    grid-template-columns: 1fr;
  }

  .visual-grid,
  .visual-grid.compact {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

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

  .feature-card {
    position: relative;
    top: auto;
    min-height: 300px;
    padding: 22px;
    border-radius: 24px;
  }

  .feature-card h3 {
    font-size: 28px;
    line-height: 1.22;
  }

  .feature-card p {
    font-size: 14px;
    line-height: 1.65;
  }

  .feature-visual {
    width: 72px;
    height: 72px;
    border-radius: 22px;
  }

  .feature-card::after {
    right: 18px;
    bottom: 18px;
    padding: 7px 12px;
    font-size: 13px;
  }

  .hero {
    padding: 24px 0 44px;
  }

  .section-heading {
    display: block;
    margin-bottom: 14px;
  }

  .section-heading h2 {
    font-size: 20px;
    line-height: 1.25;
  }

  .section-heading .eyebrow {
    margin-bottom: 4px;
    font-size: 10px;
  }

  .hero-panel {
    border-radius: 22px;
  }

  .visual-card {
    aspect-ratio: 1 / 1;
    min-height: 0;
    padding: 14px;
    border-radius: 18px;
    gap: 6px;
  }

  .visual-card p {
    display: none;
  }

  .visual-card h3 {
    font-size: 15px;
    line-height: 1.25;
  }

  .visual-card .eyebrow {
    font-size: 10px;
  }

  .visual-card .visual-mark {
    width: 42px;
    height: 42px;
    border-radius: 12px;
  }

  .topic-pills {
    gap: 5px;
  }

  .topic-pills span {
    padding: 4px 7px;
    font-size: 10px;
  }

  .visual-card .topic-pills span:nth-child(n + 3) {
    display: none;
  }

  .topic-pills.large span {
    padding: 5px 8px;
    font-size: 11px;
  }

  .category-identity p {
    font-size: 13px;
  }

  .compact-section {
    padding-top: 20px;
  }

  .visual-card .topic-pills span:nth-child(n + 3) {
    display: none;
  }
}

@media (max-width: 520px) {
  .container,
  .narrow {
    width: min(100% - 28px, 1120px);
  }

  .hero h1,
  .page-hero h1,
  .article-header h1 {
    font-size: 32px;
  }

  .hero h1 {
    font-size: 28px;
    line-height: 1.28;
  }

  .hero {
    padding-top: 18px;
  }

  .article-page {
    padding-top: 34px;
  }

  .article-header > p {
    font-size: 16px;
    line-height: 1.8;
  }

  .prose {
    font-size: 17px;
    line-height: 1.95;
  }

  .prose h2 {
    font-size: 24px;
  }

  .category-title-block h1 {
    font-size: 26px;
  }

  .category-identity {
    display: none;
  }

  .topic-pills.large span:nth-child(n + 4) {
    display: none;
  }

  .section {
    padding: 40px 0;
  }

  .section-heading h2 {
    font-size: 18px;
  }

  .pillar-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 340px;
  }

  .pillar-art svg {
    width: 34%;
    height: 34%;
  }

  .pillar-strip strong {
    font-size: 11px;
  }

  .pillar-strip small {
    font-size: 9px;
  }

  .category-card,
  .article-card a,
  .visual-card,
  .about-band {
    border-radius: 18px;
  }

  .feature-card {
    min-height: 240px;
    padding: 18px;
  }

  .feature-visual {
    width: 56px;
    height: 56px;
    border-radius: 18px;
  }

  .feature-card h3 {
    margin: 12px 0 8px;
    font-size: 22px;
  }

  .feature-card p {
    display: none;
  }

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

  .visual-card {
    aspect-ratio: 1 / 1;
    min-height: 0;
    padding: 12px;
  }

  .article-list .article-card a {
    grid-template-columns: 76px minmax(0, 1fr);
  }

  .article-list .article-thumb {
    width: 76px;
    height: 76px;
  }
}
