/* Hide tags and description subtitle on individual pages — kept in frontmatter for taxonomy/filtering and SEO */
body:not(.list) .post-tags,
body:not(.list) .post-description {
  display: none;
}

/* Search icon in nav */
.wd-nav__link svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  display: block;
}

/* Show thumbnails on tag/filter list pages */
.tag-entry .entry-cover {
  display: block;
}

/* Match list page background on single pages (My Gear, About Me, etc.) */
body:not(.list) {
  background: var(--code-bg);
}

/* Center home page title and description */
.home-info {
  text-align: center;
}

/* Prominent welcome title */
.home-info .entry-header h1 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--wd-brand-blue);
  line-height: 1.15;
}

/* Tighten home page spacing */
.first-entry {
  min-height: unset;
  margin-bottom: var(--gap);
}

.main {
  padding-top: 12px;
}
