/* site-footer.css */
.site-footer {
  background:
    linear-gradient(135deg, rgba(7, 9, 13, 0.98), rgba(18, 23, 29, 0.98)),
    #07090d;
  border-top: 1px solid rgba(245, 239, 224, 0.14);
  color: #f5efe0;
  margin-top: clamp(34px, 6vw, 76px);
  overflow: hidden;
  padding: clamp(30px, 5vw, 58px) clamp(18px, 4vw, 54px);
  width: 100%;
}

.site-footer__inner {
  display: grid;
  gap: clamp(24px, 4vw, 48px);
  grid-template-columns: minmax(0, 1.1fr) minmax(220px, 0.65fr) minmax(240px, 0.8fr);
  margin: 0 auto;
  max-width: 1180px;
}

.site-footer__brand {
  display: grid;
  gap: 14px;
}

.site-footer__brand span,
.site-footer__block span {
  color: #2a9a89;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.site-footer__brand strong {
  font-size: clamp(26px, 4vw, 42px);
  line-height: 1.02;
  text-transform: uppercase;
}

.site-footer__brand p,
.site-footer__profile p {
  color: #c9cfcb;
  font-size: 14px;
  line-height: 1.8;
  margin: 0;
}

.site-footer__block {
  display: grid;
  gap: 12px;
  align-content: start;
}

.site-footer__block h2 {
  color: #f5efe0;
  font-size: 18px;
  line-height: 1.2;
  margin: 0;
}

