/* 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; }

/* Ficha */
.ct-ficha {
    display: flex;
    gap: 30px;
    background: #1a1a1a;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.5);
    padding: 25px;
    margin-bottom: 30px;
}

.ct-ficha-foto {
    flex-shrink: 0;
    width: 220px;
}

.ct-ficha-foto img {
    width: 100%;
    border-radius: 6px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    display: block;
}

.ct-ficha-no-foto {
    width: 100%;
    aspect-ratio: 3/4;
    background: var(--ct-primary);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ct-ficha-no-foto svg {
    width: 60px;
    height: 60px;
    color: #ccc;
}

.ct-ficha-info { flex: 1; min-width: 0; }

.ct-btn-editar {
    display: inline-block;
    background: #333;
    color: #fff;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 4px;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.2s;
    flex-shrink: 0;
}

.ct-btn-editar:hover { background: var(--ct-accent); }

.ct-ficha-titulo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 10px;
    line-height: 1.2;
}

/* Roles */
.ct-ficha-roles {
    display: flex;
    gap: 8px;
    margin-bottom: 18px;
}

.ct-role {
    font-size: 0.8rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 12px;
}

.ct-role-director { background: #2a2200; color: #f5c518; }
.ct-role-actor { background: #2a2a2a; color: #7ab3ff; }

/* Dato con icono (fecha nacimiento) */
.ct-dato-con-icono {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
    color: #999;
    font-size: 0.9rem;
}

.ct-dato-con-icono svg {
    width: 18px;
    height: 18px;
    color: #aaa;
    flex-shrink: 0;
}

/* Bio */
.ct-ficha-bio {
    margin-bottom: 20px;
    padding-bottom: 18px;
    border-bottom: 1px solid #2a2a2a;
}

.ct-bio-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
}

.ct-bio-header svg {
    width: 18px;
    height: 18px;
    color: #aaa;
    flex-shrink: 0;
}

.ct-bio-header h3 {
    font-size: 0.95rem;
    font-weight: 700;
    color: #aaa;
    margin: 0;
}

.ct-ficha-bio p {
    font-size: 0.9rem;
    color: #999;
    line-height: 1.7;
    margin: 0;
}

/* Redes sociales */
.ct-ficha-redes {
    padding-top: 0;
}

.ct-redes-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.ct-redes-header svg {
    width: 18px;
    height: 18px;
    color: #aaa;
    flex-shrink: 0;
}

.ct-redes-header h3 {
    font-size: 0.95rem;
    font-weight: 700;
    color: #aaa;
    margin: 0;
}

.ct-redes-lista {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.ct-red {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: #333;
    color: #fff;
    font-size: 0.82rem;
    font-weight: 600;
    padding: 7px 14px;
    border-radius: 6px;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s;
}

.ct-red:hover {
    background: var(--ct-accent);
    transform: translateY(-1px);
}

.ct-red svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.ct-red span {
    line-height: 1;
}

/* Section title */
.ct-section-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 15px;
    padding-bottom: 8px;
    border-bottom: 3px solid var(--ct-accent);
    display: inline-block;
}

/* Filmografía */
.ct-filmografia {
    background: #1a1a1a;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.5);
    padding: 25px;
    margin-bottom: 30px;
}

.ct-movie-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 18px;
}

.ct-movie-card {
    background: #1a1a1a;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.4);
    transition: transform 0.2s, box-shadow 0.2s;
    text-decoration: none;
    color: inherit;
    display: block;
}

.ct-movie-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.6);
}

.ct-movie-card img {
    width: 100%;
    aspect-ratio: 2/3;
    object-fit: cover;
    display: block;
}

.ct-movie-no-portada {
    width: 100%;
    aspect-ratio: 2/3;
    background: var(--ct-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ct-light);
    font-size: 0.85rem;
}

.ct-movie-info { padding: 10px; }

.ct-movie-title {
    font-size: 0.82rem;
    font-weight: 600;
    color: #eee;
    line-height: 1.3;
    margin-bottom: 4px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.ct-movie-year { font-size: 0.75rem; color: #888; }

/* Responsive */
@media (max-width: 768px) {
    .ct-ficha { flex-direction: column; }
    .ct-ficha-foto { width: 100%; max-width: 250px; margin: 0 auto; }
    .ct-ficha-titulo { font-size: 1.4rem; text-align: center; }
    .ct-ficha-roles { justify-content: center; }
    .ct-ficha-redes { justify-content: center; }
}
