:root {
  --ink: #171412;
  --muted: #665e5b;
  --page-bg: #F4F1EB;
  --soft: #f3eee8;
  --brand: #8e2c46;
  --brand-strong: #6f2036;
  --accent: #0f8f84;
  --blue: #1f67b1;
  --surface: rgba(255, 255, 255, .78);
  --line: rgba(23, 20, 18, .1);
}

* {
  box-sizing: border-box;
}

html {
  background: var(--page-bg);
  scroll-behavior: smooth;
}

body {
  color: var(--ink);
  font-family: "Pretendard", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 400;
  margin: 0;
  overflow-x: hidden;
}

.language-switcher {
  display: flex;
  gap: .3rem;
  position: fixed;
  right: 2rem;
  top: 1.8rem;
  z-index: 5;
}

.language-switcher button {
  background: transparent;
  border: 1px solid transparent;
  color: var(--muted);
  cursor: pointer;
  font: 600 .78rem/1 "Pretendard", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  height: 2rem;
  min-width: 2.2rem;
  padding: 0 .45rem;
}

.language-switcher button:hover,
.language-switcher button:focus-visible {
  border-color: var(--line);
  color: var(--brand);
}

.language-switcher button[aria-pressed="true"] {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
}

.flex {
  display: flex;
  min-height: 100vh;
}

.content {
  margin: 6rem 10rem 5rem 12rem;
  width: 24rem;
}

.content-index {
  min-height: 40rem;
}

.help-shell {
  min-height: 100vh;
}

.content-help {
  min-height: 0;
  width: min(32rem, calc(100vw - 4rem));
}

.help-message {
  color: var(--ink);
  font-size: 1.45rem;
  font-weight: 500;
  line-height: 1.55;
  margin-top: 4rem;
}

.help-message a {
  color: var(--brand);
  font-weight: 800;
  text-decoration-thickness: .08em;
  text-underline-offset: .16em;
}

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

.brand-mark {
  border-radius: 1rem;
  height: 4.5rem;
  width: 4.5rem;
}

.brand-word {
  font-size: 2.35rem;
  font-weight: 500;
  line-height: 1;
}

.menu {
  font-size: 1.25rem;
  font-weight: 300;
  margin: 1.6rem 0 4rem;
}

.menu a {
  color: #666;
  display: inline-block;
  margin-right: 2rem;
  text-decoration: none;
}

.menu a:hover,
.menu a:focus-visible {
  color: var(--brand);
}

.menu a.active {
  color: var(--ink);
  font-weight: 700;
}

.block {
  margin: 2rem 0;
}

h2 {
  font-size: 1.3rem;
  font-weight: 700;
  margin: 2rem 0 .55rem;
}

p {
  line-height: 1.55;
  margin: 0;
}

.button {
  clear: both;
  color: #000;
  display: block;
  line-height: 1.3;
  margin: .75rem 0;
  min-height: 4rem;
  padding: .55rem .6rem .55rem 4.1rem;
  position: relative;
  text-decoration: none;
  transition: color .12s ease, background .12s ease, transform .12s ease;
}

.button i {
  font-size: 2rem;
  left: .55rem;
  padding: .5rem 1rem .5rem .5rem;
  position: absolute;
  top: .3rem;
  width: 2rem;
}

.button .p1,
.button .p2 {
  display: block;
}

.button .p1 {
  font-size: 1.5rem;
  font-weight: 500;
}

.button .p2 {
  font-size: .9rem;
  font-weight: 600;
}

.button:hover,
.button:focus-visible {
  background: var(--brand);
  color: #fff;
  transform: translateY(-1px);
}

.hero {
  align-items: center;
  border-left: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 1.6rem;
  justify-content: center;
  min-width: 0;
  padding: 4rem 10rem 4rem 5rem;
}

.hero-img {
  display: block;
  filter: drop-shadow(.5rem .5rem 1rem rgba(0, 0, 0, .26));
  height: auto;
  max-height: min(78vh, 54rem);
  max-width: 100%;
  width: min(52rem, 58vw);
}

.hero .button {
  margin: 0;
  width: min(28rem, 100%);
}

.home-page {
  background: #f8f7f3;
}

