:root {
  --orange: #ff850f;
  --orange-soft: #fff0df;
  --orange-line: #ffd8ad;
  --ink: #161616;
  --muted: #716d68;
  --soft: #fffaf3;
  --paper: #fffdf9;
  --line: #eadfd3;
  --card: #ffffff;
  --shadow: 0 16px 42px rgba(42, 31, 18, 0.1);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  letter-spacing: 0;
}

.site-header,
main,
.site-footer {
  max-width: 100%;
  overflow-x: clip;
}

img,
iframe {
  max-width: 100%;
}

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

button,
input {
  font: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 330px minmax(420px, 1fr) minmax(250px, 320px);
  gap: 20px;
  align-items: center;
  min-height: 92px;
  padding: 16px clamp(22px, 4vw, 72px);
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 3px 22px rgba(46, 35, 24, 0.06);
  backdrop-filter: blur(16px);
}

.brand img {
  display: block;
  width: min(326px, 100%);
  height: auto;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: 22px;
  align-items: center;
  white-space: nowrap;
}

.main-nav a {
  position: relative;
  color: #7b7772;
  padding: 12px 0;
  font-size: 0.98rem;
  font-weight: 800;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--orange);
}

.main-nav a.active::after,
.main-nav a:hover::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 3px;
  border-radius: 999px;
  background: var(--orange);
}

.header-search {
  position: relative;
}

.header-search::after {
  content: "⌕";
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: #242424;
  font-size: 1.35rem;
}

.header-search input {
  width: 100%;
  min-height: 52px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fffbf6;
  color: var(--ink);
  padding: 13px 48px 13px 20px;
  outline: none;
}

.header-search input:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(255, 133, 15, 0.12);
}

.header-search input::placeholder {
  color: #9a928a;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border: 0;
  border-radius: 999px;
  padding: 10px 18px;
  background: var(--orange);
  color: #fff;
  font-weight: 900;
  box-shadow: 0 10px 22px rgba(255, 133, 15, 0.24);
  cursor: pointer;
}

.button.secondary {
  background: #fff;
  color: var(--orange);
  border: 1px solid var(--orange-line);
  box-shadow: none;
}

.menu-toggle {
  display: none;
  justify-self: end;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  padding: 9px 13px;
  font-weight: 800;
}

.hero {
  position: relative;
  min-height: 390px;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: #23313a;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(15, 24, 30, 0.72), rgba(15, 24, 30, 0.36) 42%, rgba(15, 24, 30, 0.08)),
    var(--hero-image) 62% center / cover;
}

.hero-inner {
  position: relative;
  width: min(1740px, calc(100% - 140px));
  margin: 0 auto;
  padding: 48px 0 56px;
}

.hero-youtube-link {
  position: absolute;
  top: 24px;
  right: 0;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  border-radius: 999px;
  padding: 8px 14px;
  background: var(--orange);
  color: #fff;
  font-size: 0.88rem;
  font-weight: 900;
  box-shadow: 0 10px 22px rgba(255, 133, 15, 0.24);
}

.hero h1 {
  max-width: 740px;
  margin: 0;
  color: #fff;
  font-size: clamp(3.3rem, 5.2vw, 5.9rem);
  line-height: 1.05;
  letter-spacing: 0;
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.18);
}

.hero-copy {
  max-width: 620px;
  margin: 22px 0 22px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.2rem;
  font-weight: 650;
}

.section {
  width: min(1740px, calc(100% - 140px));
  margin: 0 auto;
  padding: 24px 0;
}

.featured-section {
  padding-top: 18px;
  padding-bottom: 22px;
}

.feature-grid {
  display: grid;
  grid-template-columns: 1.55fr 1fr 1fr;
  gap: 24px;
}

.story-card,
.guide-card,
.preview-card,
.toc-panel,
.related-panel,
.guide-list-card,
.tool-panel,
.article-shell,
.sidebar-panel {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.story-card {
  display: grid;
  grid-template-columns: 44% 1fr;
  min-height: 292px;
}

.story-card .media,
.guide-card .media {
  min-height: 100%;
}

.story-card img,
.guide-card img,
.guide-list-card img,
.related-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: var(--orange-soft);
}

.story-body,
.guide-body,
.list-body {
  padding: 26px 30px;
}

.story-body h3 {
  margin: 0 0 14px;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.04;
}

.story-body p,
.guide-body p,
.list-body p,
.preview-card p {
  margin: 0;
  color: var(--muted);
}

.pill-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 22px 0 24px;
}

.topic-pill,
.chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #f7f4f0;
  color: #807970;
  padding: 8px 15px;
  font-size: 0.92rem;
  font-weight: 850;
}

.topic-pill.active,
.chip.active {
  border-color: var(--orange-line);
  background: var(--orange-soft);
  color: var(--orange);
}