.site-footer__links {
  display: grid;
  gap: 9px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer__links a {
  color: #d9dfdc;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

.site-footer__links a:hover {
  color: #caa34a;
}

.site-footer__profile {
  background: rgba(245, 239, 224, 0.06);
  border: 1px solid rgba(245, 239, 224, 0.14);
  border-radius: 8px;
  display: grid;
  gap: 10px;
  padding: 18px;
}

.site-footer__profile h2 {
  font-size: 18px;
  margin: 0;
}

.site-footer__profile strong {
  color: #f5efe0;
}

.site-footer__bottom {
  color: #9ea6a3;
  display: flex;
  flex-wrap: wrap;
  font-size: 12px;
  gap: 10px;
  justify-content: space-between;
  margin: clamp(24px, 4vw, 42px) auto 0;
  max-width: 1180px;
  position: relative;
  padding-top: 16px;
}

.site-footer__bottom::before {
  border-top: 1px solid rgba(245, 239, 224, 0.12);
  content: "";
  left: 50%;
  position: absolute;
  top: 0;
  transform: translateX(-50%);
  width: 100vw;
}

.site-scroll-top {
  align-items: center;
  background: rgba(15, 19, 24, 0.86);
  border: 1px solid rgba(245, 239, 224, 0.2);
  border-radius: 999px;
  bottom: clamp(18px, 3vw, 28px);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.32);
  color: #f5efe0;
  cursor: pointer;
  display: inline-flex;
  font: inherit;
  font-size: 22px;
  font-weight: 900;
  height: 46px;
  justify-content: center;
  line-height: 1;
  opacity: 0;
  pointer-events: none;
  position: fixed;
  right: clamp(16px, 3vw, 30px);
  transform: translateY(10px) scale(0.96);
  transition: opacity 0.2s ease, transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
  width: 46px;
  z-index: 80;
}

.site-scroll-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.site-scroll-top:hover,
.site-scroll-top:focus-visible {
  background: rgba(202, 163, 74, 0.92);
  border-color: rgba(245, 239, 224, 0.34);
  color: #11161b;
  outline: none;
}

.site-scroll-top span {
  transform: translateY(-1px);
}

@media (max-width: 920px) {
  .site-footer__inner {
    grid-template-columns: 1fr;
  }

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

/* site-menu.css */
.site-menu-open {
  overflow: hidden;
}

html,
body {
  max-width: 100%;
  overflow-x: clip;
}

.site-menu-toggle {
  align-items: center;
  background: rgba(245, 239, 224, 0.08);
  border: 1px solid rgba(245, 239, 224, 0.22);
  border-radius: 8px;
  color: #f7f2e8;
  cursor: pointer;
  display: inline-flex;
  font: inherit;
  font-size: 13px;
  font-weight: 900;
  gap: 8px;
  min-height: 40px;
  padding: 8px 12px;
  text-transform: uppercase;
}

.site-header .top-nav,
.home-header .home-nav,
.category-header nav {
  margin-left: auto;
}

.site-header .brand,
.home-header .brand,
.category-header .brand {
  flex-shrink: 0;
}

.site-menu-toggle:hover,
.site-menu-toggle:focus-visible {
  background: rgba(245, 239, 224, 0.14);
  border-color: rgba(213, 173, 69, 0.72);
  outline: none;
}

.site-menu-toggle--floating {
  position: fixed;
  right: 18px;
  top: 18px;
  z-index: 80;
}

.site-menu-toggle__icon {
  display: grid;
  gap: 4px;
  width: 18px;
}

.site-menu-toggle__icon span {
  background: currentColor;
  border-radius: 999px;
  display: block;
  height: 2px;
}

.site-menu-backdrop {
  background: rgba(4, 7, 9, 0.66);
  inset: 0;
  opacity: 0;
  pointer-events: none;
  position: fixed;
  transition: opacity 0.18s ease;
  z-index: 90;
}

.site-menu-panel {
  align-content: start;
  background: #10151b;
  border-left: 1px solid rgba(245, 239, 224, 0.16);
  box-sizing: border-box;
  box-shadow: -24px 0 70px rgba(0, 0, 0, 0.42);
  color: #f7f2e8;
  display: grid;
  gap: 18px;
  height: 100dvh;
  max-width: min(430px, 100vw);
  opacity: 0;
  overflow-y: auto;
  padding: 22px;
  pointer-events: none;
  position: fixed;
  right: 0;
  top: 0;
  transform: translateX(18px);
  transition: opacity 0.18s ease, transform 0.18s ease;
  width: 100%;
  z-index: 100;
}

.site-menu-open .site-menu-backdrop,
.site-menu-open .site-menu-panel {
  opacity: 1;
  pointer-events: auto;
}

.site-menu-open .site-menu-panel {
  transform: translateX(0);
}

.site-menu-panel__head {
  align-items: start;
  display: flex;
  gap: 16px;
  justify-content: space-between;
  min-width: 0;
}

.site-menu-panel__brand span,
.site-menu-section-label {
  color: #2d8c7c;
  display: block;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.site-menu-panel__brand strong {
  display: block;
  font-size: 20px;
  line-height: 1.12;
  margin-top: 4px;
}

.site-menu-close {
  align-items: center;
  background: rgba(245, 239, 224, 0.08);
  border: 1px solid rgba(245, 239, 224, 0.16);
  border-radius: 999px;
  color: #f7f2e8;
  cursor: pointer;
  display: inline-flex;
  font-size: 24px;
  height: 42px;
  justify-content: center;
  line-height: 1;
  width: 42px;
}

.site-menu-list {
  display: grid;
  gap: 8px;
  min-width: 0;
}

.site-menu-link {
  align-items: center;
  border: 1px solid rgba(245, 239, 224, 0.13);
  border-radius: 8px;
  color: inherit;
  display: flex;
  justify-content: space-between;
  min-height: 46px;
  padding: 10px 14px;
  text-decoration: none;
}

.site-menu-link:hover,
.site-menu-link:focus-visible {
  background: rgba(245, 239, 224, 0.08);
  border-color: rgba(213, 173, 69, 0.58);
  outline: none;
}

.site-menu-link--primary {
  background: rgba(213, 173, 69, 0.16);
  border-color: rgba(213, 173, 69, 0.58);
  color: #f7f2e8;
  font-weight: 900;
}

.site-menu-link small {
  color: #aeb8b5;
  font-size: 12px;
  font-weight: 800;
}

.site-menu-link--primary small {
  color: #d8c98c;
}

.site-menu-sublist {
  display: grid;
  gap: 6px;
  margin: 0;
  padding: 0;
}

.site-menu-sublist .site-menu-link {
  min-height: 42px;
}

.site-menu-share {
  display: grid;
  gap: 12px;
  padding-top: 4px;
}

.site-menu-share__buttons {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  padding-left: 0;
}

.site-menu-share__button {
  align-items: center;
  background: transparent;
  border: 0;
  color: inherit;
  cursor: pointer;
  display: inline-grid;
  font: inherit;
  font-size: 11px;
  font-weight: 850;
  gap: 6px;
  justify-items: center;
  min-width: 48px;
  padding: 0;
  text-decoration: none;
}

.site-menu-share__icon {
  align-items: center;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  display: inline-grid;
  height: 42px;
  place-items: center;
  position: relative;
  width: 42px;
}

.site-menu-share__button:hover .site-menu-share__icon {
  border-color: rgba(213, 173, 69, 0.72);
}

.site-menu-share__button--copy .site-menu-share__icon::before,
.site-menu-share__button--copy .site-menu-share__icon::after {
  border: 2px solid currentColor;
  border-radius: 3px;
  content: "";
  height: 17px;
  position: absolute;
  width: 13px;
}

.site-menu-share__button--copy .site-menu-share__icon::before {
  opacity: 0.62;
  transform: translate(-4px, 4px);
}

.site-menu-share__button--copy .site-menu-share__icon::after {
  background: rgba(255, 255, 255, 0.08);
  transform: translate(3px, -3px);
}

.site-menu-share__button--x .site-menu-share__icon {
  background: #07090d;
  color: #fff;
  font-size: 19px;
  font-weight: 900;
}

.site-menu-share__button--line .site-menu-share__icon {
  background: #35c95a;
  color: #06250f;
}

.site-menu-share__button--line .site-menu-share__icon::before {
  background: #fff;
  border-radius: 999px;
  content: "";
  height: 21px;
  position: absolute;
  width: 26px;
}

.site-menu-share__button--line .site-menu-share__icon::after {
  border-left: 6px solid #fff;
  border-top: 6px solid transparent;
  bottom: 10px;
  content: "";
  height: 0;
  position: absolute;
  right: 11px;
  transform: rotate(14deg);
  width: 0;
}

.site-menu-share__button.is-copied {
  color: #d5ad45;
}

@media (max-width: 720px) {
  :root {
    --mobile-fixed-header-offset: max(128px, calc(118px + env(safe-area-inset-top)));
  }

  body .site-header,
  body .home-header,
  body .category-header {
    left: 0;
    min-height: var(--mobile-fixed-header-offset);
    position: fixed;
    right: 0;
    top: 0;
    width: 100%;
    z-index: 85;
  }

  .site-shell,
  .home-shell,
  body > .site-header + main,
  body > .home-header + main,
  body > .category-header + main {
    padding-top: var(--mobile-fixed-header-offset);
  }

  body .site-header .top-nav,
  body .home-header .home-nav,
  body .category-header nav {
    max-width: 100%;
    overflow-x: auto;
    padding-right: 48px;
    scrollbar-width: none;
    width: 100%;
  }

  body .site-header .top-nav::-webkit-scrollbar,
  body .home-header .home-nav::-webkit-scrollbar,
  body .category-header nav::-webkit-scrollbar {
    display: none;
  }

  .site-menu-toggle {
    position: fixed;
    right: max(16px, env(safe-area-inset-right));
    top: max(14px, env(safe-area-inset-top));
    z-index: 80;
    min-height: 38px;
    padding-inline: 10px;
  }

  .site-menu-toggle__text {
    display: none;
  }

  .site-menu-panel {
    border-left: 0;
    gap: 12px;
    max-width: 100vw;
    padding: 20px 18px 24px;
    width: 100vw;
  }

  .site-menu-panel__head {
    margin-bottom: 4px;
  }

  .site-menu-panel__brand strong {
    font-size: 18px;
    max-width: calc(100vw - 96px);
  }

  .site-menu-list {
    gap: 8px;
  }

  .site-menu-sublist {
    margin: 0;
    padding: 0;
  }

  .site-menu-section-label,
  .site-menu-link,
  .site-menu-share {
    width: 100%;
  }
}

/* site-youtube-modal.css */
.youtube-modal-open {
  overflow: hidden;
}

.link-button.youtube-modal-trigger {
  cursor: pointer;
  font-family: inherit;
}

.link-button--youtube {
  background: #c01828;
  border-color: #c01828;
  color: #fff !important;
}

.link-button--youtube *,
.listen-link--youtube,
.shop-link--youtube,
.youtube-modal-trigger,
.youtube-modal-trigger *,
.listen-link--youtube::before,
.shop-link--youtube::before {
  color: #fff !important;
}

.youtube-modal {
  display: none;
  inset: 0;
  position: fixed;
  z-index: 1000;
}

.youtube-modal[aria-hidden="false"] {
  align-items: center;
  display: flex;
  justify-content: center;
  padding: 22px;
}

.youtube-modal__backdrop {
  background: rgba(7, 10, 14, 0.74);
  inset: 0;
  position: absolute;
}

.youtube-modal__dialog {
  background: #11161d;
  border: 1px solid rgba(255, 250, 238, 0.16);
  border-radius: 8px;
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.42);
  color: #fffaf0;
  max-width: 920px;
  outline: none;
  overflow: hidden;
  position: relative;
  width: min(100%, 920px);
  z-index: 1;
}

.youtube-modal__header {
  align-items: center;
  display: flex;
  gap: 14px;
  justify-content: space-between;
  padding: 14px 16px;
}

.youtube-modal__header h2 {
  color: #fffaf0;
  font-size: 17px;
  line-height: 1.4;
  margin: 0;
}

.youtube-modal__close {
  align-items: center;
  background: rgba(255, 250, 238, 0.1);
  border: 1px solid rgba(255, 250, 238, 0.2);
  border-radius: 999px;
  color: #fffaf0;
  cursor: pointer;
  display: inline-flex;
  flex: 0 0 auto;
  font-size: 22px;
  height: 38px;
  justify-content: center;
  line-height: 1;
  width: 38px;
}

.youtube-modal__close:hover,
.youtube-modal__close:focus-visible {
  border-color: var(--gold);
  color: var(--gold);
}

.youtube-modal__frame-wrap {
  background: #05070a;
}

.youtube-modal__frame-wrap iframe {
  aspect-ratio: 16 / 9;
  border: 0;
  display: block;
  width: 100%;
}

/* site-spotify-modal.css */
.spotify-modal-open {
  overflow: hidden;
}

.link-button--spotify {
  background: #1db954;
  border-color: #1db954;
  color: #fff !important;
}

.link-button--spotify *,
.listen-link--spotify,
.shop-link--spotify,
.spotify-modal-trigger,
.spotify-modal-trigger *,
.listen-link--spotify::before,
.shop-link--spotify::before {
  color: #fff !important;
}

.spotify-modal {
  display: none;
  inset: 0;
  position: fixed;
  z-index: 1000;
}

.spotify-modal[aria-hidden="false"] {
  align-items: center;
  display: flex;
  justify-content: center;
  padding: 22px;
}

.spotify-modal__backdrop {
  background: rgba(7, 10, 14, 0.74);
  inset: 0;
  position: absolute;
}

.spotify-modal__dialog {
  background: #11161d;
  border: 1px solid rgba(255, 250, 238, 0.16);
  border-radius: 8px;
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.42);
  color: #fffaf0;
  max-width: 640px;
  outline: none;
  overflow: hidden;
  position: relative;
  width: min(100%, 640px);
  z-index: 1;
}

.spotify-modal__header {
  align-items: center;
  display: flex;
  gap: 14px;
  justify-content: space-between;
  padding: 14px 16px;
}

.spotify-modal__header h2 {
  color: #fffaf0;
  font-size: 17px;
  line-height: 1.4;
  margin: 0;
}

.spotify-modal__close {
  align-items: center;
  background: rgba(255, 250, 238, 0.1);
  border: 1px solid rgba(255, 250, 238, 0.2);
  border-radius: 999px;
  color: #fffaf0;
  cursor: pointer;
  display: inline-flex;
  flex: 0 0 auto;
  font-size: 22px;
  height: 38px;
  justify-content: center;
  line-height: 1;
  width: 38px;
}

.spotify-modal__close:hover,
.spotify-modal__close:focus-visible {
  border-color: #1db954;
  color: #1db954;
}

.spotify-modal__frame-wrap {
  background: #05070a;
}

.spotify-modal__frame-wrap iframe {
  border: 0;
  display: block;
  width: 100%;
}

.spotify-modal__fallback {
  display: grid;
  gap: 14px;
  padding: 18px;
}

.spotify-modal__fallback[hidden],
.spotify-modal__frame-wrap[hidden] {
  display: none;
}

.spotify-modal__fallback p {
  color: rgba(255, 250, 238, 0.82);
  line-height: 1.7;
  margin: 0;
}

.spotify-modal__fallback-link {
  align-items: center;
  background: #1db954;
  border-radius: 8px;
  color: #fff;
  display: inline-flex;
  font-weight: 900;
  justify-content: center;
  padding: 12px 16px;
  text-decoration: none;
}

/* category-preview.css */
:root {
  color-scheme: dark;
  --night: #07090d;
  --panel: #171c24;
  --panel-strong: #202630;
  --cream: #f5efe0;
  --muted: #aab1b2;
  --line: rgba(245, 239, 224, 0.15);
  --gold: #caa34a;
  --green: #0b7b6f;
  --rose: #b35264;
  --shadow: 0 22px 70px rgba(0, 0, 0, 0.42);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans JP", sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  background:
    radial-gradient(circle at 88% 12%, rgba(179, 82, 100, 0.18), transparent 30%),
    radial-gradient(circle at 12% 20%, rgba(11, 123, 111, 0.18), transparent 28%),
    linear-gradient(180deg, var(--night), #0f131a 50%, #090b10);
  color: var(--cream);
  margin: 0;
  overflow-x: hidden;
}

a {
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
}

.category-header {
  align-items: center;
  background: rgba(7, 9, 13, 0.9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
  display: flex;
  gap: 20px;
  justify-content: space-between;
  padding: 16px clamp(18px, 4vw, 54px);
  position: sticky;
  top: 0;
  z-index: 20;
}

.brand {
  display: grid;
  gap: 3px;
  text-decoration: none;
}

.brand span,
.eyebrow {
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.brand strong {
  color: var(--cream);
  font-size: 16px;
}

.category-header nav {
  display: flex;
  gap: 4px;
}

.category-header nav a,
.facet-button,
.button {
  border: 1px solid var(--line);
  border-radius: 6px;
  color: #d7dcda;
  font-size: 14px;
  font-weight: 850;
  min-height: 38px;
  padding: 8px 12px;
  text-decoration: none;
}

.category-header nav a:hover,
.facet-button:hover,
.button:hover {
  background: rgba(245, 239, 224, 0.08);
  color: var(--cream);
}

.loading-panel {
  min-height: 70vh;
  padding: clamp(28px, 5vw, 76px) clamp(18px, 4vw, 54px);
}

.loading-shadow {
  animation: pulse 1.4s ease-in-out infinite;
  background: linear-gradient(90deg, rgba(245, 239, 224, 0.05), rgba(245, 239, 224, 0.12), rgba(245, 239, 224, 0.05));
  border-radius: 8px;
  box-shadow: var(--shadow);
  height: 320px;
}

@keyframes pulse {
  0%, 100% { opacity: 0.55; }
  50% { opacity: 1; }
}

.category-page {
  display: grid;
  gap: 30px;
  padding-bottom: 64px;
}

.category-hero {
  display: grid;
  gap: 18px;
  padding: clamp(36px, 6vw, 84px) clamp(18px, 4vw, 54px) 10px;
}

h1,
h2,
h3,
p {
  margin: 0;
}

h1 {
  font-size: clamp(42px, 7vw, 92px);
  letter-spacing: 0;
  line-height: 0.96;
  text-transform: uppercase;
}

.category-lead {
  color: #d7dcda;
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.78;
  max-width: 780px;
}

.layout {
  align-items: start;
  display: grid;
  gap: 20px;
  grid-template-columns: minmax(220px, 280px) minmax(0, 1fr);
  padding: 0 clamp(18px, 4vw, 54px);
}

.category-rail {
  background: rgba(23, 28, 36, 0.78);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 8px;
  padding: 12px;
  position: sticky;
  top: 88px;
}

.category-tab {
  background: transparent;
  border: 1px solid transparent;
  border-radius: 6px;
  color: var(--cream);
  cursor: pointer;
  display: grid;
  gap: 5px;
  padding: 12px;
  text-align: left;
}

.category-tab:hover,
.category-tab.active {
  background: var(--panel-strong);
  border-color: var(--line);
}

.category-tab strong {
  font-size: 15px;
}

.category-tab span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
}

.category-main {
  display: grid;
  gap: 14px;
  min-width: 0;
}

.toolbar {
  align-items: flex-start;
  background: rgba(23, 28, 36, 0.72);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 12px;
  padding: 12px;
}

.result-summary {
  display: grid;
  gap: 3px;
}

.result-summary strong {
  font-size: 18px;
}

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

.facet-group {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.facet-button {
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #d7dcda;
  cursor: pointer;
  font-size: 13px;
  font-weight: 850;
  min-height: 34px;
  padding: 7px 11px;
}

.facet-button:hover,
.facet-button.active {
  background: var(--gold);
  border-color: var(--gold);
  color: #111;
}

.facet-button span {
  font-size: 11px;
  opacity: 0.72;
}

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

.article-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.22);
  color: inherit;
  cursor: pointer;
  display: grid;
  gap: 12px;
  min-height: 100%;
  min-width: 0;
  padding: 14px;
  text-decoration: none;
  transition: border-color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}

.article-card-link:hover,
.article-card-link:focus-visible {
  border-color: rgba(202, 163, 74, 0.65);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.3);
  transform: translateY(-2px);
}

.article-card-link:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}

