/* 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%;
  }
}

/* breadcrumbs.css */
.breadcrumb-nav {
  color: rgba(245, 239, 224, 0.72);
  font-size: 13px;
  font-weight: 800;
  margin: 0 0 18px;
}

.breadcrumb-nav ol {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.breadcrumb-nav li {
  align-items: center;
  display: inline-flex;
  gap: 8px;
  min-width: 0;
}

.breadcrumb-nav li:not(:last-child)::after {
  color: rgba(202, 163, 74, 0.8);
  content: "/";
}

.breadcrumb-nav a {
  color: inherit;
  text-decoration: none;
}

.breadcrumb-nav a:hover {
  color: #f5efe0;
}

.breadcrumb-nav [aria-current="page"] {
  color: #f5efe0;
}

.breadcrumb-adjacent {
  background: var(--panel, #151a20);
  border: 1px solid var(--line, rgba(245, 239, 224, 0.18));
  border-radius: 8px;
  display: grid;
  gap: 18px;
  margin-top: 18px;
  padding: clamp(18px, 3vw, 28px);
}

.breadcrumb-adjacent h2 {
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.08;
  margin: 4px 0 0;
}

.breadcrumb-adjacent-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.breadcrumb-adjacent-card {
  background: rgba(245, 239, 224, 0.96);
  border: 1px solid rgba(202, 163, 74, 0.38);
  border-radius: 8px;
  color: #12171d;
  display: grid;
  gap: 8px;
  min-height: 112px;
  padding: 16px;
  text-decoration: none;
}

.breadcrumb-adjacent-card span {
  color: #247a6b;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.breadcrumb-adjacent-card strong {
  font-size: 18px;
  line-height: 1.34;
}

.breadcrumb-adjacent-card:hover {
  border-color: rgba(202, 163, 74, 0.88);
  transform: translateY(-1px);
}

@media (max-width: 720px) {
  .breadcrumb-nav {
    font-size: 12px;
  }

  .breadcrumb-adjacent-grid {
    grid-template-columns: 1fr;
  }
}

/* site-share.css */
.share-links {
  align-items: end;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.hero-share-slot {
  display: block;
}

.hero-share-slot:empty {
  display: none;
}

.hero-share-slot .share-links {
  margin-top: 0;
}

.share-links__label {
  color: currentColor;
  font-size: 12px;
  font-weight: 800;
  opacity: 0.68;
  padding-bottom: 10px;
  text-transform: uppercase;
}

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

.share-links__button:hover {
  background: transparent;
}

.share-links__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;
  justify-items: center;
  place-items: center;
  position: relative;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
  width: 42px;
}

.share-links__button:hover .share-links__icon {
  border-color: rgba(213, 173, 69, 0.72);
  transform: translateY(-1px);
}

.share-links__text {
  color: currentColor;
  line-height: 1;
  opacity: 0.82;
  text-align: center;
}

.share-links__button--copy .share-links__icon::before,
.share-links__button--copy .share-links__icon::after {
  border: 2px solid currentColor;
  border-radius: 3px;
  content: "";
  height: 17px;
  position: absolute;
  width: 13px;
}

.share-links__button--copy .share-links__icon::before {
  opacity: 0.62;
  transform: translate(-4px, 4px);
}

.share-links__button--copy .share-links__icon::after {
  background: rgba(255, 255, 255, 0.08);
  transform: translate(3px, -3px);
}

.share-links__button--x .share-links__icon {
  background: #07090d;
  color: #fff;
  font-size: 19px;
  font-weight: 900;
}

.share-links__button--line .share-links__icon {
  background: #35c95a;
  color: #06250f;
}

.share-links__button--line .share-links__icon::before {
  background: #fff;
  border-radius: 999px;
  content: "";
  height: 21px;
  position: absolute;
  width: 26px;
}

.share-links__button--line .share-links__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;
}

.share-links__button.is-copied {
  color: #111;
}

.share-links__button.is-copied .share-links__icon {
  background: #d5ad45;
  border-color: #d5ad45;
  color: #111;
}

.hero-visual + .share-links,
.hero-card + .share-links {
  margin-top: 0;
}

@media (max-width: 720px) {
  .share-links {
    gap: 11px;
  }

  .share-links__button {
    min-width: 46px;
  }

  .share-links__icon {
    height: 40px;
    width: 40px;
  }
}

/* site-expandable-lead.css */
.lead-toggle {
  align-items: center;
  background: rgba(245, 239, 224, 0.08);
  border: 1px solid rgba(245, 239, 224, 0.22);
  border-radius: 999px;
  color: currentColor;
  cursor: pointer;
  display: inline-flex;
  font: inherit;
  font-size: 13px;
  font-weight: 850;
  gap: 6px;
  margin-top: 10px;
  min-height: 34px;
  padding: 7px 13px;
}

.lead-toggle:hover {
  background: rgba(213, 173, 69, 0.18);
  border-color: rgba(213, 173, 69, 0.64);
}

.lead-toggle::after {
  border-bottom: 2px solid currentColor;
  border-right: 2px solid currentColor;
  content: "";
  height: 7px;
  transform: rotate(45deg) translateY(-2px);
  transition: transform 160ms ease;
  width: 7px;
}

.lead-toggle.is-expanded::after {
  transform: rotate(225deg) translateY(-2px);
}

.lead.lead--expandable {
  overflow: hidden;
  transition: max-height 220ms ease;
}

.lead.lead--collapsed {
  max-height: var(--lead-collapsed-height, 16.6em);
  position: relative;
}

.lead.lead--collapsed::after {
  background: linear-gradient(180deg, rgba(7, 9, 13, 0), rgba(7, 9, 13, 0.88));
  bottom: 0;
  content: "";
  height: 3.6em;
  left: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
}

@media (max-width: 720px) {
  .lead.lead--collapsed {
    max-height: var(--lead-collapsed-height-mobile, 18.8em);
  }
}

/* dtm-support-guide.css */
/* dtm-product-roundup.css */
:root {
  color-scheme: light;
  --bg: #11161d;
  --page: #f1f3f0;
  --surface: #fbfaf5;
  --surface-soft: #e9efe9;
  --text: #17191d;
  --text-inverse: #f8f6ed;
  --muted: #68707a;
  --muted-inverse: #aeb8c2;
  --line: #d7d6ce;
  --line-dark: rgba(248, 246, 237, 0.16);
  --blue: #1f6feb;
  --blue-dark: #1558b0;
  --green: #0b7f6f;
  --gold: #c7a64b;
  --yellow: #d5a63a;
  --shadow: 0 18px 48px rgba(13, 18, 25, 0.16);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans JP", sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 82% 12%, rgba(29, 111, 235, 0.18), transparent 32%),
    linear-gradient(180deg, #11161d 0%, #171b22 38%, var(--page) 38%, var(--page) 100%);
  color: var(--text);
}

a {
  color: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px clamp(18px, 4vw, 52px);
  border-bottom: 1px solid var(--line-dark);
  background: rgba(17, 22, 29, 0.9);
  backdrop-filter: blur(16px);
}

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

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

.brand strong {
  color: var(--text-inverse);
  font-size: 17px;
}

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

.top-nav a {
  border-radius: 6px;
  color: var(--muted-inverse);
  font-size: 14px;
  font-weight: 700;
  padding: 8px 12px;
  text-decoration: none;
}

.top-nav a:hover {
  background: rgba(248, 246, 237, 0.08);
  color: var(--text-inverse);
}

.template-page {
  display: grid;
  gap: 28px;
  overflow-x: clip;
}

.hero {
  align-items: center;
  display: grid;
  grid-template-columns: minmax(0, 1.14fr) minmax(380px, 0.86fr);
  gap: clamp(28px, 4vw, 48px);
  padding: clamp(34px, 5vw, 68px) clamp(18px, 4vw, 52px) 28px;
  color: var(--text-inverse);
}

@media (min-width: 1100px) {
  .hero {
    gap: clamp(48px, 6vw, 110px);
    grid-template-columns: minmax(0, 1fr) minmax(360px, 480px);
    padding-inline: max(clamp(72px, 7vw, 120px), calc((100vw - 1500px) / 2));
  }
}

.hero-main {
  display: grid;
  align-content: center;
  gap: 18px;
  max-width: 820px;
}

.hero-share-slot {
  justify-self: center;
  width: min(100%, 460px);
}

.breadcrumb {
  color: var(--muted-inverse);
  font-size: 13px;
}

.breadcrumb a {
  color: var(--gold);
  font-weight: 700;
  text-decoration: none;
}

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

h1 {
  font-size: clamp(34px, 5vw, 60px);
  letter-spacing: 0;
  line-height: 1.08;
}

.lead {
  color: #d2d8dd;
  font-size: clamp(16px, 2vw, 19px);
  line-height: 1.85;
  max-width: 760px;
}

.hero-actions,
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.action-group {
  display: grid;
  gap: 7px;
}

.action-group > span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
}

.button {
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 6px;
  display: inline-flex;
  font-size: 14px;
  font-weight: 800;
  justify-content: center;
  min-height: 42px;
  padding: 10px 15px;
  text-decoration: none;
}

.button.primary {
  background: var(--gold);
  border-color: var(--gold);
  color: #11161d;
}

.button.primary:hover {
  background: #d8bb64;
}

.button.secondary {
  background: rgba(248, 246, 237, 0.08);
  border-color: rgba(248, 246, 237, 0.24);
  color: var(--text-inverse);
}

.button.secondary:hover {
  border-color: var(--gold);
}

.hero-card {
  align-self: start;
  background: rgba(251, 250, 245, 0.96);
  border: 1px solid rgba(248, 246, 237, 0.24);
  border-radius: 8px;
  color: var(--text);
  box-shadow: var(--shadow);
  display: grid;
  gap: 18px;
  padding: 22px;
}

.hero-image {
  aspect-ratio: 16 / 10;
  border-radius: 7px;
  object-fit: cover;
  width: 100%;
}

.score-ring {
  align-items: center;
  aspect-ratio: 1;
  background: conic-gradient(var(--gold) 0 82%, #ece4c8 82% 100%);
  border-radius: 50%;
  display: grid;
  justify-self: start;
  place-items: center;
  width: 112px;
}

.score-ring strong {
  align-items: center;
  background: #fff;
  border-radius: 50%;
  display: grid;
  font-size: 28px;
  height: 84px;
  place-items: center;
  width: 84px;
}

.quick-stats {
  display: grid;
  gap: 10px;
}

.quick-stat {
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding-top: 10px;
}

.quick-stat span {
  color: var(--muted);
}

.quick-stat strong {
  text-align: right;
}

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

.content-main {
  display: grid;
  gap: 26px;
  min-width: 0;
}

.side-rail {
  align-content: start;
  align-self: start;
  display: grid;
  gap: 16px;
  position: sticky;
  top: 86px;
}

.section,
.rail-panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(13, 18, 25, 0.06);
}

.section {
  padding: clamp(20px, 3vw, 30px);
  min-width: 0;
}

.section-header {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
}

h2 {
  font-size: clamp(24px, 3vw, 34px);
  letter-spacing: 0;
  line-height: 1.22;
}

.section-intro {
  color: var(--muted);
  line-height: 1.8;
}

.compare-grid {
  display: grid;
  gap: 12px;
  min-width: 0;
}

.compare-card {
  align-items: center;
  background: #fffefa;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: inherit;
  display: grid;
  gap: 16px;
  grid-template-columns: 82px minmax(0, 1fr) auto;
  padding: 12px;
  text-decoration: none;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
  min-width: 0;
}

.compare-card:hover {
  border-color: rgba(202, 163, 74, 0.68);
  box-shadow: 0 12px 28px rgba(16, 20, 27, 0.1);
  transform: translateY(-1px);
}

.compare-card img {
  aspect-ratio: 1;
  border-radius: 6px;
  display: block;
  object-fit: contain;
  padding: 6px;
  width: 100%;
}

.compare-image-link {
  border-radius: 6px;
  display: block;
  min-width: 0;
}

.product-image-link:focus-visible,
.compare-copy:focus-visible {
  outline: 3px solid rgba(20, 129, 112, 0.35);
  outline-offset: 3px;
}

.compare-copy {
  color: inherit;
  display: grid;
  gap: 6px;
  min-width: 0;
  text-decoration: none;
}

.compare-copy h3 {
  font-size: 17px;
  line-height: 1.35;
}

.compare-copy:hover h3 {
  color: var(--teal);
}

.compare-copy p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.stars {
  color: var(--yellow);
  font-size: 14px;
  white-space: nowrap;
}

.feature-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
}