.read-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--orange);
  font-weight: 950;
}

.guide-card {
  display: grid;
  grid-template-rows: 142px 1fr;
  min-height: 292px;
}

.guide-body {
  padding: 18px 22px 20px;
}

.guide-body h3 {
  margin: 0 0 8px;
  font-size: 1.45rem;
  line-height: 1.08;
}

.guide-body .meta-line {
  display: block;
  margin-bottom: 10px;
}

.finder-band {
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, #fffaf4, #fffdf9);
}

.finder-head {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 28px;
  align-items: center;
  margin-bottom: 18px;
}

.finder-title {
  display: flex;
  align-items: center;
  gap: 18px;
}

.finder-title::before {
  content: "";
  width: 4px;
  height: 36px;
  border-radius: 999px;
  background: var(--orange);
}

.finder-title h2 {
  margin: 0;
  font-size: 1.9rem;
}

.chip-row {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.chip {
  min-width: 150px;
  gap: 9px;
  background: #fff;
  box-shadow: 0 6px 16px rgba(42, 31, 18, 0.05);
}

.chip .icon {
  font-size: 1.25rem;
}

.view-all {
  color: var(--orange);
  font-weight: 950;
  white-space: nowrap;
}

.guide-preview-layout {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr) 390px;
  gap: 28px;
  align-items: start;
}

.toc-panel,
.related-panel {
  padding: 24px;
}

.toc-panel h3,
.related-panel h3,
.preview-card h2 {
  margin: 0 0 16px;
}

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

.toc-list a,
.toc-list span {
  display: block;
  border-radius: var(--radius);
  color: #5e5b57;
  padding: 9px 12px;
  font-weight: 750;
}

.toc-list li:first-child a,
.toc-list li:first-child span {
  background: var(--orange-soft);
  color: var(--orange);
}

.preview-card {
  padding: 28px 32px 34px;
}

.preview-card h2 {
  font-size: clamp(2.15rem, 3vw, 3.35rem);
  line-height: 1.04;
}

.preview-content {
  display: grid;
  grid-template-columns: 1fr 44%;
  gap: 18px;
  align-items: stretch;
  margin: 20px 0 22px;
}

.important-box {
  border: 1px solid var(--orange-line);
  border-radius: var(--radius);
  padding: 22px;
  background: #fffdf9;
}

.important-box h3 {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 16px;
  color: var(--orange);
}

.important-box h3::before {
  content: "★";
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: var(--orange);
  color: #fff;
  font-size: 1rem;
}

.important-box ul {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
  color: #615d58;
}

.important-box li::before {
  content: "✓";
  margin-right: 10px;
  color: #161616;
  font-weight: 900;
}

.preview-image {
  min-height: 170px;
  border-radius: var(--radius);
  object-fit: cover;
}

.preview-card h3.section-title {
  margin: 18px 0 8px;
  font-size: 1.75rem;
}

.related-list {
  gap: 16px;
}

.related-item {
  display: grid;
  grid-template-columns: 74px 1fr auto;
  gap: 13px;
  align-items: center;
}

.related-item img {
  height: 54px;
  border-radius: 6px;
}

.related-item strong,
.related-item span {
  display: block;
}

.related-item span {
  color: var(--muted);
  font-size: 0.9rem;
}

.related-item .arrow {
  color: var(--orange);
  font-size: 1.6rem;
}

.related-panel .button {
  width: 100%;
  margin-top: 22px;
}

.section-head {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  align-items: end;
  margin-bottom: 24px;
}

.section-head h2,
.article-title {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1;
}

.section-head p {
  max-width: 600px;
  margin: 10px 0 0;
  color: var(--muted);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 12px;
  color: var(--orange);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.guide-library {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 28px;
  align-items: start;
}

.library-tools,
.article-sidebar {
  position: sticky;
  top: 112px;
  display: grid;
  gap: 16px;
}

.tool-panel,
.sidebar-panel {
  padding: 18px;
}

.tool-panel h3,
.sidebar-panel h3 {
  margin: 0 0 12px;
}

.tool-panel input {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 11px 14px;
  outline: none;
}

.filter-list {
  display: grid;
  gap: 7px;
}

.filter-list a,
.filter-list button {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  border: 0;
  border-radius: var(--radius);
  background: transparent;
  color: var(--ink);
  padding: 9px 10px;
  cursor: pointer;
  text-align: left;
}

.filter-list a.active,
.filter-list a:hover,
.filter-list button.active,
.filter-list button:hover {
  background: var(--orange-soft);
}

.mobile-library-tools {
  display: none;
}

.mobile-library-tools input {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  padding: 11px 14px;
  outline: none;
}

.mobile-library-tools input:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(255, 133, 15, 0.12);
}

.mobile-filter-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-width: 100%;
  margin: 10px 0 0;
  padding: 0;
  overflow: visible;
  scrollbar-width: none;
}

