.container {
    margin: 80px 0px 200px 0px;
    font-family: "Public sans", sans-serif;
    padding: 60px 0px 150px 0px;
    color: #fff;
    background: linear-gradient(
            rgba(45, 163, 151, 0.9),
            rgba(45, 163, 151, 0.9)
        ),
        url("/static/images/mecat/background.jpg") repeat;
}

.inner_container {
    position: relative;
    width: 90%;
    max-width: 1100px;
    margin: auto;
    text-align: center;
}

.heading {
    font-size: 48px;
    font-weight: 700;
    width: 100%;
    max-width: 550px;
    margin: auto;
}

.articles {
    z-index: 10;
    position: absolute;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    bottom: -150%;
    transform: translateY(50%);
}

.article {
    background: linear-gradient(rgba(2, 44, 70, 0.75), rgba(2, 44, 70, 0.75)),
        url("/static/images/mecat/article-bg.jpg") no-repeat center center/cover;
    text-align: left;
    padding: 20px;
}

.date {
    background: #fff;
    display: inline-block;
    border-radius: 50%;
    color: #000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 75px;
    width: 75px;
    text-align: center;
    font-weight: 600;
}

.date span {
    margin-top: 3px;
    color: #303030;
    font-size: 14px;
    letter-spacing: 1px;
}
.date span:first-child {
    margin-top: 0px;
}

.content {
    margin: 30px 0px 15px 0px;
}

.author {
    font-size: 16px;
    font-weight: 600;
}

.title {
    font-size: 20px;
    font-weight: 700;
    margin-top: 20px;
}

@media screen and (max-width: 950px) {
    .articles {
        grid-template-columns: repeat(3, 1fr);
    }
    .article_4 {
        display: none;
    }
}

@media screen and (max-width: 750px) {
    .articles {
        grid-template-columns: repeat(2, 1fr);
    }
    .article_3 {
        display: none;
    }
}

@media screen and (max-width: 480px) {
    .articles {
        grid-template-columns: repeat(1, 1fr);
    }
    .article_2 {
        display: none;
    }
}
