@import url("https://fonts.googleapis.com/css2?family=Bodoni+Moda:opsz,wght@6..96,400;6..96,500;6..96,600;6..96,700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700&display=swap");

:root {
  color-scheme: light;
  --blog-ink: #111111;
  --blog-charcoal: #292929;
  --blog-muted: #6b6b68;
  --blog-line: #deded9;
  --blog-surface: #ffffff;
  --blog-canvas: #f6f6f4;
  --blog-gold: #c89b4a;
  --blog-gold-dark: #8d672b;
  --blog-storefront-header-height: 63px;
  --blog-display-font: "Bodoni Moda", "Noto Serif TC", "Songti TC", PMingLiU, serif;
  font-family: "Bodoni Moda", "Noto Serif TC", "PingFang TC", "Microsoft JhengHei", serif;
  letter-spacing: 0;
}

* {
  box-sizing: border-box;
  letter-spacing: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--blog-storefront-header-height) + 32px);
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body.blog-page {
  margin: 0;
  color: var(--blog-ink);
  background: var(--blog-canvas);
  font-size: 16px;
  line-height: 1.75;
  text-rendering: optimizeLegibility;
}

body.blog-overlay-open { overflow: hidden; }
.blog-back-to-top { display: none; }

@media (max-width: 680px) {
  .blog-back-to-top {
    align-items: center;
    background: #050505;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 50%;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.34);
    color: #fff;
    display: inline-flex;
    height: 46px;
    justify-content: center;
    left: 0;
    padding: 0;
    position: fixed;
    top: 0;
    touch-action: none;
    user-select: none;
    transform: translate3d(calc(100vw - 62px), calc(100svh - 196px), 0);
    transition: box-shadow 180ms ease, opacity 180ms ease, transform 220ms cubic-bezier(0.22, 1, 0.36, 1);
    width: 46px;
    z-index: 55;
  }
  .blog-back-to-top img {
    display: block;
    height: 25px;
    pointer-events: none;
    transform: translate(-0.5px, -1px);
    width: 25px;
  }
  .blog-back-to-top.is-dragging {
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.46);
    transition: box-shadow 120ms ease, opacity 120ms ease;
  }
  .blog-overlay-open .blog-back-to-top { visibility: hidden; }
}
body:not(.blog-page) .seo-shell { padding-top: 104px; }

.blog-storefront-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  display: grid;
  grid-template-columns: 41px 1fr 41px;
  align-items: center;
  width: 100%;
  min-height: var(--blog-storefront-header-height);
  padding: 11px 26px;
  color: var(--blog-ink);
  pointer-events: none;
  background: transparent;
  border-bottom: 1px solid transparent;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  transform: translate3d(0, 0, 0);
  transition: transform 820ms cubic-bezier(0.33, 1, 0.68, 1), opacity 680ms ease;
  will-change: transform, opacity;
}

.blog-storefront-header.is-hidden { opacity: 0.02; transform: translate3d(0, -104%, 0); }
.blog-storefront-header.is-hidden .blog-storefront-header__hamburger,
.blog-storefront-header.is-hidden .blog-storefront-header__wordmark,
.blog-storefront-header.is-hidden .blog-storefront-header__cart { pointer-events: none; }

.blog-storefront-header__hamburger,
.blog-storefront-header__cart {
  display: grid;
  width: 41px;
  height: 41px;
  padding: 0;
  color: var(--blog-ink);
  pointer-events: auto;
  background: transparent;
  border: 0;
}

