body {
    font-family: "ivyora-display", sans-serif;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 1080px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(500px, 1fr));
    gap: 20px;
    padding: 20px;
}

.article {
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.2s;
}

.article:hover {
    transform: scale(1.02);
}

.article img {
    width: 100%;
    height: 300px; /* Fixed height for all images */
    object-fit: cover; /* Maintain aspect ratio and fill the space */
}

.article h2 {
    padding: 10px;
    margin: 0;
    background-color: white;
    color: black;
    font-size: 18px; /* Reduced font size */
    text-align: left; /* Align text to the left */
}

.article a {
    text-decoration: none;
    color: inherit; /* Inherit color from surrounding text */
}
