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

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

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

.show-cast__item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    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.75rem;
    column-gap: 0.75rem;
    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;
}

.show-page {
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.show-page__header {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin: 1rem 0;
    background: var(--clr-surface);
}

@media only screen and (min-width: 576px) {
    .show-page__header {
        display: grid;
        grid-template-columns: auto 1fr;
    }
}

@media only screen and (min-width: 992px) {
    .show-page__header {
        grid-template-columns: auto 1fr 1fr;
    }
}

.show-page__header > .chaska {
    grid-column: span 2;
}

@media only screen and (min-width: 992px) {
    .show-page__header > .chaska {
        grid-column: 3;
    }
}

.show-page__image {
    grid-column: 1;
}

    .show-page__image > img {
        width: 100%;
        height: 100%;
        -o-object-fit: cover;
        object-fit: cover;
    }

.show-page__title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

    .show-page__title .svg-wrapper svg {
        width: 1rem;
        height: 1rem;
    }

.show-page__content {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 0.75rem;
    padding: 0.5rem;
    width: 100%;
    position: relative;
}

.show-page__heading {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.show-page__about {
    font-weight: 600;
}

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

    .show-page__table > *:last-child {
        align-self: center;
        margin: 1rem 0;
    }

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

.show-page__item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--clr-surface);
    padding: 0.5rem;
    border: 1px solid var(--clr-neutral-70);
    border-bottom: 0;
}

    .show-page__item:last-child {
        border-bottom: 1px solid var(--clr-neutral-70);
    }

    .show-page__item img {
        width: 50px;
        border-radius: 50%;
        -o-object-fit: cover;
        object-fit: cover;
        aspect-ratio: 1/1;
    }

@media only screen and (min-width: 576px) {
    .show-page__item {
        padding: 1rem;
    }

        .show-page__item img {
            width: 75px;
        }
}
