.shows .block-title {
    display: flex;
    gap: .8rem;
    align-items: center;
}
/* .shows .detail {
    background-color: var(--color-grey-1);
} */
.shows .wrap {
   height: 100%;
   background-color: var(--color-grey-1);
}
.shows .block-title .title {
    position: relative;
    margin: 0;
    padding: .4rem .6rem;
    display: flex;
    align-items: center;
    font-size: 100%;
    font-style: italic;
    text-transform: uppercase;
    color: var(--color-back-1);
}
.shows .block-title .title::before {
    content: ' ';
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: var(--color-yellow-1);
    transform: skew(341deg,0deg);
}
.shows .block-title .title span {
    position: relative;
}


/* ipad pro */
@media (min-width: 769.9px) and (max-width: 1024.9px) {
    .shows .col-4 {
        flex: 0 0 auto;
        width: 50%;
    }
}
/* ipad */
@media (min-width: 576.9px) and (max-width: 769px) {
    .shows .col-4 {
        flex: 0 0 auto;
        width: 50%;
    }
}
/* mobile */
@media (max-width: 576px) {
    .shows .col-4 {
        flex: 0 0 auto;
        width: 100%;
    }
    .shows .slick-slide img {
        width: 98%;
    }
}