.ws-block-EventPreview {
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    text-align: center;
    container-type: inline-size;
}

.ws-block-EventPreview .ws-event-preview__title {
    height: 100%;
    padding-bottom: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ac0918;
    font-weight: 700;
    font-size: 16px;
    line-height: 1;
    text-transform: uppercase;
}

.ws-block-EventPreview .ws-event-preview__thumbnail {
    aspect-ratio: 1;
    border-radius: 100%;
    object-fit: cover;
}

.ws-block-EventPreview .ws-event-preview__link {
    width: max-content;
    color: #FFF;
    background-color: #af0917;
    font-size: 14px;
    font-weight: bold;
    padding: 13px 17px;
    text-transform: uppercase;
    display: inline-block;
    transition: all .4s;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) translateY(50%);
}

.ws-block-EventPreview .ws-event-preview__link:hover {
    color: #FFF;
    background-color: #e22b3a;
    text-decoration: none;
}

.ws-block-EventPreview .ws-event-preview__buble {
    position: relative;
    margin-bottom: 30px;
}

.ws-block-EventPreview .ws-event-preview__description {
    min-height: 2em;
    font-size: 12px;
    text-transform: uppercase;
    color: #a7a9ac;
    line-height: 1;
}

.ws-block-EventPreview .ws-event-preview__date {
    font-weight: bold;
}


@container (max-width: 200px) {
    .ws-block-EventPreview .ws-event-preview__title {
        font-size: 12px;
    }

    .ws-block-EventPreview .ws-event-preview__link {
        font-size: 12px;
        padding: 8px 10px;
        line-height: 1;
        transform: translateX(-50%) translateY(-15%);
    }
    
    .ws-block-EventPreview .ws-event-preview__buble {
        margin-bottom: 10px;
    }
}