.feature-card {
  background: #fffefa;
  border: 1px solid var(--line);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  min-width: 0;
}

.feature-card img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
  width: 100%;
}

.feature-copy {
  display: grid;
  gap: 8px;
  grid-template-rows: auto 1fr auto;
  height: 100%;
  padding: 16px;
}

.feature-copy h3 {
  font-size: 18px;
}

.feature-copy p,
.product-body {
  color: #43474d;
  line-height: 1.82;
}

.feature-body {
  min-height: 0;
}

.feature-body.is-collapsed {
  display: -webkit-box;
  max-height: 12.74em;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 7;
}

.text-toggle {
  background: transparent;
  border: 0;
  border-top: 1px solid var(--line);
  color: var(--green);
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  font-weight: 900;
  justify-self: start;
  margin-top: 4px;
  padding: 10px 0 0;
}

.text-toggle:hover {
  color: #075d52;
}

.recommend-box {
  background: #eef2ed;
  border: 1px solid #d8ded5;
  border-radius: 8px;
  display: grid;
  gap: 16px;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  padding: 16px;
}

.recommend-box img {
  aspect-ratio: 16 / 11;
  border-radius: 6px;
  object-fit: cover;
  width: 100%;
}

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

.check-list li {
  align-items: start;
  display: grid;
  gap: 8px;
  grid-template-columns: 20px minmax(0, 1fr);
  line-height: 1.55;
}

