.card {
    display: block;
    background-color: #fff;
}

.card__body {
    padding: 24px;
    border-left: 1px solid #034FFC33;
    border-right: 1px solid #034FFC33;
    border-bottom: 1px solid #034FFC33;
}

.card__footer {
    display: flex;
    margin-top: 16px;
}

.card__footer > .button-dates {
    color: #1E49E2;
    font-family: Open Sans;
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    letter-spacing: 0.44px;
    text-align: center;
}

.card__title {
    position: relative;
    font-family: Open Sans;
    font-size: 18px;
    font-weight: 600;
    line-height: 24px;
    text-align: left;
    margin-bottom: 16px;
}

.card__title::before {
    position: absolute;
    top: 0;
    left: -24px;
    content: '';
    width: 4px;
    height: 100%;
    background-color: #63EBDA;
}

.card__hero {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.card__hero::before {
    content: '';
    display: block;
    padding-top: calc( 76 / 141 * 100%);
}

.card__hero > img {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}