@import url("guide-editorial-shared.css");

/* Herringbone guide — hero uses real Herringbone.webp / Chevron.webp (same assets as product page) */
.guide-page--herringbone .guide-hero-pattern-imgs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
}
.guide-page--herringbone .guide-hero-pattern-cell {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}
.guide-page--herringbone .guide-hero-pattern-imgs img {
  display: block;
  width: 100%;
  height: clamp(104px, 20vw, 138px);
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.guide-page--herringbone .guide-hero-pattern-label {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
}
@media (max-width: 520px) {
  .guide-page--herringbone .guide-hero-pattern-imgs {
    grid-template-columns: 1fr;
  }
}

/* Geometry rail — thumbnails match product photography */
.guide-page--herringbone .hb-geometry-key {
  margin-top: 8px;
  padding: 18px;
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.06);
}
.guide-page--herringbone .hb-key-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.guide-page--herringbone .hb-key-row:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: 0;
}
.guide-page--herringbone .hb-key-thumb {
  flex-shrink: 0;
  width: 80px;
  height: 58px;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.guide-page--herringbone .hb-key-body strong {
  display: block;
  color: var(--text);
  font-size: 0.88rem;
  margin-bottom: 4px;
}
.guide-page--herringbone .hb-key-body span {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.45;
}
