/*
 * Perfil de persona (bio) + Trending Artists. Archivo nuevo y
 * aislado — nunca se modifica assets/css/style.css.
 */

/* --- Perfil de persona (encabezado de taxonomy-dtcast.php y demás) --- */

.mrs-person {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 1.25rem;
    margin-bottom: 1.75rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mrs-person__photo {
    width: 120px;
    height: 120px;
    border-radius: 12px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(220, 226, 240, 0.5);
}

.mrs-person__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mrs-person__photo svg {
    width: 40px;
    height: 40px;
}

.mrs-person__name {
    font-size: 1.4rem;
    font-weight: 800;
    color: #fff;
    margin: 0 0 0.5rem;
}

.mrs-person__bio {
    font-size: 0.88rem;
    line-height: 1.55;
    color: rgba(220, 226, 240, 0.75);
    margin: 0;
    max-width: 780px;
}

.mrs-person__facts {
    grid-column: 1 / -1;
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem 2rem;
    margin-top: 0.25rem;
}

.mrs-person__fact {
    display: flex;
    flex-direction: column;
    font-size: 0.82rem;
}

.mrs-person__fact strong {
    color: rgba(220, 226, 240, 0.5);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.2rem;
}

.mrs-person__fact span {
    color: #fff;
}

.mrs-person__fact a {
    color: #7ab8f5;
    text-decoration: none;
}

.mrs-person__fact a:hover {
    text-decoration: underline;
}

@media (min-width: 768px) {
    .mrs-person {
        grid-template-columns: 160px 1fr;
    }

    .mrs-person__photo {
        width: 160px;
        height: 160px;
    }

    .mrs-person__name {
        font-size: 1.75rem;
    }
}

/* --- Trending Artists (home.php) --- */

.mrs-trending-artists {
    margin-top: 1.5rem;
}

.mrs-trending-artists__header {
    text-align: center;
    margin-bottom: 1.25rem;
}

.mrs-trending-artists__title {
    font-size: 1.3rem;
    font-weight: 800;
    color: #fff;
    margin: 0 0 0.25rem;
}

.mrs-trending-artists__subtitle {
    font-size: 0.85rem;
    color: rgba(220, 226, 240, 0.6);
    margin: 0;
}

.mrs-trending-artists__row {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    padding: 0.25rem 0.1rem 0.75rem;
    scroll-snap-type: x proximity;
}

.mrs-trending-artists__row::-webkit-scrollbar {
    height: 6px;
}

.mrs-trending-artists__row::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 999px;
}

.mrs-trending-artists__item {
    flex: 0 0 auto;
    width: 110px;
    text-align: center;
    scroll-snap-align: start;
    color: inherit;
    text-decoration: none;
}

.mrs-trending-artists__photo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 90px;
    height: 90px;
    margin: 0 auto 0.5rem;
    border-radius: 50%;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.06);
    color: rgba(220, 226, 240, 0.5);
}

.mrs-trending-artists__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mrs-trending-artists__photo svg {
    width: 32px;
    height: 32px;
}

.mrs-trending-artists__name {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: #fff;
}

.mrs-trending-artists__item:hover .mrs-trending-artists__name {
    color: #f50057;
}
