:root {
  --bg: #05070b;
  --surface: #0c1118;
  --surface-2: #111821;
  --line: rgba(171, 239, 255, 0.18);
  --line-strong: rgba(171, 239, 255, 0.34);
  --text: #eef7fb;
  --muted: #9db2bf;
  --cyan: #00d8ff;
  --magenta: #ff2fd6;
  --lime: #b8ff3d;
  --amber: #ffc857;
  --red: #ff5c7a;
  --violet: #8a6cff;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.42);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(rgba(0, 216, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 47, 214, 0.035) 1px, transparent 1px),
    var(--bg);
  background-size: 44px 44px;
  color: var(--text);
  font-family:
    "Inter",
    "Noto Sans JP",
    "Hiragino Kaku Gothic ProN",
    "Yu Gothic",
    sans-serif;
  line-height: 1.7;
  letter-spacing: 0;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(180deg, rgba(5, 7, 11, 0.06), rgba(5, 7, 11, 0.86) 76%),
    repeating-linear-gradient(180deg, rgba(255, 255, 255, 0.03) 0, rgba(255, 255, 255, 0.03) 1px, transparent 1px, transparent 5px);
}

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

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

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

.page-shell {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  align-items: center;
  min-height: 74px;
  padding: 12px 24px;
  border-bottom: 1px solid var(--line);
  background: rgba(5, 7, 11, 0.86);
  backdrop-filter: blur(18px);
}

.site-logo {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  min-width: 0;
  font-weight: 800;
  line-height: 1;
}

.logo-image {
  width: 46px;
  height: 46px;
  border-radius: 8px;
  object-fit: cover;
  filter: drop-shadow(0 0 12px rgba(0, 216, 255, 0.42)) drop-shadow(0 0 14px rgba(255, 47, 214, 0.24));
}

.site-logo strong {
  display: block;
  color: var(--text);
  font-size: 1.08rem;
}

.header-menu-toggle {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 0;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
}

.header-menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 3px 0;
  border-radius: 999px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.header-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-width: 0;
}

.main-nav {
  display: flex;
  gap: 6px;
  justify-content: center;
  min-width: 0;
}

.main-nav > li {
  list-style: none;
}

.main-nav a,
.main-nav > li > a,
.header-action {
  padding: 10px 12px;
  border-radius: 8px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 800;
  white-space: nowrap;
}

.main-nav a:hover,
.main-nav > li > a:hover,
.header-action:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.07);
}

.header-action {
  border: 0;
  color: var(--cyan);
}

.hero-slider {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 20% 0%, rgba(0, 216, 255, 0.16), transparent 32%),
    radial-gradient(circle at 84% 10%, rgba(255, 47, 214, 0.15), transparent 34%),
    #05070b;
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.38;
  pointer-events: none;
  background:
    linear-gradient(rgba(0, 216, 255, 0.14) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 47, 214, 0.1) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, #000 0%, transparent 84%);
}

.slider-shell {
  position: relative;
  z-index: 1;
  padding-block: 34px;
}

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

h1 {
  margin-bottom: 0;
  font-size: 1.125rem;
  line-height: 1.35;
}

.slider-viewport {
  overflow: hidden;
  padding-block: 2px;
}

.slider-track {
  display: flex;
  gap: 18px;
  transition: transform 420ms ease;
  will-change: transform;
}

.slide-card {
  position: relative;
  flex: 0 0 min(820px, calc(100% - 280px));
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 8px;
  background: #071018;
  box-shadow: var(--shadow);
  isolation: isolate;
}

.slide-card::after {
  position: absolute;
  inset: 0;
  z-index: 2;
  content: "";
  pointer-events: none;
  background: rgba(0, 0, 0, 0.75);
  transition: opacity 260ms ease;
}

.slide-card.is-active::after {
  opacity: 0;
}

.slide-card img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slide-shade {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(5, 7, 11, 0.92) 0%, rgba(5, 7, 11, 0.64) 44%, rgba(5, 7, 11, 0.18) 76%),
    linear-gradient(180deg, rgba(5, 7, 11, 0.06), rgba(5, 7, 11, 0.82));
}

