.show_item {
    display: flex;
    flex-direction: column;
    justify-content: space-between;

    width: 150px;
    height: 250px;

    min-width: 150px;
    min-height: 250px;

    transition: transform 0.5s;

    user-select: none;
}

.show_item:hover {
    cursor: pointer;

    transform: scale(1.05);
}

.show_item_image {
    width: 100%;
    /* height: calc(70% - 5px); */
    height: 100%;

    border-radius: 5px;

    /* image fit */
    object-fit: cover;

    user-select: none;
}

.show_item_info_container {
    position: absolute;

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    width: inherit;
    height: inherit;
}

.show_item_info {
    margin: 0;
    margin-top: 125px;

    height: 125px;
    width: 100%;

    /* blur transparent top, black bottom */
    background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.9));
}

.show_item_title {
    font-size: 18px;
    font-weight: 800;
    font-style: normal;

    /* max lines is 2 */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;

    text-overflow: ellipsis;
    overflow: hidden;

    color: rgb(255, 255, 255);

    margin: 0;
    margin-top: 70px;
    padding: 5px;

    user-select: none;
}

/* SHOW RIBBON */

.show_ribbon {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    grid-auto-rows: 260px;

    width: 100%;
    height: fit-content;
}

.show_ribbon>.show_item {
    margin-left: auto;
    margin-right: auto;
}

/* SHOW LOG */

.show_log {
    display: flex;
    flex-direction: row;

    width: 100%;
    height: 100px;

    background-color: rgb(24, 24, 24);
    border-radius: 5px;

    user-select: none;

    transition: transform 0.5s;
}

.show_log:hover {
    cursor: pointer;

    transform: scale(1.05);
}

.show_log_image {
    width: auto;
    height: 100%;

    border-radius: 5px;

    object-fit: cover;

    user-select: none;
}

.show_log_info {
    display: flex;
    flex-direction: column;
    justify-content: space-around;

    width: auto;
    height: 100%;

    margin-left: 10px;

    user-select: none;
}

.show_log_title {
    font-size: 18px;
    font-weight: 800;
    font-style: normal;

    /* max lines is 2 */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;

    text-overflow: ellipsis;
    overflow: hidden;

    color: rgb(255, 255, 255);

    margin: 0;
    padding: 5px;

    user-select: none;
}

.show_log_status {
    font-size: 14px;
    font-weight: 400;
    font-style: normal;

    color: rgb(255, 255, 255);

    margin: 0;
    padding: 5px;

    user-select: none;
}

/* SHOW LOG DRAWER */

.show_log_drawer {
    display: flex;
    flex-direction: column;

    gap: 10px;
}

@media screen and (max-width: 800px) {
    .show_log_drawer {
        max-width: calc(100% - 10px);
    }
}

/* FEATURED SHOWS */

.featured_carousel {
    height: 350px;
    width: 100%;
}

@media screen and (max-width: 600px) {
    .featured_carousel {
        gap: 0px;
    }
    .featured_carousel::part(base) {
        gap: 0px;
    }
}

.featured_item {
    height: 100%;
}

.featured_show_container {
    height: 100%;
    width: calc(100% - 20px);
    margin-left: 10px;

    border-radius: 5px;

    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.featured_show_info_container {
    height: 100%;
    width: 50%;

    /* black black cirle left bottom extending to top left transparent */
    background: radial-gradient(circle at left bottom, #0f0f0f 10%, rgba(0, 0, 0, 0) 90%),
        radial-gradient(circle at left top, #0f0f0f 10%, rgba(0, 0, 0, 0) 90%);
}

.featured_show_info {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 20px;

    height: calc(100% - 50px);
    width: calc(100% - 50px);
    padding: 25px;
}

.featured_show_info>p {
    margin: 0;
    padding: 0;
}

.featured_show_title {
    font-size: 24px;
    font-weight: 800;
    font-style: normal;

    max-width: 30ch;

    /* max lines is 2 */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;

    text-overflow: ellipsis;
    overflow: hidden;

    color: rgb(255, 255, 255);

    user-select: none;

}

.featured_show_description {
    font-size: 14px;
    max-height: 100px;
    overflow-y: auto;

    user-select: none;
}

@media screen and (max-width: 800px) {
    .featured_show_info_container {
        width: 100%;
    }
}