.promotions_total
{
    white-space: nowrap;
}

.promotions:not(:has(.promotion))
{
    display: none;
}

.promotion
{
    position: relative;
    overflow: hidden;
}

.promotion_header
{
    height: 315px;
    border-radius: 10px;
    contain: strict;
    display: flex;
    justify-content: center;
    align-items: center;
}

.promotion_image
{
    height: 315px;
    width: unset;
    object-fit: contain;
    transition: all 0.1s;
}

.promotion_body
{
    margin-top: 15px;
    width: 315px;
}

.promotion_title
{
    color: var(--text);
    display: block;
    font-weight: 700;
    height: 65px;
    margin-bottom: 5px;
    text-transform: uppercase;
    transition: all 0.1s;
    text-wrap: pretty;
}

.promotion:hover .promotion_title
{
    color: var(--red);
}

.promotion:hover .promotion_image
{
    height: 320px;
}

.promotion_expiry
{
    display: none;
}