/* Breadcrumb */
.ct-breadcrumb { font-size: 0.85rem; color: #888; margin-bottom: 20px; }
.ct-breadcrumb a { color: var(--ct-accent); text-decoration: none; }
.ct-breadcrumb a:hover { text-decoration: underline; }
.ct-breadcrumb span { color: #999; }

/* Page title */
.ct-page-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 25px;
}

/* Grid de películas de la saga */
.ct-saga-peliculas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 20px;
}

.ct-saga-pelicula-card {
    text-align: center;
    text-decoration: none;
    color: inherit;
    display: block;
    transition: transform 0.2s;
}

.ct-saga-pelicula-card:hover {
    transform: translateY(-4px);
}

.ct-saga-pelicula-card img {
    width: 100%;
    aspect-ratio: 2/3;
    object-fit: cover;
    border-radius: 6px;
    display: block;
    box-shadow: 0 3px 10px rgba(0,0,0,0.4);
    transition: box-shadow 0.2s;
}

.ct-saga-pelicula-card:hover img {
    box-shadow: 0 5px 18px rgba(0,0,0,0.6);
}

.ct-saga-pelicula-no-portada {
    width: 100%;
    aspect-ratio: 2/3;
    border-radius: 6px;
    background: #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #888;
    font-size: 0.85rem;
    box-shadow: 0 3px 10px rgba(0,0,0,0.4);
}

.ct-saga-pelicula-titulo {
    font-size: 0.85rem;
    font-weight: 600;
    color: #ccc;
    display: block;
    margin-top: 10px;
    line-height: 1.3;
}

.ct-saga-pelicula-card:hover .ct-saga-pelicula-titulo {
    color: var(--ct-accent);
}

/* Responsive */
@media (max-width: 768px) {
    .ct-saga-peliculas-grid { grid-template-columns: repeat(auto-fill, minmax(130px, 1fr)); gap: 14px; }
}