.check-list li::before {
  background: #dceee9;
  border-radius: 50%;
  color: var(--green);
  content: "✓";
  display: grid;
  font-size: 12px;
  font-weight: 900;
  height: 20px;
  place-items: center;
  width: 20px;
}

.product-list {
  display: grid;
  gap: 18px;
}

.product-card {
  background: #fffefa;
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 20px;
  grid-template-columns: 210px minmax(0, 1fr);
  padding: 18px;
  scroll-margin-top: 90px;
  min-width: 0;
}

.product-media {
  align-content: start;
  display: grid;
  gap: 12px;
}

.product-media img {
  aspect-ratio: 1;
  border: 1px solid var(--line);
  border-radius: 8px;
  display: block;
  object-fit: contain;
  padding: 14px;
  width: 100%;
}

.product-image-link {
  border-radius: 8px;
  display: block;
  text-decoration: none;
}

.product-index {
  background: #11161d;
  border-radius: 999px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  justify-self: start;
  padding: 5px 10px;
}

.product-copy {
  display: grid;
  gap: 12px;
}

.product-title-row {
  align-items: start;
  display: flex;
  gap: 12px;
  justify-content: space-between;
}

.product-title-row h3 {
  font-size: 23px;
  line-height: 1.35;
}

.product-brand {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.link-button {
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--green);
  font-size: 14px;
  font-weight: 800;
  min-height: 40px;
  padding: 9px 12px;
  text-align: center;
  text-decoration: none;
}

