.custom-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 kolonner */
    gap: 50px; /* Mellemrum mellem blokkene */
    justify-items: center;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
}

.custom-post-class {
    width: 100%; /* Sørger for, at de ikke bliver for smalle */
    min-height: 400px;
    border: 1px solid #aaa; 
    border-radius: 12px;
    overflow: hidden;
    padding: 15px;
    background-color: #FFEAE6; /* vælg baggrund */
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.custom-post-class img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
}

.post-title {
    font-size: 20px;
    margin-top: 10px;
    margin-bottom: 0;
    font-weight: bold;
    color: #222;
}

@media (max-width: 1024px) {
    .custom-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 kolonner på tablet */
    }
}

@media (max-width: 768px) {
    .custom-grid {
        grid-template-columns: repeat(1, 1fr); /* 1 kolonne på mobil */
    }
}

