

.DZine-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, 300px); /* Creates as many 300px columns as can fit in the container */
    gap: 20px; /* Sets a 20px gap between both rows and columns */
    justify-content: center;
    width: 1024px;
    max-width: 100%;
    margin: 0 auto;
}

.DZine-grid a {
    text-decoration: none;
}

.DZine-card {
    width: 300px;
    max-width: 100%;
    font-family: Courier, monospace;
    font-size: 14px;
    text-align: left;
    background: #1C1B1A;
    border-radius: 10px;
    overflow: hidden;
    color: #CECDC3;
}

.DZine-card img {
    max-width: 100%;
}

.DZine-title {
    padding: 0 5%;
    text-transform: uppercase;
    font-size: 1.2em;
    font-weight: bold;
    margin-bottom: 6px;
}

.DZine-caption {
    padding: 0 5%;
    color: #878580;
    margin-bottom: 6px;
}