.link-button--amazon {
  background: #252c3a;
  border-color: #252c3a;
  color: #fff;
}

.link-button--rakuten {
  background: #b71f14;
  border-color: #b71f14;
  color: #fff;
}

.link-button--yahoo {
  background: #f17732;
  border-color: #f17732;
  color: #fff;
}

.link-button:hover {
  border-color: var(--gold);
  transform: translateY(-1px);
}

.rail-panel {
  display: grid;
  gap: 12px;
  padding: 16px;
}

.rail-panel h3 {
  font-size: 16px;
  margin: 0;
}

.rail-cta {
  background: rgba(245, 239, 224, 0.95);
  color: #15171b;
}

.ad-panel {
  background: linear-gradient(135deg, rgba(11, 123, 111, 0.16), rgba(202, 163, 74, 0.12));
}

.ad-box {
  align-items: center;
  border: 1px dashed rgba(245, 239, 224, 0.32);
  border-radius: 8px;
  color: var(--muted);
  display: flex;
  font-size: 13px;
  font-weight: 850;
  justify-content: center;
  min-height: 112px;
}

.ad-box--display {
  align-items: stretch;
  background: rgba(255, 255, 255, 0.04);
  border-style: solid;
  color: inherit;
  display: block;
  min-height: 250px;
  overflow: hidden;
  padding: 0;
  width: 100%;
}

