/* ============================================================
   ShinobiKage — homepage.css
   Homepage sections: featured card, section headers
   ============================================================ */

/* ── Home sections ────────────────────────────────────────── */
.sk-home-section {
  margin-bottom: 56px;
}
.sk-home-section--featured {
  margin-top: 32px;
}

.sk-section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
}
.sk-section-header .sk-section-label {
  margin-bottom: 8px;
}
.sk-section-header .sk-section__title {
  margin-bottom: 0;
}

.sk-view-all {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  color: var(--brand-orange);
  text-decoration: none;
  white-space: nowrap;
  padding-bottom: 4px;
  transition: color 160ms ease;
}
.sk-view-all:hover {
  color: var(--brand-orange-light);
}

/* ── Featured card (hero article) ─────────────────────────── */
.sk-featured {
  display: grid;
  grid-template-columns: 1fr;
  background: var(--bg-surface);
  border-radius: 8px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform 220ms ease, box-shadow 220ms ease;
}
.sk-featured:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-card);
}

.sk-featured__thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: linear-gradient(135deg, #1A1A1D, #0F0F11);
}
.sk-featured__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 220ms ease;
}
.sk-featured:hover .sk-featured__thumb img {
  transform: scale(1.04);
}
.sk-featured__thumb-fallback {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #1A1A1D, #0F0F11);
}
.sk-featured__thumb .sk-chip {
  position: absolute;
  top: 12px;
  left: 12px;
}

.sk-featured__body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.sk-featured__title {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.2vw, 40px);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: 1px;
  color: var(--text-strong);
  margin: 0 0 12px;
}

.sk-featured__deck {
  font-size: 17px;
  line-height: 1.55;
  color: var(--text-muted);
  margin: 0 0 16px;
}
.sk-featured:hover .sk-featured__title {
  color: var(--brand-orange-light);
}

@media (min-width: 1024px) {
  .sk-featured {
    grid-template-columns: 3fr 2fr;
  }
  .sk-featured__thumb {
    aspect-ratio: auto;
    min-height: 320px;
  }
}