.home-shell {
  margin: 0 auto;
  max-width: 68rem;
  min-height: 100vh;
  padding: clamp(1.2rem, 4vw, 3rem);
}

.site-header {
  align-items: center;
  display: flex;
  gap: 2rem;
  justify-content: space-between;
  min-width: 0;
}

.home-header-actions {
  align-items: center;
  display: flex;
  gap: 1.25rem;
  justify-content: flex-end;
  min-width: 0;
}

.home-page .site-header .language-switcher {
  flex: 0 0 auto;
  position: static;
  right: auto;
  top: auto;
  z-index: auto;
}

.home-page .brand-mark {
  border-radius: 8px;
  height: 3rem;
  width: 3rem;
}

.home-page .brand-word {
  font-size: 1.55rem;
  font-weight: 750;
}

.home-menu {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  font-size: .98rem;
  gap: 1rem;
  margin: 0;
  min-width: 0;
}

.home-menu a {
  color: var(--muted);
  margin: 0;
}

.home-menu a:hover,
.home-menu a:focus-visible {
  color: var(--brand);
}

.home-intro {
  margin-top: clamp(5rem, 13vh, 9rem);
  max-width: 42rem;
}

.eyebrow {
  color: var(--brand);
  font-size: .82rem;
  font-weight: 850;
  letter-spacing: .08rem;
  margin: 0 0 .85rem;
  text-transform: uppercase;
}

.home-intro h1 {
  color: var(--ink);
  font-size: clamp(2.4rem, 6vw, 4.8rem);
  font-weight: 850;
  line-height: 1.02;
  margin: 0;
  max-width: 11ch;
  overflow-wrap: break-word;
}

.hero-lead {
  color: var(--muted);
  font-size: clamp(1rem, 1.6vw, 1.22rem);
  font-weight: 520;
  line-height: 1.65;
  margin-top: 1.3rem;
  max-width: 32rem;
  overflow-wrap: anywhere;
}

.home-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: .85rem;
  margin-top: 2rem;
}

.primary-action,
.secondary-action,
.product-link,
.product-status {
  align-items: center;
  display: inline-flex;
  min-height: 2.65rem;
  text-decoration: none;
}

.primary-action {
  background: var(--ink);
  border: 1px solid var(--ink);
  border-radius: 8px;
  color: #fff;
  font-weight: 800;
  gap: .45rem;
  padding: .65rem .95rem;
  transition: background .12s ease, border-color .12s ease, transform .12s ease;
}

.primary-action i {
  font-size: 1.15rem;
}

.primary-action:hover,
.primary-action:focus-visible {
  background: var(--brand);
  border-color: var(--brand);
  transform: translateY(-1px);
}

.secondary-action,
.product-link {
  color: var(--brand);
  font-weight: 800;
}

.minimal-products {
  border-top: 1px solid var(--line);
  margin-top: clamp(4rem, 12vh, 8rem);
  padding-top: 2rem;
}

.minimal-products h2 {
  font-size: .9rem;
  letter-spacing: .08rem;
  margin: 0 0 1rem;
  text-transform: uppercase;
}

.product-list {
  border-bottom: 1px solid var(--line);
  list-style: none;
  margin: 0;
  padding: 0;
}

.product-row {
  align-items: center;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 1rem;
  grid-template-columns: minmax(0, 1fr) auto;
  padding: 1.25rem 0;
}

.product-row strong {
  display: block;
  font-size: 1.12rem;
  margin-bottom: .25rem;
}

.product-row p {
  color: var(--muted);
  max-width: 34rem;
}

.product-status {
  color: var(--muted);
  font-weight: 750;
}

.products-page {
  background: #f8f7f3;
}

.product-detail-shell {
  margin: 0 auto;
  max-width: 76rem;
  min-height: 100vh;
  padding: clamp(1.2rem, 4vw, 3rem);
}

.product-detail-header {
  margin-bottom: clamp(4rem, 10vh, 7rem);
}

.product-detail-intro {
  max-width: 42rem;
}

.product-detail-intro h1 {
  font-size: clamp(2.25rem, 5vw, 4.25rem);
  font-weight: 850;
  line-height: 1.04;
  margin: 0;
}

