/* SpeakOne Image Styles */
.hero-poster {
  position: relative;
  width: 320px;
  height: 520px;
  border-radius: 36px;
  overflow: hidden;
  box-shadow: 15px 25px 50px rgba(40, 42, 32, 0.25), 0 0 0 1px rgba(0,0,0,0.1);
  background: #191a17;
}

.hero-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-poster-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(16, 17, 15, 0.2) 0%, rgba(16, 17, 15, 0.85) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  color: var(--paper);
}

.hero-poster-overlay h4 {
  font: 700 18px 'Manrope', sans-serif;
  margin: 0 0 6px;
  color: var(--lime);
}

.hero-poster-overlay p {
  font-size: 12px;
  line-height: 1.6;
  color: #d8d9d0;
  margin: 0;
}

/* Feature Image Card */
.image-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 32px;
}

.image-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: #191a17;
}

.image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.image-card:hover img {
  transform: scale(1.05);
}

.image-card-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(16, 17, 15, 0.75);
  backdrop-filter: blur(8px);
  color: var(--lime);
  font: 500 10px 'DM Mono', monospace;
  padding: 4px 10px;
  border-radius: 20px;
}

.image-card-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px;
  background: linear-gradient(180deg, transparent 0%, rgba(16, 17, 15, 0.9) 100%);
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
}

@media (max-width: 760px) {
  .hero-poster {
    width: 280px;
    height: 440px;
  }
  .image-card-grid {
    grid-template-columns: 1fr;
  }
}