.ad-box--display .adsbygoogle {
  display: block;
  min-height: 250px;
  width: 100%;
}

.toc-list,
.related-list {
  display: grid;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.toc-list a,
.related-list a {
  color: var(--green);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
  text-decoration: none;
}

.collection-card {
  background: var(--surface-soft);
  border: 1px solid #d8ded5;
  border-radius: 8px;
  display: grid;
  gap: 8px;
  padding: 14px;
}

.collection-card strong {
  line-height: 1.45;
}

.collection-card p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

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

.link-card {
  background: #fffefa;
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 8px;
  padding: 16px;
  text-decoration: none;
}

.link-card span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.link-card strong {
  color: var(--green);
  line-height: 1.45;
}

.link-card small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

#links .link-card.has-image {
  background:
    linear-gradient(180deg, rgba(12, 14, 18, 0.16), rgba(9, 10, 13, 0.68)),
    linear-gradient(90deg, rgba(12, 16, 19, 0.42), rgba(12, 16, 19, 0.12)),
    var(--card-image) center / cover;
  border-color: rgba(255, 250, 238, 0.18);
  box-shadow: 0 18px 36px rgba(10, 12, 16, 0.18);
  min-height: 176px;
  overflow: hidden;
  position: relative;
}

#links .link-card.has-image::after {
  background:
    linear-gradient(135deg, rgba(202, 162, 75, 0.12), transparent 48%),
    linear-gradient(90deg, rgba(21, 91, 82, 0.1), transparent 62%),
    linear-gradient(0deg, rgba(255, 250, 238, 0.04), transparent 54%);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

#links .link-card.has-image span,
#links .link-card.has-image strong,
#links .link-card.has-image small {
  position: relative;
  z-index: 1;
}

#links .link-card.has-image span,
#links .link-card.has-image small {
  color: rgba(255, 250, 238, 0.84);
}

#links .link-card.has-image strong {
  color: #fffaf0;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.58);
}

.loading-view,
.error-view {
  padding: 42px clamp(18px, 4vw, 52px);
}

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

  .hero-share-slot {
    justify-self: stretch;
    width: 100%;
  }

  .side-rail {
    position: static;
  }
}

@media (min-width: 1041px) {
  .hero-main {
    grid-column: 1;
    grid-row: 1 / span 2;
  }

  .hero-card {
    align-self: center;
    grid-column: 2;
    grid-row: 1;
    justify-self: center;
    max-width: 460px;
    width: 100%;
  }

  .hero-share-slot {
    grid-column: 2;
    grid-row: 2;
    margin-top: -10px;
  }
}

@media (max-width: 720px) {
  html,
  body {
    overflow-x: hidden;
  }

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

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

  .hero {
    gap: 18px;
    padding: 22px clamp(16px, 4vw, 20px) 24px;
  }

  .hero-card {
    gap: 12px;
    justify-self: center;
    max-width: 380px;
    padding: 14px;
    width: 100%;
  }

  .hero-image {
    aspect-ratio: auto;
    height: clamp(168px, 46vw, 224px);
    object-fit: cover;
  }

  .ad-panel {
    display: none;
  }

  .recommend-box,
  .product-card {
    grid-template-columns: 1fr;
  }

  .compare-grid {
    display: grid;
    grid-auto-columns: minmax(230px, calc(100% - 34px));
    grid-auto-flow: column;
    grid-template-columns: none;
    margin-inline: calc(clamp(20px, 3vw, 30px) * -1);
    max-width: none;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    padding: 2px clamp(20px, 3vw, 30px) 16px;
    scroll-padding-inline: clamp(20px, 3vw, 30px);
    scroll-snap-type: inline mandatory;
    scrollbar-width: none;
    width: calc(100% + (clamp(20px, 3vw, 30px) * 2));
  }

  .compare-grid::-webkit-scrollbar {
    display: none;
  }

  .compare-card {
    align-content: start;
    grid-template-columns: 68px minmax(0, 1fr);
    min-height: 172px;
    width: 100%;
    scroll-snap-align: start;
  }

  .compare-card .stars {
    grid-column: 2;
    justify-self: start;
  }

  .compare-copy p {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
  }

  .feature-grid,
  .link-grid {
    grid-template-columns: 1fr;
  }

  .product-media {
    max-width: 260px;
  }

  .product-title-row {
    display: grid;
  }
}


