/* ============================================================
   Café Stella — estilos específicos de ficha
   ============================================================ */

.cafe-stella-art {
  background-image:
    url('../../assets/cafe-stella-hero.webp'),
    linear-gradient(135deg, #1a1005, #0a1420);
  background-size: cover;
  background-position: center top; /* tablet: sin recorte; desktop: muestra caras, oculta logo */
}

/* Reutiliza los estilos compartidos de mml.css (cover, géneros, compat, etc.)
   que ya viven en proyecto.css — solo se sobreescribe lo específico aquí. */

/* Tagline */
.sinopsis-tagline {
  margin-top: 20px;
  font-family: 'Cormorant', Georgia, serif;
  font-size: 1.08rem;
  font-style: italic;
  color: var(--text-dim);
  border-left: 2px solid var(--red);
  padding-left: 14px;
  clear: both;
}

/* Géneros */
.generos-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
  clear: both;
}

.genero-tag {
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.05);
  border: 1px solid var(--line-mid);
  color: var(--text-dim);
}

.genero-tag.adult {
  background: var(--red-subtle);
  border-color: var(--red-border);
  color: var(--red-bright);
}

/* Compatibilidad */
.compat-list {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
}

.compat-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
}
.compat-item:last-child { border-bottom: 0; }

.compat-item strong {
  display: block;
  font-size: .9rem;
  margin-bottom: 4px;
}

.compat-item p {
  margin: 0;
  font-size: .86rem;
  color: var(--text-dim);
  line-height: 1.55;
}

.compat-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .78rem;
  font-weight: 900;
  margin-top: 1px;
  background: rgba(76,186,130,.12);
  color: #4cba82;
  border: 1px solid rgba(76,186,130,.22);
}

.compat-warning .compat-icon {
  background: rgba(212,160,72,.12);
  color: #d4a048;
  border-color: rgba(212,160,72,.22);
}
.compat-warning p { color: var(--text-muted); }

/* Badge +18 */
.adult-badge {
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .06em;
  padding: 3px 10px;
  border-radius: 999px;
  background: var(--red-subtle);
  border: 1px solid var(--red-border);
  color: var(--red-bright);
}

.meta-adult {
  background: var(--red-subtle) !important;
  border-color: var(--red-border) !important;
  color: var(--red-bright) !important;
}

/* Cover figure */
.cover-figure {
  float: right;
  width: 180px;
  margin: 0 0 20px 24px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--line);
}

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

.cover-figure figcaption {
  font-size: .72rem;
  color: var(--text-muted);
  padding: 8px 10px;
  text-align: center;
  line-height: 1.4;
  background: var(--surface);
}

.cover-figure.cover-missing { display: none; }

/* Responsive */
@media (max-width: 600px) {
  .cover-figure {
    float: none;
    width: 100%;
    max-width: 220px;
    margin: 0 auto 20px;
  }
}
