.article {
    margin: 0 auto;
    max-width: 1440px;
    padding-top: 100px !important;
}

@media (min-width: 768px) {
    .article {
        padding-top: 98px;
        padding: 0 30px;
    }
}


.article__heading {
    position: relative;
}

.article__heading-over {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: max-content;
    background-color: #FFFFFFE5;
    border-radius: 0 0 30px 30px;
    padding: 15px;
}

@media (min-width: 768px) {
    .article__heading-over {
        border-radius: 0 0 45px 45px;
        padding: 30px;
    }
}

.article__heading--title {
    font-size: 20px;
    padding: 0 30px;
    margin: 0;
}

@media (min-width: 768px) {
    .article__heading--title {
        padding: 0;
        font-size: 32px;
    }
}

.article__heading--date {
    font-size: 14px;
    margin: 0;
    font-weight: 300;
    color: #909090;
}

@media (min-width: 768px) {
    .article__heading--date {
        font-size: 20px;
        padding-top: 10px;
    }
}

.article__heading--image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 0 0 30px 30px;

    color: black !important;
    font-family: inherit;
    font-size: 16px;
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f5f5f5;
    text-align: center;
    line-height: 1.4;
}
@media (min-width: 768px) {
    .article__heading--image {
        height: 450px;
        border-radius: 0 0 45px 45px;
        font-size: 20px;
    }
}

@media (min-width: 1024px) {
    .article__heading--image {
        height: 650px;
        border-radius: 0 0 50px 50px;
        font-size: 24px;
        
    }
}






.article__body {
    font-size: 16px;
    font-weight: 300;
    padding: 60px 30px;
}

@media (min-width: 768px) {
    .article__body {
        padding: 60px 0;
    }
}

@media (min-width: 1024px) {
    .article__body {
        font-size: 24px;
    }
}

.article__body p {

}

.article__body p iframe {
    width: 100%;
    border-radius: 30px;
    max-height: 350px;
}

.article__body p img {
    border-radius: 30px;
    max-width: 100%;
    object-fit: cover;
}

@media (min-width: 1024px) {
    .article__body p:has(img) {
        padding-right: 0;
        display: flex;
        justify-content: center;
    }
}



.article__link {
    cursor: pointer;
    user-select: none;
    font-size: 14px;
    background-color: #4393F6;
    border-radius: 50px;
    color: #fff;
    padding: 10px 20px;
    display: table;
    margin: 0 auto;
    text-decoration: none;
    font-weight: 700;
}

@media (min-width: 768px) {
    .article__link {
        font-size: 24px;
        padding: 15px 30px;
    } 
}