.slide-copy {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: end;
  width: 100%;
  height: 100%;
  padding: 0;
}

.slide-copy-inner {
  width: 100%;
}

.slide-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.slide-card.is-active .slide-shade {
  opacity: 0;
}

.slide-card.is-active .slide-copy-inner {
  padding: 28px 44px 24px;
  background:
    linear-gradient(135deg, rgba(5, 7, 11, 0.92) 0%, rgba(5, 7, 11, 0.72) 62%, rgba(5, 7, 11, 0.5) 100%);
  backdrop-filter: blur(4px);
}

.slide-nav {
  position: absolute;
  inset: 50% 10px auto;
  z-index: 3;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 180ms ease;
}

.slide-card.is-active .slide-nav {
  opacity: 1;
  pointer-events: auto;
}

.slide-nav-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 24px;
  min-height: 24px;
  padding: 0;
  border: 0;
  background: transparent;
  color: white;
  font-size: 22px;
  line-height: 1;
}

span.category,
a.category {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 12px;
  padding: 5px 8px;
  border-radius: 6px;
  color: #071014;
  font-size: 0.7rem;
  font-weight: 900;
}

span.category-instrument,
a.category-instrument {
  background: var(--lime);
}

span.category-pedal,
a.category-pedal {
  background: var(--magenta);
  color: white;
}

span.category-plugin,
a.category-plugin {
  background: var(--cyan);
}

span.category-sale,
a.category-sale {
  background: var(--amber);
}

.slide-copy h2 {
  margin-bottom: 16px;
  font-size: 30px;
  line-height: 1.16;
  text-wrap: balance;
}

.slide-copy p {
  max-width: 620px;
  margin-bottom: 24px;
  color: #d9ebf1;
  font-size: 1.02rem;
}

.slide-copy footer {
  display: flex;
  gap: 10px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
}

.slider-dots {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 16px;
}

.slider-dots button {
  width: 30px;
  height: 6px;
  border: 0;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.24);
}

.slider-dots button.is-active {
  background: var(--cyan);
  box-shadow: 0 0 16px rgba(0, 216, 255, 0.48);
}

.category-section {
  padding-block: 34px 42px;
  border-bottom: 1px solid var(--line);
}

.content-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 34px;
  padding-block: 56px 70px;
}

.new-section {
  min-width: 0;
}

.section-heading {
  margin-bottom: 16px;
  text-align: left;
}

.section-heading h2 {
  margin-bottom: 0;
  font-size: 1.125rem;
  line-height: 1.35;
}

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

.article-card,
.channel-card,
.side-section {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(12, 17, 24, 0.86);
}

.article-card {
  overflow: hidden;
}

.article-card:hover,
.channel-card:hover {
  border-color: rgba(0, 216, 255, 0.58);
  box-shadow: 0 0 32px rgba(0, 216, 255, 0.16);
}

.article-media {
  display: block;
  aspect-ratio: 16 / 9;
  background: #0a1018;
}

.article-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-body {
  padding: 14px;
}

