div.page-content {
    margin: 100px 0;
}

.image-container {
    position: relative;
    width: 100%;
    padding-bottom: 75%; /* 3/4 * 100% = 75% per aspect ratio 4:3 */
    background: #ddd;
    overflow: hidden;
}

/* Picture e img con object-fit cover */
.image-container picture {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

body .containerArticle {
    height: 100%;
    margin-bottom: 30px;
}

body .containerArticle article{
    height: 100%;
}

body .containerArticle article .card{
    height: 100%;
}

body .containerArticle article .card-body{
    position: relative;
    font-family: 'Bitter', serif;
    font-weight: 400;
    line-height: 1.4;
    padding-bottom: 50px;
}

body .containerArticle article .card-body .card-body-date {
    position: absolute;
    top: -40px;
    right: 16px;
    width: 80px;
    height: 80px;
    background-color: #42c9ab;
    border-radius: 4px;
    color: #fff;
    text-align: center;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-content: center;
}
body .containerArticle article .card-body .card-body-date .day{
    font-size: 32px;
    line-height: 32px;
}

body .containerArticle article .card-body .card-body-date .month{
    font-size:16px;
    text-transform: uppercase;
}

body .containerArticle article .card-body p.card-text {
    font-family: 'Roboto', Sans-serif;
}

body .containerArticle article .card-body a.readMore{
    font-family: 'Roboto', Sans-serif;
    display: inline-block;
    margin-top: 10px;
    padding: 15px 20px;
    color: #fff;
    font-size: 16px;
    line-height: 16px;
    background-color: #42c9ab;
    text-decoration: none;
    position: absolute;
    bottom: 16px;
    right: 16px;
    border-radius: 4px;
}