.blog-storefront-header__hamburger { width: 33px; height: 33px; padding: 6px; align-items: center; justify-items: center; gap: 5px; }
.blog-storefront-header__hamburger span { display: block; width: 17px; height: 2.25px; background: currentColor; }
@media (min-width: 681px) {
  .blog-storefront-header { --blog-storefront-header-height: 71px; padding: 15px 26px; }
  .blog-storefront-header__hamburger { width: 41px; height: 41px; padding: 7.5px; gap: 6.25px; }
  .blog-storefront-header__hamburger span { width: 21.25px; height: 2.8px; }
}
.blog-storefront-header__wordmark { display: flex; align-items: center; justify-content: center; justify-self: center; width: clamp(105px, 13.359vw, 190px); min-height: 39px; pointer-events: auto; }
.blog-storefront-header__wordmark img { display: block; width: 100%; height: auto; filter: invert(1); }
.blog-storefront-header__cart { position: relative; justify-self: end; place-items: center; }
.blog-storefront-header__cart svg { width: 30px; height: 30px; }
.blog-storefront-header__cart span { position: absolute; top: 1px; right: 0; display: grid; min-width: 15px; height: 15px; padding: 0 3px; color: #fff; font-size: 9px; line-height: 1; place-items: center; background: #c70b0b; border-radius: 6px; }

.blog-storefront-menu,
.blog-storefront-cart { position: fixed; z-index: 70; inset: 0; pointer-events: none; opacity: 0; transition: opacity 180ms ease; }
.blog-storefront-menu.is-open,
.blog-storefront-cart.is-open { pointer-events: auto; opacity: 1; }
.blog-storefront-menu__overlay,
.blog-storefront-cart__overlay { position: absolute; inset: 0; width: 100%; padding: 0; background: rgba(0, 0, 0, 0.6); border: 0; }
.blog-storefront-menu__panel { position: relative; display: flex; flex-direction: column; width: min(480px, 100vw); height: 100svh; padding: 76px clamp(24px, 6vw, 58px) 34px; overflow-y: auto; color: #fff; background: #050505; border-right: 1px solid rgba(255, 255, 255, 0.12); box-shadow: 22px 0 46px rgba(0, 0, 0, 0.42); transform: translateX(-100%); transition: transform 260ms ease; }
.blog-storefront-menu.is-open .blog-storefront-menu__panel { transform: translateX(0); }
.blog-storefront-menu__close { position: absolute; top: 24px; right: 28px; padding: 0; color: #f7f3ef; font: 400 13px/1 Inter, "Noto Sans TC", sans-serif; background: transparent; border: 0; }
.blog-storefront-menu__panel p { margin: 0 0 clamp(18px, 3vw, 28px); color: #b8aea4; font-size: 13px; letter-spacing: 0.16em; text-transform: uppercase; }
.blog-storefront-menu__panel a,
.blog-menu-account-action,
.blog-policy-toggle { padding: clamp(2px, 0.7vw, 5px) 0; color: #f7f3ef; font-family: Balthazar, Georgia, "Times New Roman", serif; font-size: 30px; font-weight: 500; line-height: 1.06; text-align: left; text-decoration: none; }
.blog-storefront-menu__panel > a,
.blog-storefront-menu__panel > .blog-menu-account-action,
.blog-storefront-menu__panel > .blog-policy-toggle { margin-bottom: clamp(4px, 1vw, 7px); }
.blog-menu-account-action,
.blog-policy-toggle { width: 100%; background: transparent; border: 0; }
.blog-storefront-menu__panel a:hover,
.blog-menu-account-action:hover,
.blog-policy-toggle:hover { color: #c70b0b; }
.blog-policy-toggle { display: flex; align-items: center; justify-content: space-between; margin-top: clamp(5px, 1.2vw, 10px); }
.blog-policy-toggle span { font-family: Inter, "Noto Sans TC", sans-serif; font-size: 30px; line-height: 0; }
.blog-policy-submenu { display: none; flex-direction: column; gap: 6px; padding: 6px 0 0; }
.blog-policy-submenu.is-open { display: flex; }
.blog-policy-submenu p { margin: 0; color: #b8aea4; font-size: 12px; }
.blog-policy-submenu a { min-height: 36px; padding: 0; font-family: Inter, "Noto Sans TC", sans-serif; font-size: 17px; font-weight: 500; }
.blog-storefront-cart { z-index: 60; }
.blog-cart-open .blog-storefront-header { z-index: 80; background: var(--blog-canvas); border-bottom-color: var(--blog-line); }
.blog-storefront-cart__panel { position: absolute; top: var(--blog-storefront-header-height); right: 0; left: 0; display: grid; min-height: 64px; padding: 0 clamp(20px, 4vw, 34px); color: var(--blog-ink); background: var(--blog-canvas); border-top: 1px solid var(--blog-line); border-bottom: 1px solid var(--blog-line); transform: translateY(-8px); transition: transform 180ms ease; }
.blog-storefront-cart.is-open .blog-storefront-cart__panel { transform: translateY(0); }
.blog-storefront-cart__content { display: flex; align-items: center; justify-content: center; gap: 18px; min-width: 0; padding: 14px 0; text-align: center; }
.blog-storefront-cart__panel strong { font-size: 15px; }
.blog-storefront-cart__panel a { color: var(--blog-ink); font-size: 14px; font-weight: 700; text-underline-offset: 5px; }

.blog-page a {
  color: inherit;
  text-decoration-color: color-mix(in srgb, var(--blog-gold) 75%, transparent);
  text-underline-offset: 0.2em;
}

.blog-page a:hover { color: var(--blog-gold-dark); }

.blog-page a:focus-visible,
.blog-page summary:focus-visible {
  outline: 2px solid var(--blog-gold);
  outline-offset: 3px;
}

.blog-site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
  padding: 0 32px;
  color: #ffffff;
  background: var(--blog-ink);
  border-bottom: 1px solid #343434;
}

.blog-site-header {
  position: sticky;
  top: 0;
  z-index: 20;
}

.blog-site-header a {
  color: #ffffff;
  font-weight: 700;
  text-decoration: none;
}

.blog-site-header > :first-child { font-size: 18px; }
.blog-site-header > :last-child { color: var(--blog-gold); }
.blog-page .footer {
  margin-top: 88px;
  padding: clamp(34px, 4vw, 56px) clamp(18px, 4vw, 76px) 16px;
  color: #f4f0ea;
  background: #050505;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  font-family: Arial, "Noto Sans TC", sans-serif;
}

.blog-page .footer-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.42fr);
  align-items: start;
  gap: clamp(36px, 6vw, 92px);
}

.blog-page .footer-link-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(148px, 1fr));
  gap: clamp(24px, 4vw, 56px);
  max-width: 520px;
}

.blog-page .footer-column h2,
.blog-page .footer-payment h2 {
  margin: 0 0 18px;
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.25;
}

.blog-page .footer-column a,
.blog-page .footer-contact a {
  display: block;
  margin: 0 0 13px;
  color: #e7dfd6;
  font-size: 15px;
  line-height: 1.45;
  text-decoration: none;
}

.blog-page .footer-column a:hover,
.blog-page .footer-contact a:hover,
.blog-page .footer-bottom a:hover { text-decoration: underline; text-underline-offset: 3px; }

.blog-page .footer-service {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: start;
  justify-self: end;
  gap: 24px;
  width: 100%;
  max-width: 520px;
}

.blog-page .footer-logo-tile {
  display: flex;
  width: min(136px, 39.6vw);
  max-width: 136px;
  aspect-ratio: 1;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 12px;
}

.blog-page .footer-logo-tile img { display: block; width: 100%; height: auto; aspect-ratio: 1; object-fit: contain; }
.blog-page .footer-payment-list { display: flex; flex-wrap: wrap; gap: 8px; margin: 2px 0 24px; }
.blog-page .payment-card { display: inline-flex; width: 74px; min-width: 74px; height: 30px; min-height: 30px; align-items: center; justify-content: center; overflow: hidden; }
.blog-page .payment-card img { display: block; width: 100%; height: 100%; object-fit: contain; }
.blog-page .footer-contact { color: #e7dfd6; font-style: normal; }
.blog-page .footer-contact span { display: block; margin: 0 0 4px; font-size: 13px; line-height: 1.5; }

.blog-page .footer-bottom {
  display: flex;
  flex-wrap: nowrap;
  align-items: baseline;
  justify-content: center;
  gap: clamp(6px, 1.2vw, 10px);
  width: 100%;
  margin-top: clamp(16px, 2.4vw, 28px);
  padding: 0 8px;
  color: #f4f0ea;
  text-align: center;
  white-space: nowrap;
}

.blog-page .footer-bottom span,
.blog-page .footer-bottom a { color: #f4f0ea; font-size: 11px; font-weight: 700; line-height: 1; text-decoration: none; }
.blog-page .footer-credit { display: inline-flex; flex: 0 0 auto; align-items: baseline; gap: 6px; color: #8f8a84; }
.blog-page .footer-credit-en { color: #8f8a84; }
.blog-page .footer-credit a { display: inline-flex; align-items: baseline; color: #8f8a84; }
.blog-page .footer-credit-logo { display: block; width: auto; height: clamp(13px, 1.15vw, 16px); object-fit: contain; }

@media (min-width: 1081px) {
  .blog-page .footer-inner { grid-template-columns: minmax(520px, 620px) minmax(440px, 520px); justify-content: center; gap: 0; }
  .blog-page .footer-link-grid { grid-template-columns: 180px 180px; justify-self: start; gap: 129px; max-width: none; margin-left: clamp(60px, 6vw, 112px); }
  .blog-page .footer-service { justify-self: start; gap: 20px; }
  .blog-page .footer-logo-tile { width: 150px; max-width: 150px; }
}

@media (max-width: 1080px) {
  .blog-page .footer-inner { grid-template-columns: 1fr; }
  .blog-page .footer-service { grid-template-columns: auto minmax(0, 1fr); justify-self: stretch; gap: 26px; max-width: none; }
  .blog-page .footer-logo-tile { margin: 0; }
  .blog-page .footer-payment,
  .blog-page .footer-contact { align-self: start; }
}

.blog-reading-layout {
  display: grid;
  grid-template-columns: minmax(160px, 220px) minmax(0, 720px) minmax(180px, 240px);
  justify-content: center;
  gap: clamp(24px, 4vw, 56px);
  align-items: start;
  width: min(100% - 48px, 1320px);
  margin: calc(var(--blog-storefront-header-height) + 52px) auto 0;
}

.blog-category-nav,
.blog-toc {
  position: sticky;
  top: calc(var(--blog-storefront-header-height) + 24px);
  max-height: calc(100vh - var(--blog-storefront-header-height) - 48px);
  overflow: auto;
}

.blog-layout__categories,
.blog-layout__toc { min-width: 0; }

@media (min-width: 901px) {
  .blog-layout__toc {
    position: sticky;
    top: calc(var(--blog-storefront-header-height) + 24px);
  }

  .blog-layout__toc > .blog-toc { position: static; }
}

.blog-category-nav {
  display: grid;
  gap: 2px;
  padding-top: 12px;
  border-top: 2px solid var(--blog-ink);
}

.blog-category-nav a {
  padding: 9px 10px;
  color: var(--blog-charcoal);
  border-left: 2px solid transparent;
  text-decoration: none;
}

.blog-category-nav a[aria-current="page"] {
  color: var(--blog-ink);
  background: #eeeeeb;
  border-left-color: var(--blog-gold);
  font-weight: 700;
}

.blog-toc {
  padding: 12px 0 12px 18px;
  border-left: 1px solid var(--blog-line);
}

.blog-toc ol { margin: 0; padding: 0; list-style: none; }
.blog-toc li + li { margin-top: 4px; }
.blog-toc__level-3 { padding-left: 14px; }
.blog-toc a {
  display: block;
  padding: 5px 8px;
  color: var(--blog-muted);
  font-size: 13px;
  line-height: 1.45;
  border-left: 2px solid transparent;
  text-decoration: none;
}

.blog-toc a.is-active,
.blog-toc a[aria-current="location"] {
  color: var(--blog-ink);
  border-left-color: var(--blog-gold);
  font-weight: 700;
}

.blog-mobile-navigation { display: none; }

.blog-article { min-width: 0; }
.blog-article__header { margin-bottom: 28px; }
.blog-article__category {
  color: var(--blog-gold-dark);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.blog-article h1 {
  max-width: 18ch;
  margin: 12px 0 16px;
  font-family: var(--blog-display-font);
  font-size: 44px;
  line-height: 1.2;
  overflow-wrap: anywhere;
}

.blog-article__excerpt {
  margin: 0 0 18px;
  color: var(--blog-charcoal);
  font-size: 19px;
  line-height: 1.7;
}

.blog-article__meta,
.blog-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 16px;
  color: var(--blog-muted);
  font-size: 13px;
}

.blog-tags { margin-top: 10px; }
.blog-tags a { color: var(--blog-gold-dark); text-decoration: none; }

.blog-hero,
.blog-figure,
.blog-split figure,
.blog-gallery figure {
  margin: 0;
  overflow: hidden;
  background: #e9e9e5;
  border-radius: 4px;
}

.blog-hero { margin-bottom: 42px; }
.blog-hero img { aspect-ratio: 16 / 9; }
.blog-figure img { aspect-ratio: 3 / 2; }
.blog-gallery img { aspect-ratio: 4 / 5; }

.blog-hero img,
.blog-figure img,
.blog-split img,
.blog-gallery img,
.blog-product-card img,
.blog-related-card img,
.blog-index-card img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.blog-hero img,
.blog-figure img,
.blog-split img,
.blog-gallery img { height: 100%; }

.blog-page figcaption {
  padding: 8px 2px 0;
  color: var(--blog-muted);
  font-size: 12px;
}

.blog-prose { color: var(--blog-charcoal); }
.blog-prose > * + * { margin-top: 26px; }
.blog-prose h2,
.blog-prose h3 {
  color: var(--blog-ink);
  font-family: var(--blog-display-font);
  scroll-margin-top: 96px;
}

.blog-prose h2 { margin-top: 52px; font-size: 28px; line-height: 1.35; }
.blog-prose h3 { margin-top: 38px; font-size: 21px; line-height: 1.45; }
.blog-prose p,
.blog-prose li { overflow-wrap: anywhere; }
.blog-prose ul,
.blog-prose ol { padding-left: 1.4em; }

.blog-callout {
  padding: 18px 20px;
  color: var(--blog-ink);
  background: #efefec;
  border-left: 3px solid var(--blog-gold);
  border-radius: 4px;
}

.blog-prose blockquote {
  margin-left: 0;
  margin-right: 0;
  padding: 4px 0 4px 22px;
  font-family: var(--blog-display-font);
  font-size: 20px;
  border-left: 1px solid var(--blog-gold);
}

.blog-prose blockquote cite {
  display: block;
  margin-top: 8px;
  color: var(--blog-muted);
  font-family: Inter, "Noto Sans TC", sans-serif;
  font-size: 13px;
}

.blog-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 28px;
  align-items: center;
}

.blog-split--right figure { order: 2; }
.blog-split img { aspect-ratio: 1 / 1; }

.blog-gallery {
  display: grid;
  grid-template-columns: repeat(var(--gallery-columns), minmax(0, 1fr));
  gap: 12px;
}

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

.blog-products,
.blog-related-products,
.blog-related-articles,
.blog-inline-related {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--blog-line);
}

.blog-product-card,
.blog-related-card,
.blog-index-card {
  overflow: hidden;
  color: var(--blog-ink);
  background: var(--blog-surface);
  border: 1px solid var(--blog-line);
  border-radius: 6px;
  text-decoration: none;
}

.blog-product-card,
.blog-related-card { display: grid; }
.blog-product-card img { aspect-ratio: 1 / 1; }
.blog-related-card img { aspect-ratio: 3 / 2; }
.blog-product-card span,
.blog-related-card span { padding: 12px; font-weight: 700; }

.blog-cta-row { margin: 32px 0; }
.blog-cta {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 8px 18px;
  border: 1px solid var(--blog-ink);
  border-radius: 4px;
  font-weight: 700;
  text-decoration: none;
}

.blog-page a.blog-cta--primary,
.blog-page a.blog-cta--primary:hover,
.blog-page a.blog-cta--primary:focus-visible { color: #ffffff; background: var(--blog-ink); }
.blog-cta--secondary { background: transparent; }

.blog-faq details,
.blog-mobile-navigation details {
  border-top: 1px solid var(--blog-line);
}

.blog-faq details:last-child,
.blog-mobile-navigation details:last-child { border-bottom: 1px solid var(--blog-line); }
.blog-faq summary,
.blog-mobile-navigation summary { padding: 14px 0; font-weight: 700; cursor: pointer; }

.blog-post-pagination,
.blog-index__pagination {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 56px;
}

.blog-post-pagination a,
.blog-index__pagination a {
  display: grid;
  min-height: 72px;
  align-content: center;
  padding: 14px;
  background: var(--blog-surface);
  border: 1px solid var(--blog-line);
  border-radius: 6px;
  text-decoration: none;
}

.blog-post-pagination small { color: var(--blog-muted); }
.blog-number-pagination { display: block; }
.blog-number-pagination ul { display: flex; justify-content: center; gap: 4px; padding: 0; margin: 0; list-style: none; }
.blog-number-pagination li > a,
.blog-number-pagination li > span { display: grid; place-items: center; width: 32px; height: 32px; min-height: 32px; max-height: 32px; padding: 0; border: 1px solid #dedede; border-radius: 4px; background: #fff; color: #111; font-size: 14px; line-height: 1; text-decoration: none; }
.blog-number-pagination li > a:hover { background: #ededed; border-color: #999; }
.blog-number-pagination li > a:focus-visible { outline: 2px solid #111; outline-offset: 2px; }
.blog-number-pagination li > span[aria-current="page"] { background: #111; border-color: #111; color: #fff; }
.blog-number-pagination li > .blog-page-gap { border-color: transparent; background: transparent; width: 20px; }

.blog-index {
  width: min(100% - 48px, 1160px);
  margin: calc(var(--blog-storefront-header-height) + 52px) auto 0;
}

.blog-index__header { padding-bottom: 28px; }
.blog-index__header h1 { margin: 0; font-family: "Playfair Display", var(--blog-display-font); font-size: 42px; font-weight: 700; }
.blog-index__layout { display: grid; grid-template-columns: 210px minmax(0, 1fr); gap: 42px; margin-top: 32px; }
.blog-index__layout aside { min-width: 0; }
.blog-index__navigation {
  position: sticky;
  top: calc(var(--blog-storefront-header-height) + 24px);
  max-height: calc(100vh - var(--blog-storefront-header-height) - 48px);
  overflow: auto;
}
.blog-index__navigation .blog-category-nav {
  position: static;
  max-height: none;
  overflow: visible;
}
.blog-tag-nav { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 20px; }
.blog-tag-nav a { padding: 4px 8px; color: var(--blog-muted); font-size: 12px; border: 1px solid var(--blog-line); border-radius: 4px; text-decoration: none; }
.blog-tag-nav a[aria-current="page"] { color: var(--blog-ink); border-color: var(--blog-gold); }
.blog-index__posts { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
.blog-index-card > a { display: block; text-decoration: none; }
.blog-index-card img { aspect-ratio: 3 / 2; }
.blog-index-card__body { padding: 16px; }
.blog-index-card__body > span { color: var(--blog-gold-dark); font-size: 12px; font-weight: 700; }
.blog-index-card h2 { margin: 6px 0 8px; font-family: var(--blog-display-font); font-size: 21px; line-height: 1.4; }
.blog-index-card p { color: var(--blog-muted); }
.blog-index-card small { color: var(--blog-muted); }
.blog-index__pagination { grid-column: 1 / -1; }

.blog-media-placeholder {
  display: grid;
  min-height: 220px;
  place-items: center;
  color: var(--blog-muted);
  background: #e9e9e5;
  border: 1px dashed #bdbdb8;
  border-radius: 4px;
}

.blog-unavailable main {
  width: min(100% - 40px, 640px);
  margin: 96px auto;
  padding-top: 22px;
  border-top: 3px solid var(--blog-gold);
}

.blog-unavailable__brand { font-weight: 800; text-decoration: none; }

@media (max-width: 900px) {
  .blog-reading-layout { display: block; width: min(100% - 32px, 720px); margin-top: 32px; }
  .blog-layout__categories,
  .blog-layout__toc { display: none; }
  .blog-mobile-navigation {
    display: block;
    width: min(100% - 32px, 720px);
    margin: calc(var(--blog-storefront-header-height) + 20px) auto 0;
  }
  .blog-mobile-navigation .blog-category-nav,
  .blog-mobile-navigation .blog-toc {
    position: static;
    max-height: none;
    padding: 4px 0 14px;
    overflow: visible;
    border: 0;
  }
  .blog-article h1 { font-size: 36px; }
  .blog-index { width: min(100% - 32px, 720px); }
  .blog-index__layout { display: block; }
  .blog-index__layout > aside { margin-bottom: 28px; }
  .blog-index__navigation { position: static; max-height: none; overflow: visible; }
}

@media (max-width: 640px) {
  .blog-index__header h1 { font-size: 24px; line-height: 1.3; white-space: nowrap; }
  .blog-site-header { min-height: 56px; padding: 0 16px; }
  .blog-article h1 { font-size: 31px; }
  .blog-article__excerpt { font-size: 17px; }
  .blog-prose h2 { font-size: 25px; }
  .blog-split { grid-template-columns: 1fr; }
  .blog-split--right figure { order: 0; }
  .blog-gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .blog-product-grid,
  .blog-related-grid,
  .blog-index__posts { grid-template-columns: 1fr; }
  .blog-post-pagination { grid-template-columns: 1fr; }
  .blog-page .footer { margin-top: 64px; padding: 30px 18px 14px; }
  .blog-page .footer-link-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px 22px; max-width: none; }
  .blog-page .footer-link-grid .footer-column:nth-child(2) { justify-self: end; min-width: 112px; }
  .blog-page .footer-column h2,
  .blog-page .footer-payment h2 { margin-bottom: 13px; font-size: 14px; }
  .blog-page .footer-column a,
  .blog-page .footer-contact a { margin-bottom: 10px; font-size: 14px; }
  .blog-page .footer-service { grid-template-columns: 1fr; }
  .blog-page .footer-logo-tile { max-width: 116px; padding: 10px; }
  .blog-page .footer-payment-list { margin-bottom: 14px; }
}

@media (max-width: 680px) {
  :root { --blog-storefront-header-height: 57px; }
  .blog-storefront-header { grid-template-columns: 33px 1fr 33px; min-height: var(--blog-storefront-header-height); padding: 12px 14px; }
  .blog-storefront-header__wordmark { width: 119px; min-height: 31px; }
  .blog-storefront-header__cart { width: 33px; height: 33px; }
  .blog-storefront-header__cart svg { width: 24px; height: 24px; }
  .blog-storefront-header__cart span { top: 0; }
  .blog-storefront-menu__panel { padding: 96px 28px 34px; }
  .blog-storefront-menu__panel p { margin-bottom: 28px; }
  .blog-storefront-menu__panel > a,
  .blog-storefront-menu__panel > .blog-menu-account-action,
  .blog-storefront-menu__panel > .blog-policy-toggle { margin-bottom: 14px; padding: 2px 0; font-size: 38px; line-height: 1.14; }
  .blog-storefront-menu__panel > .blog-policy-toggle { margin-top: 0; }
  .blog-policy-toggle span { font-size: 32px; }
  .blog-policy-submenu { padding-top: 0; }
}
