/* ──────────────────────────────────────────────
   OTROS RELEASES — Singles & special releases page
   Extends css/landing.css
   ────────────────────────────────────────────── */

/* ── page-hero ── */
.page-hero {
  position: relative;
  /* Taller than the shared clamp(280px, 38vh, 440px) other hero pages use —
     this page's title is two lines ("Otros" / "Releases", split by a <br>)
     instead of one, and since the hero body is bottom-anchored
     (align-items: flex-end below), the extra line needs extra box height or
     it eats into the breathing room above the eyebrow that every other
     hero page has. */
  height: clamp(360px, 46vh, 520px);
  overflow: hidden;
  display: flex; align-items: flex-end;
  background: var(--bg);
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg,
    color-mix(in oklab, var(--blue) 12%, transparent) 0%,
    transparent 60%
  );
}
.page-hero-body {
  position: relative; z-index: 1;
  width: 100%; padding: 0 0 52px;
}
.page-hero-body .wrap { display: flex; flex-direction: column; gap: 10px; }
.page-hero-body .eyebrow { color: var(--blue-bright); }
.page-hero-body h1 { font-size: clamp(40px, 7vw, 80px); line-height: 1; margin: 0; }
.page-hero-sub {
  font-family: var(--mono); font-size: 13px; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--muted); margin-top: 4px;
}

/* ── single / release cards ── */
.single-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 22px; }
.single-card {
  display: flex; flex-direction: column;
  border: 1px solid var(--line); border-radius: 16px; overflow: hidden;
  background: var(--card); transition: border-color .2s, transform .2s;
}
.single-card:hover { border-color: var(--blue); transform: translateY(-3px); box-shadow: 0 20px 48px -20px var(--blue-glow); }
.single-card-cover { aspect-ratio: 1; overflow: hidden; }
.single-card-cover img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.single-card:hover .single-card-cover img { transform: scale(1.04); }
.single-card-cover .ph { width: 100%; height: 100%; min-height: 200px; aspect-ratio: 1; }
.single-card-body { padding: 22px; flex: 1; display: flex; flex-direction: column; gap: 8px; }
.single-card-kind { font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--blue-bright); }
.single-card-title { font-family: var(--serif); font-size: 32px; font-style: italic; line-height: 1.1; }
.single-card-sub { font-size: 14px; color: var(--muted); font-weight: 300; flex: 1; }
.single-card-links { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 6px; }
.single-card-links .btn { margin: 0; }

/* ── coming soon placeholder cards ── */
.coming-soon-card {
  border: 1px dashed var(--line-2); border-radius: 16px; padding: 56px 40px;
  text-align: center; display: flex; flex-direction: column; align-items: center; gap: 16px;
  transition: border-color .2s;
}
.coming-soon-card:hover { border-color: color-mix(in oklab, var(--blue) 40%, transparent); }
.coming-soon-label {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--faint);
}
.coming-soon-title { font-family: var(--serif); font-size: 36px; font-style: italic; color: var(--ink); }
.coming-soon-sub { color: var(--muted); font-size: 16px; max-width: 340px; }

@media (max-width: 760px) { .single-grid { grid-template-columns: 1fr; } }