.product-detail-intro p:not(.eyebrow) {
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.18rem);
  line-height: 1.7;
  margin-top: 1rem;
}

.product-detail-layout {
  align-items: start;
  border-top: 1px solid var(--line);
  display: grid;
  gap: clamp(2rem, 5vw, 4rem);
  grid-template-columns: minmax(12rem, 16rem) minmax(0, 1fr);
  margin-top: clamp(3rem, 8vw, 5.5rem);
  padding-top: 2rem;
}

.product-category-nav {
  position: sticky;
  top: 2rem;
}

.product-category-nav p {
  color: var(--muted);
  font-size: .82rem;
  font-weight: 850;
  letter-spacing: .08rem;
  margin-bottom: .9rem;
  text-transform: uppercase;
}

.product-category-nav button {
  background: transparent;
  border: 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
  cursor: pointer;
  display: block;
  font: 700 1rem/1.35 "Pretendard", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  padding: 1rem 0;
  text-align: left;
  width: 100%;
}

.product-category-nav button:last-child {
  border-bottom: 1px solid var(--line);
}

.product-category-nav button:hover,
.product-category-nav button:focus-visible,
.product-category-nav button.active {
  color: var(--brand);
}

.product-category-nav small {
  color: inherit;
  display: block;
  font-size: .82rem;
  font-weight: 650;
  margin-top: .2rem;
}

.product-detail-panels {
  min-width: 0;
}

.product-detail-panel[hidden] {
  display: none !important;
}

.release-heading {
  max-width: 45rem;
}

.release-label {
  color: var(--brand);
  font-size: .88rem;
  font-weight: 850;
  margin-bottom: .75rem;
}

.release-heading h2 {
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  line-height: 1.06;
  margin: 0 0 .9rem;
}

.release-heading p:not(.release-label) {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.75;
}

