/* ============================================================
   imdb-card.css
   IMDB önizleme kartı için
   base.njk'a ekle: <link rel="stylesheet" href="{{ '/assets/css/imdb-card.css' | url }}" />
   ============================================================ */

/* ── Temel kart ── */
.imdb-card {
  display: inline-flex;
  align-items: stretch;
  gap: 0;
  text-decoration: none;
  color: inherit;
  border: 1px solid var(--border-subtle, #222);
  border-radius: 8px;
  background: var(--surface-1, #111);
  overflow: hidden;
  transition: background 0.15s, transform 0.2s, box-shadow 0.2s;
  width: 100%;
  max-width: 540px;
}

.imdb-card:hover {
  background: var(--surface-2, #1a1a1a);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* ── Poster ── */
.imdb-card__poster {
  flex-shrink: 0;
  width: 100px;
  aspect-ratio: 2 / 3;
  background: #000;
  overflow: hidden;
}

.imdb-card__poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* ── Body ── */
.imdb-card__body {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  padding: 0.75rem 1rem;
  min-width: 0;
  flex: 1;
  justify-content: center;
}

.imdb-card__domain {
  font-size: 0.7rem;
  color: var(--text-muted, #888);
  letter-spacing: 0.5px;
}

.imdb-card__title {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-heading, #d8d8d8);
  margin: 0;
  line-height: 1.4;
}

.imdb-card__rating {
  display: inline-block;
  font-size: 0.8rem;
  color: var(--accent, #38bdf8);
  margin-left: 0.3rem;
  font-weight: 700;
}

.imdb-card__genres {
  font-size: 0.75rem;
  color: var(--text-dim, #555);
}

.imdb-card__runtime {
  font-size: 0.72rem;
  color: var(--text-muted, #888);
}