.image-wrap {
  aspect-ratio: 16 / 9;
  background: #12151c;
  border-radius: 7px;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.image-wrap::before {
  background: linear-gradient(90deg, rgba(245, 239, 224, 0.04), rgba(245, 239, 224, 0.13), rgba(245, 239, 224, 0.04));
  content: "";
  inset: 0;
  position: absolute;
}

.image-wrap img {
  height: 100%;
  inset: 0;
  object-fit: cover;
  object-position: center;
  position: absolute;
  width: 100%;
}

.article-type {
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.article-card h3 {
  font-size: 21px;
  line-height: 1.25;
}

.article-card p {
  color: var(--muted);
  line-height: 1.62;
}

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

.tag {
  background: rgba(245, 239, 224, 0.08);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #d7dcda;
  font-size: 12px;
  font-weight: 800;
  padding: 4px 8px;
}

.button {
  align-items: center;
  display: inline-flex;
  justify-content: center;
  justify-self: start;
}

@media (max-width: 1120px) {
  .layout,
  .article-grid {
    grid-template-columns: 1fr;
  }

  .category-rail {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    position: static;
  }
}

@media (max-width: 700px) {
  .category-header {
    align-items: flex-start;
    flex-direction: column;
    padding-right: 76px;
  }

  .category-header nav {
    overflow-x: auto;
    width: 100%;
  }

  .category-page,
  .layout,
  .category-hero,
  .category-main,
  .article-grid {
    max-width: 100%;
  }

  .layout,
  .category-hero {
    padding-left: 18px;
    padding-right: 18px;
  }

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

  .toolbar {
    align-items: flex-start;
    flex-direction: column;
  }
}