.guide-route {
  display: grid;
  gap: 10px;
  margin-top: 8px;
}

.route-step {
  align-items: center;
  background: #fffefa;
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 12px;
  grid-template-columns: 38px minmax(0, 1fr);
  padding: 12px;
}

.route-step span {
  background: #11161d;
  border-radius: 999px;
  color: var(--gold);
  display: grid;
  font-size: 13px;
  font-weight: 900;
  height: 32px;
  place-items: center;
  width: 32px;
}

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

.guide-video-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
  margin-top: 18px;
}

.guide-video {
  background: #11161d;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  margin: 0;
  overflow: hidden;
  box-shadow: 0 14px 34px rgba(3, 8, 14, 0.14);
}

.guide-video iframe {
  aspect-ratio: 16 / 9;
  border: 0;
  display: block;
  width: 100%;
}

.guide-video figcaption {
  color: #d8ded5;
  font-size: 13px;
  line-height: 1.6;
  padding: 10px 14px 12px;
}

.guide-section-image {
  background: #fffefa;
  border: 1px solid var(--line);
  border-radius: 8px;
  margin: 18px 0 0;
  overflow: hidden;
}

.guide-section-media-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 18px;
}

.guide-section-media-grid--single {
  grid-template-columns: minmax(0, 1fr);
}

.guide-section-media-grid .guide-section-image {
  margin: 0;
}

.guide-section-image img {
  display: block;
  height: auto;
  width: 100%;
}

.guide-section-image figcaption {
  color: #62676e;
  font-size: 13px;
  line-height: 1.7;
  padding: 10px 14px 12px;
}

.guide-card {
  background: #fffefa;
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 8px;
  overflow: hidden;
  padding: 18px;
}

.guide-card--with-image {
  grid-template-columns: minmax(160px, 0.34fr) minmax(0, 1fr);
  padding: 0;
}

.guide-card-image,
.guide-card-image-link {
  aspect-ratio: 4 / 3;
  height: 100%;
  min-width: 0;
  width: 100%;
}

.guide-card-image {
  display: block;
  object-fit: cover;
  width: 100%;
}

.guide-card-image-link {
  display: block;
}

.guide-card-image-link:focus-visible {
  outline: 3px solid rgba(20, 129, 112, 0.35);
  outline-offset: -3px;
}

.guide-card--affiliate-product {
  grid-template-columns: minmax(150px, 0.28fr) minmax(0, 1fr);
}

.guide-card--affiliate-product:not(.guide-card--with-image) {
  grid-template-columns: 1fr;
}

.guide-card--affiliate-product:not(.guide-card--with-image) .guide-card-body {
  padding: 18px;
}

.guide-card--affiliate-product .guide-card-image,
.guide-card--affiliate-product .guide-card-image-link {
  align-self: center;
  aspect-ratio: 1 / 1;
  height: auto;
  max-height: 190px;
}

.guide-card--affiliate-product .guide-card-image {
  background: #fff;
  object-fit: contain;
  padding: 16px;
}

.guide-card--product-placeholder {
  background: #fffefa;
}

.guide-card-placeholder {
  align-self: stretch;
  background:
    linear-gradient(135deg, rgba(32, 124, 113, 0.2), transparent 46%),
    linear-gradient(180deg, rgba(11, 17, 23, 0.98), rgba(16, 23, 31, 0.92));
  border-right: 1px solid rgba(18, 24, 31, 0.08);
  color: #fffaf0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 190px;
  overflow: hidden;
  padding: 18px;
  position: relative;
}

.guide-card-placeholder::before {
  border: 1px solid rgba(255, 250, 238, 0.18);
  border-radius: 999px;
  bottom: -34px;
  content: "";
  height: 116px;
  position: absolute;
  right: -28px;
  width: 116px;
}