.release-gallery {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

.release-gallery.three-up {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.release-gallery.single {
  max-width: 42rem;
}

.release-gallery figure {
  border: 1px solid var(--line);
  margin: 0;
  min-width: 0;
}

.release-gallery img {
  aspect-ratio: 16 / 10;
  background: #e6e3dc;
  display: block;
  height: auto;
  object-fit: cover;
  width: 100%;
}

.release-gallery figcaption {
  color: var(--muted);
  font-size: .86rem;
  font-weight: 650;
  padding: .65rem .75rem;
}

.release-notes {
  border-top: 1px solid var(--line);
  margin-top: 2rem;
  max-width: 45rem;
  padding-top: 1.5rem;
}

.release-notes h3 {
  font-size: 1.2rem;
  margin: 0 0 .9rem;
}

.release-notes ul {
  color: var(--muted);
  line-height: 1.75;
  margin: 0 0 1.6rem;
  padding-left: 1.1rem;
}

.product-status.large {
  border: 1px solid var(--line);
  border-radius: 8px;
  min-height: 2.65rem;
  padding: .65rem .95rem;
}

.blog-page {
  background: var(--page-bg);
}

.blog-shell {
  display: grid;
  gap: 4rem;
  grid-template-columns: minmax(20rem, 28rem) minmax(20rem, 34rem);
  min-height: 100vh;
  padding: 6rem 9rem;
}

.blog-panel {
  align-self: center;
}

.blog-shell-post-list {
  display: block;
  padding: 6rem 4rem 4rem clamp(24rem, 29vw, 31rem);
}

.blog-shell-post-list .blog-intro {
  left: clamp(3.5rem, 6vw, 5rem);
  position: fixed;
  top: 6rem;
  width: clamp(17rem, 21vw, 22rem);
  z-index: 4;
}

.blog-shell-post-list .blog-feed {
  width: min(100%, 72rem);
}

.blog-menu {
  margin-bottom: 0;
}

.blog-search {
  margin-top: 2rem;
}

.blog-search label,
.category-filter h2,
.post-toc h2 {
  color: var(--muted);
  display: block;
  font-size: .8rem;
  font-weight: 750;
  letter-spacing: .06rem;
  margin: 0 0 .7rem;
  text-transform: uppercase;
}

.blog-search-field {
  align-items: center;
  border-bottom: 1px solid rgba(23, 20, 18, .22);
  display: flex;
  gap: .55rem;
  min-height: 2.35rem;
}

.blog-search-field i {
  color: var(--brand);
  font-size: 1.15rem;
}

.blog-search-field input {
  background: transparent;
  border: 0;
  color: var(--ink);
  flex: 1;
  font: 500 .95rem/1.4 "Pretendard", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  min-width: 0;
  outline: 0;
  padding: .3rem 0;
}

.blog-search-field input::placeholder {
  color: rgba(102, 94, 91, .7);
}

.category-filter {
  display: grid;
  gap: .35rem;
  margin-top: 1.8rem;
}

.category-filter button,
.category-filter a,
.post-toc a {
  background: transparent;
  border: 0;
  color: var(--muted);
  cursor: pointer;
  display: block;
  font: 650 .95rem/1.35 "Pretendard", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  padding: .25rem 0;
  text-align: left;
  text-decoration: none;
}

.category-filter button:hover,
.category-filter button:focus-visible,
.category-filter a:hover,
.category-filter a:focus-visible,
.post-toc a:hover,
.post-toc a:focus-visible {
  color: var(--brand);
}

.category-filter button.active,
.category-filter a.active {
  color: var(--brand);
  font-weight: 800;
}

h1 {
  font-size: 2rem;
  font-weight: 650;
  line-height: 1.18;
  margin: 0 0 1.2rem;
}

.blog-feed {
  align-self: center;
  display: grid;
  gap: 1.25rem;
}

.post-list-item {
  align-items: stretch;
  background: rgba(255, 255, 255, .34);
  border: 1px solid var(--line);
  display: grid;
  gap: 1.55rem;
  grid-template-columns: 15rem minmax(0, 1fr);
  min-height: 10.5rem;
  overflow: hidden;
  padding: 1rem;
  position: relative;
}

.post-list-item[hidden],
.post-empty[hidden] {
  display: none !important;
}

.post-thumb-link {
  display: block;
  min-width: 0;
}

.post-thumb {
  aspect-ratio: 4 / 3;
  display: block;
  height: 100%;
  object-fit: cover;
  width: 15rem;
}

.post-list-body {
  align-self: start;
  min-width: 0;
  padding-top: 2.15rem;
}

.post-list-body h2 {
  font-size: 1.42rem;
  line-height: 1.25;
  margin: 0 0 .55rem;
}

.post-list-body h2 a {
  color: var(--ink);
  text-decoration: none;
}

.post-list-body p:not(.post-meta) {
  color: var(--muted);
  font-size: 1.02rem;
}

.post-list-body h2 a:hover,
.post-list-body h2 a:focus-visible {
  color: var(--brand);
}

.post-meta {
  align-items: center;
  color: var(--muted);
  display: flex;
  flex-wrap: wrap;
  font-size: .82rem;
  font-weight: 600;
  gap: .5rem;
  margin-bottom: .65rem;
}

.post-meta img {
  height: 1.15rem;
  width: 1.15rem;
}

.post-card-topline {
  align-items: center;
  color: var(--brand);
  display: inline-flex;
  font-size: .95rem;
  font-weight: 750;
  gap: .65rem;
  line-height: 1.2;
  margin: 0;
  position: absolute;
  right: 1.25rem;
  top: 1rem;
}

.post-card-category {
  color: var(--brand);
}

.post-card-topline time::before {
  background: rgba(102, 94, 91, .5);
  border-radius: 999px;
  content: "";
  display: inline-block;
  height: .25rem;
  margin: 0 .65rem .12rem 0;
  vertical-align: middle;
  width: .25rem;
}

.post-hero-image {
  aspect-ratio: 16 / 7;
  border-radius: .35rem;
  display: block;
  height: auto;
  object-fit: cover;
  width: 100%;
}

.post-back-link:hover,
.post-back-link:focus-visible {
  color: var(--brand);
}

.post-back-link {
  align-items: center;
  color: var(--ink);
  display: inline-flex;
  font-weight: 700;
  gap: .45rem;
  margin-top: 1.4rem;
  text-decoration: none;
}

.post-back-link i {
  font-size: 1.15rem;
}

.post-shell {
  margin: 0 auto;
  max-width: 46rem;
  padding: 7rem 2rem 5.5rem;
}

.post-shell-long {
  max-width: 48rem;
}

.post-header {
  border-bottom: 1px solid var(--line);
  margin-bottom: 1.6rem;
  padding-bottom: 1.45rem;
}

.post-site-header .post-logo-only {
  display: flex;
  justify-content: center;
  left: clamp(3.5rem, 6vw, 5rem);
  position: fixed;
  top: 4.5rem;
  transform: none;
  width: auto;
  z-index: 4;
}

.post-site-header .brand-mark {
  height: 4rem;
  width: 4rem;
}

.post-site-header .blog-menu {
  left: clamp(2rem, 6vw, 5rem);
  margin: 0;
  position: fixed;
  top: 9.4rem;
  z-index: 4;
}

.post-side-panel {
  left: clamp(3.5rem, 6vw, 5rem);
  position: fixed;
  top: 13.2rem;
  width: clamp(14rem, 18vw, 18rem);
  z-index: 3;
}

.post-category-list {
  margin-top: 0;
}

.post-toc {
  border-top: 1px solid var(--line);
  display: grid;
  gap: .35rem;
  margin-top: 1.8rem;
  padding-top: 1.4rem;
}

.post-category-label {
  color: var(--brand);
  font-size: .92rem;
  font-weight: 800;
  margin: 0 0 .6rem;
}

.post-body {
  border-top: 1px solid var(--line);
  font-size: 1rem;
  line-height: 1.82;
  margin-top: 2rem;
  padding: 2rem 0 0;
}

.post-author-card {
  align-items: center;
  background: rgba(255, 255, 255, .34);
  border-bottom: 1px solid var(--line);
  border-top: 2px solid rgba(142, 44, 70, .34);
  display: flex;
  gap: 1.35rem;
  margin-top: 2.4rem;
  padding: 1.5rem 1.25rem;
}

.post-author-card img {
  height: 100px;
  width: 100px;
}

.post-author-card p {
  font-size: 1.05rem;
  font-weight: 750;
  line-height: 1.2;
}

.post-author-card time {
  color: var(--muted);
  display: block;
  font-size: .95rem;
  margin-top: .2rem;
}

.post-body h2 {
  font-size: 1.22rem;
  line-height: 1.35;
  margin: 2.4rem 0 .85rem;
  scroll-margin-top: 6rem;
}

.post-body p + p {
  margin-top: 1.15rem;
}

.post-body figure {
  margin: 2rem 0;
}

.post-body figure img {
  aspect-ratio: 16 / 9;
  border-radius: .35rem;
  display: block;
  height: auto;
  object-fit: cover;
  width: 100%;
}

.post-body figcaption {
  color: var(--muted);
  font-size: .86rem;
  margin-top: .6rem;
}

@media (max-width: 1400px) {
  .content {
    margin: 6rem 5rem;
  }

  .hero {
    padding: 4rem 5rem 4rem 5rem;
  }

  .blog-shell {
    padding: 6rem 5rem;
  }

  .blog-shell-post-list {
    padding: 6rem 3rem 4rem clamp(24rem, 32vw, 28rem);
  }
}

@media (max-width: 900px) {
  .site-header {
    align-items: flex-start;
    display: grid;
    gap: 1.2rem;
  }

  .home-header-actions {
    flex-wrap: wrap;
    justify-content: flex-start;
    width: 100%;
  }

  .home-menu {
    font-size: .95rem;
    gap: 1rem;
    margin: 0;
  }

  .home-intro {
    margin-top: 4.5rem;
  }

  .product-detail-header {
    margin-bottom: 4rem;
  }

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

  .product-category-nav {
    position: static;
  }

  .release-gallery.three-up {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .flex {
    display: block;
  }

  .content {
    margin: 3rem auto 2rem;
    max-width: 34rem;
    padding: 0 2rem;
    width: auto;
  }

  .content-index {
    min-height: 0;
  }

  .hero {
    border-left: 0;
    border-top: 1px solid var(--line);
    margin: 2.5rem auto 0;
    max-width: 34rem;
    padding: 2.5rem 2rem 3rem;
  }

  .hero-img {
    width: min(34rem, 100%);
  }

  .hero .button {
    width: min(28rem, 100%);
  }

  .blog-shell {
    display: block;
    padding: 4rem 2rem;
  }

  .blog-shell-post-list {
    padding: 4rem 2rem;
  }

  .blog-shell-post-list .blog-intro {
    position: static;
    width: auto;
  }

  .blog-shell-post-list .blog-feed {
    width: 100%;
  }

  h1 {
    font-size: 1.85rem;
  }

  .blog-feed {
    margin-top: 3.5rem;
  }

  .post-shell {
    padding-top: 1rem;
  }

  .post-header {
    margin-bottom: 1.4rem;
    padding-bottom: 1.2rem;
  }

  .post-site-header {
    padding: 4rem 2rem 0;
  }

  .post-site-header .post-logo-only {
    justify-content: flex-start;
    margin-bottom: 1.4rem;
    position: static;
    transform: none;
    width: 100%;
  }

  .post-site-header .blog-menu {
    margin: 0 0 1.4rem;
    position: static;
  }

  .post-side-panel {
    display: grid;
    gap: 1rem;
    margin: 0 2rem 1.5rem;
    position: static;
    width: auto;
  }

  .post-toc {
    margin-top: 0;
  }
}

@media (max-width: 600px) {
  .home-shell {
    padding: 1.1rem;
  }

  .home-page .brand-mark {
    height: 3rem;
    width: 3rem;
  }

  .home-page .brand-word {
    font-size: 1.6rem;
  }

  .home-menu {
    row-gap: .55rem;
    width: 100%;
  }

  .home-header-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: .75rem;
  }

  .home-page .site-header .language-switcher {
    justify-content: flex-start;
    margin: 0;
    padding: 0;
    width: auto;
  }

  .home-intro {
    margin-top: 4rem;
  }

  .home-intro h1 {
    font-size: 2.28rem;
    line-height: 1.04;
    max-width: 12ch;
  }

  .hero-lead {
    font-size: 1rem;
  }

  .home-actions {
    align-items: stretch;
    display: grid;
  }

  .primary-action,
  .secondary-action {
    justify-content: center;
  }

  .product-row {
    align-items: flex-start;
    grid-template-columns: 1fr;
  }

  .product-detail-shell {
    padding: 1.1rem;
  }

  .product-detail-intro h1 {
    font-size: 2.28rem;
  }

  .product-category-nav button {
    min-height: 3.25rem;
  }

  .release-gallery.three-up {
    grid-template-columns: 1fr;
  }

  body:not(.home-page) .language-switcher {
    justify-content: flex-end;
    padding: 0 1.2rem;
    position: static;
    width: 100%;
    margin-top: 1rem;
  }

  .content {
    margin: 1.3rem 0 1.5rem;
  }

  .brand-mark {
    height: 3.8rem;
    width: 3.8rem;
  }

  .brand-word {
    font-size: 2.35rem;
  }

  .menu {
    font-size: 1.15rem;
    margin-bottom: 2.5rem;
  }

  .menu a {
    margin-right: 1.3rem;
  }

  .hero {
    padding-bottom: 2rem;
  }

  .blog-shell {
    padding: 2.2rem 1.4rem 3rem;
  }

  .blog-menu {
    margin-bottom: 3rem;
  }

  .blog-search,
  .category-filter {
    margin-top: 1.35rem;
  }

  h1 {
    font-size: 1.6rem;
  }

  .post-list-item {
    grid-template-columns: 8.5rem minmax(0, 1fr);
    gap: .85rem;
  }

  .post-thumb {
    width: 8.5rem;
  }

  .post-list-body h2 {
    font-size: 1rem;
  }

  .post-list-body p:not(.post-meta) {
    font-size: .86rem;
  }

  .post-shell {
    padding: 2.2rem 1.4rem 3rem;
  }

  .post-site-header {
    padding: 2.2rem 1.4rem 0;
  }

  .post-side-panel {
    margin: 0 1.4rem 1.4rem;
  }

  .post-body {
    font-size: .98rem;
  }
}
