.container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1rem;
}
.article {
    padding: 1rem;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    display: flex;
    width: calc(50% - 2.5rem);
}
.article-image {
    width: 30%;
    margin-right: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.article-image img {
    width: auto;
    height: 130px;
    object-fit: contain;
    margin: auto 0;
}
.article-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: space-between;
}
.article h2 {
    font-size: 20px;
    margin: 0 0 10px 0;
}
.article p {
    font-size: 16px;
}
.article .article-button {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 5px 10px;
    cursor: pointer;
    margin: 0 0 0 auto;
}

.article-date{
    color: var(--silver);
    font-weight: 600;
    font-size: 14px;
}

@media screen and (max-width: 1024px) {
    .article {
        width: 100%;
    }
}