.article-body h3 {
  display: -webkit-box;
  margin-bottom: 8px;
  overflow: hidden;
  font-size: 0.94rem;
  line-height: 1.42;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.article-body p {
  display: -webkit-box;
  margin-bottom: 10px;
  overflow: hidden;
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.55;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.article-body time {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
}

.sidebar {
  min-width: 0;
}

.side-section {
  position: sticky;
  top: 94px;
  padding: 18px;
}

.ranking-list {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.ranking-list a {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 10px;
  align-items: start;
}

.ranking-list span {
  color: var(--magenta);
  font-size: 1rem;
  font-weight: 900;
  line-height: 1.35;
}

.ranking-list strong {
  font-size: 0.88rem;
  line-height: 1.5;
}

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

.side-article-card .article-body {
  padding: 12px;
}

.side-article-card .article-body h3 {
  font-size: 0.88rem;
}

.side-article-card .article-body p {
  font-size: 0.78rem;
}

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

.channel-card {
  position: relative;
  display: flex;
  min-height: 72px;
  padding: 14px 18px;
  overflow: hidden;
  align-items: center;
  border-color: rgba(255, 255, 255, 0.2);
  justify-content: center;
  text-align: center;
}

.channel-card::before {
  content: none;
}

.channel-instrument {
  background: linear-gradient(135deg, rgba(184, 255, 61, 0.9), rgba(0, 216, 255, 0.48));
}

.channel-pedal {
  background: linear-gradient(135deg, rgba(255, 47, 214, 0.86), rgba(255, 92, 122, 0.46));
}

.channel-plugin {
  background: linear-gradient(135deg, rgba(0, 216, 255, 0.86), rgba(138, 108, 255, 0.46));
}

.channel-sale {
  background: linear-gradient(135deg, rgba(255, 200, 87, 0.9), rgba(184, 255, 61, 0.42));
}

.channel-card strong {
  display: block;
  color: #ffffff;
  font-size: 1.08rem;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.42);
}

.channel-instrument {
  box-shadow: inset 0 0 24px rgba(184, 255, 61, 0.2);
}

.channel-instrument strong {
  color: #ffffff;
}

.channel-pedal {
  box-shadow: inset 0 0 24px rgba(255, 47, 214, 0.22);
}

.channel-pedal strong {
  color: #ffffff;
}

.channel-plugin {
  box-shadow: inset 0 0 24px rgba(0, 216, 255, 0.2);
}

.channel-plugin strong {
  color: #ffffff;
}

.channel-sale {
  box-shadow: inset 0 0 24px rgba(255, 200, 87, 0.22);
}

.channel-sale strong {
  color: #ffffff;
}

.sub-page {
  min-height: 70vh;
}

.page-hero,
.post-hero {
  padding-block: 54px 34px;
}

.post-hero {
  padding-bottom: 0;
}

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

.breadcrumb {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
}

.breadcrumb a {
  color: var(--cyan);
}

.breadcrumb span::before {
  content: "/";
  margin-right: 8px;
  color: rgba(255, 255, 255, 0.26);
}

.page-hero h1,
.error-panel h1 {
  margin-bottom: 14px;
  font-size: 2.35rem;
  line-height: 1.22;
}

.page-hero p {
  max-width: 720px;
  margin-bottom: 0;
  color: #d7e8ef;
}

.archive-section {
  min-width: 0;
}

.filter-tabs,
.post-tags,
.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.filter-tabs {
  margin-bottom: 18px;
}

.filter-tabs a,
.post-tags a,
.tag-cloud a,
.pagination a {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  color: #d9edf3;
  background: rgba(255, 255, 255, 0.045);
  font-size: 0.82rem;
  font-weight: 800;
}

.filter-tabs a,
.post-tags a,
.tag-cloud a {
  padding: 8px 10px;
}

.filter-tabs a.is-active,
.pagination a[aria-current="page"] {
  color: #041016;
  background: var(--cyan);
}

.archive-grid {
  margin-top: 0;
}

.pagination {
  display: flex;
  gap: 8px;
  margin-top: 24px;
}

.pagination a {
  display: grid;
  place-items: center;
  min-width: 40px;
  min-height: 40px;
  padding-inline: 12px;
}

.post-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.post-visual {
  position: relative;
  width: 100vw;
  height: 500px;
  margin: 26px calc(50% - 50vw) 0;
  overflow: hidden;
}

.post-visual::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background: linear-gradient(180deg, rgba(5, 7, 11, 0.08), rgba(5, 7, 11, 0.36));
}

.post-main-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.post-visual-copy {
  position: absolute;
  inset-inline: 0;
  bottom: -1px;
  z-index: 1;
  width: 100%;
  padding: 24px max(28px, calc((100vw - 1180px) / 2 + 20px));
  background: rgba(0, 0, 0, 0.75);
  box-shadow: var(--shadow);
}

.post-visual-copy .post-meta {
  margin-bottom: 12px;
}

.post-visual-copy .category {
  margin-bottom: 0;
}

.post-visual-copy h1 {
  margin-bottom: 0;
  font-size: 1.825rem;
  line-height: 1.2;
}

.post-layout {
  display: grid;
  grid-template-columns: minmax(0, 760px) 320px;
  gap: 44px;
  align-items: start;
  padding-block: 42px 70px;
}

.post-content {
  min-width: 0;
  color: #dcecf2;
}

.post-content h2,
.static-content h2 {
  margin: 38px 0 14px;
  font-size: 1.35rem;
  line-height: 1.4;
}

.post-content p,
.static-content p {
  margin-bottom: 20px;
  color: #c8d9e0;
}

.post-content figure {
  margin: 30px 0;
}

.post-content figure img {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.post-content figcaption {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.82rem;
}

.toc,
.review-box,
.search-panel,
.error-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(12, 17, 24, 0.88);
}

.toc,
.review-box {
  padding: 20px;
}

.toc h2,
.review-box h2 {
  margin-top: 0;
  font-size: 1.05rem;
}

.toc a {
  display: block;
  padding-block: 7px;
  color: var(--cyan);
  font-weight: 800;
}

.review-box dl {
  display: grid;
  gap: 12px;
  margin: 0;
}

.review-box div {
  display: grid;
  grid-template-columns: 132px 1fr;
  gap: 14px;
}

.review-box dt {
  color: var(--lime);
  font-weight: 900;
}

.review-box dd {
  margin: 0;
  color: #d7e8ef;
}

.related-section,
.static-content {
  padding-block: 0 70px;
}

.static-content {
  width: min(820px, calc(100% - 40px));
}

.static-channels {
  margin: 18px 0 34px;
}

.search-panel {
  max-width: 620px;
  margin-top: 22px;
  padding: 18px;
}

.search-panel label {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 900;
}

.search-panel div {
  display: grid;
  grid-template-columns: 1fr 96px;
  gap: 8px;
}

.search-panel input,
.search-panel button {
  min-height: 46px;
  border-radius: 8px;
}

.search-panel input {
  min-width: 0;
  border: 1px solid var(--line-strong);
  padding-inline: 12px;
  color: var(--text);
  background: #070b11;
}

.search-panel button {
  border: 0;
  color: #041016;
  background: var(--lime);
  font-weight: 900;
}

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

.list-card {
  display: grid;
  grid-template-columns: 230px 1fr;
  gap: 18px;
  align-items: center;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(12, 17, 24, 0.86);
}

.list-media {
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 8px;
}

.list-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.list-card h3 {
  margin-bottom: 8px;
  font-size: 1.02rem;
  line-height: 1.45;
}

.list-card p {
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 0.86rem;
}

.list-card time {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
}

.error-page {
  display: grid;
  align-items: center;
  min-height: calc(100vh - 74px);
  padding-block: 44px;
}

.error-panel {
  padding: 40px;
}

.error-code {
  margin-bottom: 6px;
  color: var(--magenta);
  font-size: 4rem;
  font-weight: 900;
  line-height: 1;
}

.site-footer {
  padding-block: 34px;
  color: var(--muted);
}

.footer-inner {
  display: flex;
  gap: 22px;
  align-items: center;
  justify-content: space-between;
}

.footer-inner p {
  margin-bottom: 0;
  font-size: 0.86rem;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .header-panel {
    gap: 16px;
  }

  .slide-copy h2 {
    font-size: 1.95rem;
  }

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

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

  .side-section {
    position: static;
  }

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

@media (max-width: 700px) {
  .page-shell {
    width: min(100% - 28px, 1180px);
  }

  .site-header {
    position: sticky;
    padding-inline: 14px;
  }

  .header-menu-toggle {
    display: inline-flex;
    grid-column: 2;
    grid-row: 1;
  }

  .site-header.is-menu-open .header-menu-toggle span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .site-header.is-menu-open .header-menu-toggle span:nth-child(2) {
    opacity: 0;
  }

  .site-header.is-menu-open .header-menu-toggle span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .header-panel {
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    padding: 16px 14px 18px;
    background:
      linear-gradient(180deg, rgba(9, 14, 20, 0.98), rgba(5, 7, 11, 0.98)),
      var(--bg);
    box-shadow: var(--shadow);
  }

  .site-header.is-menu-open .header-panel {
    display: flex;
  }

  .main-nav {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }

  .main-nav a,
  .main-nav > li > a,
  .header-action {
    display: block;
    width: 100%;
    padding: 12px 14px;
    background: rgba(255, 255, 255, 0.04);
  }

  .header-action {
    text-align: center;
  }

  .slider-shell {
    width: 100%;
    padding-block: 0;
  }

  .slider-viewport {
    padding-block: 0;
  }

  h1 {
    font-size: 1.125rem;
  }

  .slider-track {
    gap: 0;
  }

  .slide-card {
    flex-basis: 100%;
    aspect-ratio: 4 / 3;
    border-radius: 0;
    box-shadow: none;
  }

  .slide-card.is-active .slide-copy-inner {
    padding: 22px 18px 18px;
  }

  .slide-shade {
    background:
      linear-gradient(90deg, rgba(5, 7, 11, 0.9), rgba(5, 7, 11, 0.56)),
      linear-gradient(180deg, rgba(5, 7, 11, 0.16), rgba(5, 7, 11, 0.9));
  }

  .slide-copy {
    width: 100%;
    padding: 0;
  }

  .slide-copy-inner {
    width: 100%;
  }

  .slide-card.is-active .slide-copy-inner {
    padding: 14px 16px;
  }

  .slide-nav {
    inset-inline: 10px;
  }

  .slide-nav-button {
    font-size: 18px;
  }

  .slide-meta {
    gap: 10px;
    margin-bottom: 8px;
  }

  .slide-copy h2 {
    margin-bottom: 8px;
    font-size: calc(1.2rem - 2px);
    line-height: 1.32;
  }

  .slide-copy p {
    display: none;
  }

  .slide-copy footer {
    font-size: 0.72rem;
  }

  .slider-dots {
    justify-content: start;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .category-section {
    padding-block: 28px 34px;
  }

  .content-layout {
    padding-block: 44px 56px;
  }

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

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

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

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

  .channel-card {
    min-height: 72px;
    padding: 12px 14px;
  }

  .footer-inner {
    display: grid;
  }

  .page-hero h1,
  .error-panel h1 {
    font-size: 1.8rem;
  }

  .post-visual {
    height: 460px;
  }

  .post-visual-copy {
    padding: 18px;
  }

  .post-visual-copy h1 {
    font-size: 0.925rem;
  }

  .post-layout {
    padding-block: 30px 52px;
  }

  .review-box div,
  .list-card,
  .search-panel div {
    grid-template-columns: 1fr;
  }

  .error-panel {
    padding: 24px;
  }
}

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

.main-nav .current-menu-item > a,
.main-nav .current-menu-ancestor > a,
.main-nav .current_page_item > a {
  color: var(--text);
  background: rgba(255, 255, 255, 0.07);
}

.pagination .page-numbers {
  display: grid;
  place-items: center;
  min-width: 40px;
  min-height: 40px;
  padding-inline: 12px;
}

.pagination .current {
  color: #041016;
  background: var(--cyan);
}

.post-content > *:first-child,
.static-content > *:first-child {
  margin-top: 0;
}

.post-content ul,
.post-content ol,
.static-content ul,
.static-content ol {
  padding-left: 1.2rem;
  color: #c8d9e0;
}

.post-content blockquote,
.static-content blockquote {
  margin: 28px 0;
  padding: 18px 20px;
  border-left: 3px solid var(--cyan);
  background: rgba(255, 255, 255, 0.04);
}

.wp-block-image img,
.post-content iframe,
.post-content video {
  max-width: 100%;
  border-radius: 8px;
}

.wp-caption,
.gallery {
  max-width: 100%;
}