.mobile-filter-list::-webkit-scrollbar {
  display: none;
}

.mobile-filter-list a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  padding: 8px 12px;
  font-size: 0.92rem;
  font-weight: 850;
  white-space: normal;
}

.mobile-filter-list a.active {
  border-color: var(--orange-line);
  background: var(--orange-soft);
  color: var(--orange);
}

.mobile-filter-list strong {
  color: var(--muted);
  font-size: 0.82rem;
}

.guide-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.guide-list-card {
  display: grid;
  grid-template-columns: 160px 1fr;
  min-height: 182px;
  min-width: 0;
}

.guide-list-card[hidden] {
  display: none;
}

.list-body {
  display: grid;
  align-content: start;
  gap: 10px;
  min-width: 0;
  padding: 18px;
}

.list-body h3 {
  font-size: 1.08rem;
  margin: 0;
  white-space: normal;
  overflow-wrap: anywhere;
}

.list-body p,
.meta-line {
  white-space: normal;
  word-break: break-word;
  overflow-wrap: anywhere;
}

.meta-line {
  color: var(--orange);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.empty-state,
.loading-state {
  min-height: 55vh;
  display: grid;
  place-items: center;
  color: var(--muted);
}

.empty-state[hidden],
.loading-state[hidden] {
  display: none;
}

.article-hero {
  background: #fff8ef;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
}

.guide-topbar {
  position: sticky;
  top: 92px;
  z-index: 12;
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 12px clamp(22px, 4vw, 72px);
  background: rgba(255, 253, 249, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.guide-topbar a,
.back-button {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  padding: 8px 14px;
  font-weight: 850;
  cursor: pointer;
}

.back-button {
  color: #fff;
  background: var(--orange);
  border-color: var(--orange);
}

.guide-topbar a:hover {
  border-color: var(--orange-line);
  color: var(--orange);
  background: var(--orange-soft);
}

.article-hero-inner {
  width: min(1340px, calc(100% - 80px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr minmax(300px, 470px);
  gap: 42px;
  align-items: center;
  padding: 48px 0;
}

.article-hero img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--line);
}

.article-title {
  color: var(--ink);
  margin: 12px 0 18px;
}

.article-summary {
  color: var(--muted);
  font-size: 1.1rem;
}

.article-meta {
  margin: -6px 0 14px;
  color: var(--orange);
  font-size: 0.88rem;
  font-weight: 900;
}

.article-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.article-layout {
  width: min(1340px, calc(100% - 80px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 28px;
  padding: 42px 0 78px;
}

.article-shell {
  padding: clamp(22px, 4vw, 54px);
}

.article-written-date {
  margin: 0 0 24px;
  color: var(--orange);
  font-size: 0.95rem;
  font-weight: 900;
}

.article-content {
  font-size: 1.06rem;
}

.article-content p,
.article-content ul,
.article-content ol,
.article-content figure {
  margin-top: 0;
  margin-bottom: 1.25em;
}

.article-content h2,
.article-content h3 {
  margin-top: 1.6em;
  line-height: 1.08;
}

.article-content a {
  color: var(--orange);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.article-content img {
  display: block;
  height: auto;
  border-radius: var(--radius);
  margin: 18px auto;
}

.article-content iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  border: 0;
  border-radius: var(--radius);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 34px clamp(18px, 4vw, 54px);
  background: #171412;
  color: rgba(255, 255, 255, 0.72);
}

.site-footer img {
  width: 230px;
  display: block;
  margin-bottom: 10px;
}

.site-footer p {
  margin: 0;
}

.site-footer nav {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-content: start;
}

.site-footer a:hover {
  color: var(--orange);
}

@media (max-width: 1380px) {
  .site-header {
    grid-template-columns: 300px 1fr minmax(230px, 290px);
  }

  .guide-topbar {
    top: 72px;
    overflow-x: auto;
    padding: 10px 18px;
  }

  .main-nav {
    gap: 16px;
  }

  .section,
  .hero-inner {
    width: min(1280px, calc(100% - 60px));
  }

  .guide-preview-layout {
    grid-template-columns: 250px minmax(0, 1fr) 330px;
    gap: 20px;
  }
}

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

  .menu-toggle {
    display: inline-flex;
  }

  .main-nav,
  .header-search {
    display: none;
    grid-column: 1 / -1;
  }

  .site-header.nav-open .main-nav,
  .site-header.nav-open .header-search {
    display: flex;
  }

  .site-header.nav-open .header-search {
    display: block;
  }

  .main-nav {
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .feature-grid,
  .guide-preview-layout,
  .guide-library,
  .article-layout,
  .article-hero-inner,
  .preview-content {
    grid-template-columns: 1fr;
  }

  .library-tools,
  .article-sidebar {
    position: static;
  }
}

@media (max-width: 760px) {
  .site-header {
    min-height: 64px;
    gap: 10px;
    padding: 10px 14px;
  }

  .brand img {
    max-width: min(215px, 58vw);
  }

  .menu-toggle {
    min-height: 40px;
    padding: 7px 12px;
    font-size: 0.95rem;
  }

  .site-header.nav-open .main-nav {
    gap: 8px;
  }

  .site-header.nav-open .main-nav a {
    min-height: 38px;
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 7px 11px;
    background: #fff;
  }

  .site-header.nav-open .main-nav a.active::after,
  .site-header.nav-open .main-nav a:hover::after {
    display: none;
  }

  .header-search input {
    min-height: 46px;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .hero {
    min-height: 390px;
  }

  .hero::before {
    background:
      linear-gradient(90deg, rgba(15, 24, 30, 0.78), rgba(15, 24, 30, 0.42)),
      var(--hero-image) 68% center / cover;
  }

  .hero-inner,
  .section,
  .article-layout,
  .article-hero-inner {
    width: calc(100% - 28px);
  }

  .hero-inner {
    padding: 62px 0 38px;
  }

  .hero h1 {
    font-size: clamp(2.35rem, 12vw, 3.5rem);
  }

  .hero-copy {
    margin: 16px 0 18px;
    font-size: 1rem;
  }

  .hero-youtube-link {
    top: 16px;
    right: 0;
    min-height: 34px;
    padding: 7px 12px;
    font-size: 0.78rem;
  }

  .feature-grid,
  .guide-list {
    gap: 14px;
  }

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

  .story-body,
  .guide-body,
  .list-body,
  .preview-card,
  .toc-panel,
  .related-panel,
  .tool-panel,
  .sidebar-panel {
    padding: 16px;
  }

  .story-body h3 {
    font-size: clamp(1.75rem, 9vw, 2.35rem);
  }

  .guide-card img,
  .story-card img {
    aspect-ratio: 16 / 9;
  }

  .section {
    padding: 18px 0;
  }

  .section-head {
    display: grid;
    gap: 8px;
    margin-bottom: 14px;
  }

  .section-head h2,
  .article-title {
    font-size: clamp(2rem, 11vw, 2.75rem);
    line-height: 0.98;
  }

  .section-head p {
    margin-top: 0;
    font-size: 0.98rem;
  }

  .eyebrow {
    margin-bottom: 8px;
    font-size: 0.72rem;
  }

  .guide-library {
    gap: 0;
    max-width: 100%;
    min-width: 0;
  }

  .library-tools {
    display: none;
  }

  .mobile-library-tools {
    display: block;
    margin-bottom: 12px;
  }

  .mobile-library-tools input {
    min-height: 44px;
  }

  .guide-list {
    grid-template-columns: 1fr;
    gap: 10px;
    max-width: 100%;
    min-width: 0;
  }

  .guide-list-card {
    grid-template-columns: clamp(92px, 18vw, 128px) minmax(0, 1fr);
    max-width: 100%;
    min-height: 126px;
    overflow: hidden;
  }

  .guide-list-card img {
    width: 100%;
    height: 100%;
    min-height: 126px;
    object-fit: cover;
  }

  .list-body {
    gap: 8px;
    width: 100%;
    max-width: 100%;
    overflow: visible;
    padding: 14px;
  }

  .list-body > * {
    max-width: 100%;
    min-width: 0;
  }

  .list-body h3 {
    font-size: 1rem;
    line-height: 1.14;
  }

  .list-body p {
    display: block;
    overflow: visible;
    font-size: 0.92rem;
    line-height: 1.35;
  }

  .meta-line {
    font-size: 0.72rem;
  }

  .finder-head {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .chip-row {
    justify-content: flex-start;
    flex-wrap: nowrap;
    max-width: 100%;
    margin: 0;
    padding: 0 0 4px;
    overflow-x: auto;
    overflow-y: hidden;
  }

  .chip {
    min-width: auto;
    white-space: nowrap;
  }

  .preview-content,
  .article-layout,
  .article-hero-inner {
    gap: 18px;
  }

  .article-hero-inner {
    padding: 28px 0;
  }

  .article-layout {
    padding: 22px 0 44px;
  }

  .article-shell {
    padding: 18px;
  }

  .article-content {
    font-size: 1rem;
  }

  .guide-topbar {
    top: 64px;
    padding: 8px 14px;
  }

  .site-footer {
    display: grid;
    padding: 28px 14px;
  }

  .site-footer img {
    width: 190px;
  }
}

@media (max-width: 420px) {
  .brand img {
    max-width: min(190px, 55vw);
  }

  .guide-list-card {
    grid-template-columns: 88px minmax(0, 1fr);
  }

  .guide-list-card img {
    min-height: 118px;
  }

  .list-body {
    padding: 10px;
  }
}
