﻿.article-container {
    padding: 10px 4% 31px 4%;
    text-align: center;
    width: 90%;
    justify-self: center;
    max-width: 75rem;
}

.article-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 18px;
}

.article-item {
    border-radius: 10px;
    box-shadow: 0px 0px 5px 2px #f10a0a80;
    background-color: #7b6b6b12;
    border: 1px solid #d70808;
    display: flex;
    flex-direction: column;
}

    .article-item img {
        max-width: 100%;
        max-height: 100%;
        border-top-left-radius: 10px;
        border-top-right-radius: 10px;
        border-bottom: 1px solid #be3c3c;
    }

    .article-item .article-date {
        font-size: 12px;
        color: #d70808;
        font-weight: bolder;
        align-self: self-start;
        padding-top: 4px;
        padding-right: 10px;
    }

    .article-item .article-title {
        font-size: large;
        font-weight: bold;
        color: #0a0a0a;
        line-height: 23px;
        padding-bottom: 14px;
        padding-top: 7px;
    }

    .article-item .article-desc {
        font-size: 14px;
        color: #25242498;
        text-align: justify;
        padding: 0px 9px;
    }
