/**
 * Static Unscarred brand imagery: thumbnails, hero panels, card art.
 * No JS. Use <img> or background-image with /assets/unscarred-visual/slide-NN.webp
 */

.brand-hero-panel {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.45);
  background: rgba(0, 0, 0, 0.25);
}
.brand-hero-panel img {
  display: block;
  width: 100%;
  height: auto;
}

/* Home hero: optional side column (desktop) */
.hero-wrap {
  max-width: 1120px;
}
.index-hero-visual {
  display: none;
}
@media (min-width: 1100px) {
  .hero-wrap {
    display: grid;
    grid-template-columns: minmax(0, 1fr) min(320px, 32vw);
    gap: 44px;
    align-items: center;
  }
  .hero-wrap .hero-content {
    max-width: none;
    padding-left: 0;
    padding-right: 0;
  }
  .index-hero-visual {
    display: block;
  }
  .index-hero-visual .brand-hero-panel {
    opacity: 0.95;
  }
}
/* Hero visual sits outside .hero-content; keep visible (hero copy resets .anim inside column) */
.index-hero-visual.anim {
  opacity: 1;
  transform: none;
  animation: none;
}

/* Blog hub: three thumbnails under hero */
.brand-blog-thumb-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  max-width: 720px;
  margin: 0 auto;
  padding: 0 24px 32px;
}
@media (max-width: 560px) {
  .brand-blog-thumb-row {
    grid-template-columns: 1fr 1fr;
  }
}
.brand-blog-thumb-row figure {
  margin: 0;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.2);
}
.brand-blog-thumb-row img {
  display: block;
  width: 100%;
  height: auto;
}

/* Optional: small horizontal strip (few images only) — use sparingly */
.brand-mini-strip {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 10px 0 4px;
  -webkit-overflow-scrolling: touch;
}
.brand-mini-strip figure {
  flex: 0 0 auto;
  width: min(160px, 42vw);
  margin: 0;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.brand-mini-strip img {
  display: block;
  width: 100%;
  height: auto;
}