.guide-card-placeholder::after {
  background: rgba(202, 162, 75, 0.84);
  border-radius: 999px;
  bottom: 20px;
  content: "";
  height: 14px;
  position: absolute;
  right: 22px;
  width: 14px;
}

.guide-card-placeholder span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  margin-bottom: 8px;
  position: relative;
  z-index: 1;
}

.guide-card-placeholder strong {
  color: #fffaf0;
  font-size: 18px;
  line-height: 1.35;
  position: relative;
  z-index: 1;
}

.guide-card--diagram {
  align-items: center;
  grid-template-columns: minmax(320px, 0.48fr) minmax(0, 1fr);
}

.guide-card--diagram .guide-card-image {
  align-self: center;
  aspect-ratio: auto;
  background: #fff;
  height: auto;
  max-height: none;
  object-fit: contain;
  padding: 14px;
}

.guide-card--step.guide-card--with-image {
  grid-template-columns: 1fr;
}

.guide-card--step .guide-card-image {
  aspect-ratio: auto;
  background: #11161d;
  border-bottom: 1px solid var(--line);
  height: auto;
  max-height: 420px;
  object-fit: contain;
  padding: 0;
}

.guide-card-body {
  display: grid;
  gap: 10px;
  padding: 18px;
}

.guide-card:not(.guide-card--with-image) .guide-card-body {
  padding: 0;
}

.guide-card-meta {
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  margin: 0;
}

.guide-card h3 {
  font-size: 19px;
}

.guide-card p,
.guide-body {
  color: #3f454c;
  line-height: 1.9;
  white-space: pre-line;
}

.sampling-grid {
  display: grid;
  gap: 16px;
  margin-top: 18px;
}

.sampling-card {
  background: #fffefa;
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 0;
  grid-template-columns: minmax(160px, 0.34fr) minmax(0, 1fr);
  overflow: hidden;
}

.sampling-card-image {
  background:
    linear-gradient(180deg, rgba(12, 14, 18, 0.2), rgba(9, 10, 13, 0.72)),
    var(--sampling-image) center / cover;
  min-height: 100%;
}

.sampling-card-image--empty {
  background:
    radial-gradient(circle at 78% 72%, rgba(202, 162, 75, 0.9) 0 9px, transparent 10px),
    radial-gradient(circle at 76% 72%, transparent 0 42px, rgba(255, 250, 238, 0.16) 43px 44px, transparent 45px),
    linear-gradient(135deg, rgba(32, 124, 113, 0.26), transparent 42%),
    linear-gradient(180deg, #121820, #20232d 58%, #10151c);
  color: #fffaf0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 100%;
  overflow: hidden;
  padding: 18px;
  position: relative;
}

.sampling-card-image--empty::before {
  border: 1px solid rgba(255, 250, 238, 0.16);
  border-radius: 999px;
  bottom: -36px;
  content: "";
  height: 124px;
  position: absolute;
  right: -30px;
  width: 124px;
}

.sampling-card-image--empty span,
.sampling-card-image--empty strong,
.sampling-card-image--empty small {
  position: relative;
  z-index: 1;
}

.sampling-card-image--empty span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  margin-bottom: 8px;
}

.sampling-card-image--empty strong {
  font-size: 19px;
  line-height: 1.28;
}

.sampling-card-image--empty small {
  color: rgba(255, 250, 238, 0.72);
  font-size: 13px;
  font-weight: 800;
  margin-top: 6px;
}

.sampling-card-body {
  display: grid;
  gap: 12px;
  padding: 18px;
}

.sampling-card h3 {
  font-size: 22px;
  line-height: 1.35;
}

.sampling-card p {
  color: #3f454c;
  line-height: 1.8;
  white-space: pre-line;
}

.sampling-label {
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  margin: 0;
  text-transform: uppercase;
}

.sampling-meta {
  color: #5b6269;
  font-size: 14px;
  margin-top: -6px;
}

.sample-source-box {
  background: #eef2ed;
  border: 1px solid #d8ded5;
  border-radius: 8px;
  display: grid;
  gap: 4px;
  padding: 14px;
}

.sample-source-box strong {
  color: #171b21;
  font-size: 18px;
  line-height: 1.4;
}

