.p-shows {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 25px;
    margin-top: 12.5px;
}

.p-shows-item {
    height: auto;
    text-decoration: none;
}

.p-shows-item-image {
    width: 100%;
    aspect-ratio: 16/9;
    background-color: var(--brandColour);
    border-radius: 2.5px;
    border: none;
    cursor: pointer;
}

.p-shows-item-image-inner {
    height: 100%;
    aspect-ratio: 1/1;
    background-size: cover;
    background-position: center;
    display: inline-block;
}

.p-shows-item-text {
    margin-top: 12.5px;
    color: black;
}

.p-shows-item-text-title {
    font-size: 18px;
    line-height: 20px;
    font-weight: 600;
}

.p-shows-item-text-alt {
    margin-top: 12.5px;
    font-size: 15px;
    line-height: 15px;
    font-weight: 500;
}

.p-shows-item-text-alt:empty {
    display: none;
}

.p-shows-item-text-isLive {
    margin-top: 25px;
    background-color: red;
    color: white;
    font-weight: bold;
    display: inline-block;
    padding: 2.5px 10px;
    border-radius: 2.5px;
}