/* SCSS */
/* SCSS */
/* ===== Usage ===== */
.show-cast {
    margin: 1rem 0;
    padding: 0.5rem 0.25rem;
    margin: 0 auto;
    margin-bottom: 1rem;
}

.show-cast__content {
    display: flex;
    flex-direction: column;
    padding: 0.5rem;
}

.show-cast__container {
    display: flex;
    flex-direction: column;
}

.show-cast__item {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding: 1rem;
    border-bottom: 1px solid var(--clr-neutral-70);
}

    .show-cast__item:last-child {
        border-bottom: 0;
    }

.show-cast__itemheader {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    -moz-column-gap: 0.5rem;
    column-gap: 0.5rem;
    font-weight: 600;
    flex-shrink: 0;
}

    .show-cast__itemheader a {
        color: var(--clr-secondary);
    }

        .show-cast__itemheader a:hover {
            text-decoration: underline;
        }

.show-cast__itemcontent {
    display: flex;
    flex-direction: column;
}

.show-cast__image {
    -o-object-fit: cover;
    object-fit: cover;
    width: 50px;
    aspect-ratio: 1/1;
    border-radius: 50%;
    grid-column: 1;
    grid-row: span 2;
}

.show-cast__sidebar {
    display: flex;
    flex-direction: column;
    padding: 0.25rem;
    position: relative;
}