.sample-source-box span {
  color: #5b6269;
  font-size: 14px;
}

.guide-section-list {
  display: grid;
  gap: 10px;
  list-style: none;
  margin: 16px 0 0;
  padding: 0;
}

.guide-section-list li {
  background: #eef2ed;
  border: 1px solid #d8ded5;
  border-radius: 8px;
  line-height: 1.7;
  padding: 12px 14px;
}

.guide-section-list--nested {
  margin-top: 0;
}

.check-panel {
  background: #f8f1df;
  border-left: 6px solid var(--gold);
}

.guide-cta {
  background: #11161d;
  border-radius: 8px;
  color: var(--text-inverse);
  display: grid;
  gap: 14px;
  padding: 18px;
}

.guide-cta p {
  color: var(--muted-inverse);
  line-height: 1.7;
}

.guide-cta .button-row {
  margin-top: 2px;
}

.hero-card .guide-summary {
  display: grid;
  gap: 12px;
}

.guide-summary strong {
  font-size: 18px;
  line-height: 1.5;
}

.ad-panel {
  background: linear-gradient(135deg, rgba(11, 123, 111, 0.16), rgba(202, 163, 74, 0.12));
}

.ad-box {
  align-items: center;
  border: 1px dashed rgba(245, 239, 224, 0.32);
  border-radius: 8px;
  color: var(--muted);
  display: flex;
  font-size: 13px;
  font-weight: 850;
  justify-content: center;
  min-height: 112px;
}

.ad-box--display {
  align-items: stretch;
  background: rgba(255, 255, 255, 0.04);
  border-style: solid;
  color: inherit;
  display: block;
  min-height: 250px;
  overflow: hidden;
  padding: 0;
  width: 100%;
}

.ad-box--display .adsbygoogle {
  display: block;
  min-height: 250px;
  width: 100%;
}

#links .link-card.has-image {
  background:
    linear-gradient(180deg, rgba(12, 14, 18, 0.14), rgba(9, 10, 13, 0.66)),
    linear-gradient(90deg, rgba(12, 16, 19, 0.38), rgba(12, 16, 19, 0.1)),
    var(--card-image) center / cover;
  border-color: rgba(255, 250, 238, 0.18);
  box-shadow: 0 18px 36px rgba(10, 12, 16, 0.18);
  min-height: 176px;
  overflow: hidden;
  position: relative;
}

#links .link-card.has-image::after {
  background:
    linear-gradient(135deg, rgba(202, 162, 75, 0.12), transparent 48%),
    linear-gradient(90deg, rgba(21, 91, 82, 0.1), transparent 62%),
    linear-gradient(0deg, rgba(255, 250, 238, 0.04), transparent 54%);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

#links .link-card.has-image span,
#links .link-card.has-image strong,
#links .link-card.has-image small {
  position: relative;
  z-index: 1;
}

#links .link-card.has-image span,
#links .link-card.has-image small {
  color: rgba(255, 250, 238, 0.84);
}

#links .link-card.has-image strong {
  color: #fffaf0;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.45);
}

@media (max-width: 760px) {
  .ad-panel {
    display: none;
  }

  .route-step {
    grid-template-columns: 34px minmax(0, 1fr);
  }

  .sampling-card {
    grid-template-columns: 1fr;
  }

  .guide-card--with-image {
    grid-template-columns: 1fr;
  }

  .guide-card-image,
  .guide-card-image-link {
    max-height: 240px;
  }

  .guide-card--diagram .guide-card-image {
    max-height: none;
    padding: 10px;
  }

  .guide-card--step .guide-card-image {
    max-height: none;
  }

  .guide-card--affiliate-product .guide-card-image,
  .guide-card--affiliate-product .guide-card-image-link {
    max-height: 180px;
  }

  .guide-card--affiliate-product .guide-card-image {
    padding: 18px;
  }

  .guide-video-grid {
    gap: 12px;
    grid-template-columns: 1fr;
  }

  .guide-section-media-grid {
    grid-template-columns: 1fr;
  }

  .guide-card-placeholder {
    min-height: 150px;
  }

  .sampling-card-image {
    min-height: 150px;
  }

  #links .link-card.has-image {
    min-height: 148px;
  }
}
