.articles {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    padding: 1rem;
}
article {
    border: 1px solid #700000;
    background: #f8f8f8;
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: transform 0.2s ease;
}
article a {
    font-size: 1.25em;
}
article img {
    max-width: 100%;
}