body {
    font-family: Arial, sans-serif;
    background: #f4f4f4;
    padding: 20px;
}

.judul-halaman {
    text-align: center;
    margin-bottom: 25px;
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    padding: 10px;
}

.card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    position: relative;
}

/* ---- GAMBAR TIDAK TERPOTONG ---- */
.card-img-container {
    width: 100%;
    height: 220px;
    background: #eee;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.card-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}
/* -------------------------------- */

.date-tag {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #ff5c33;
    padding: 8px 10px;
    border-radius: 6px;
    color: white;
    text-align: center;
}

.date {
    display: block;
    font-size: 18px;
    font-weight: bold;
}

.month {
    font-size: 12px;
}

.card-content {
    padding: 15px;
}

.card-content h2 {
    margin: 0;
    font-size: 18px;
    color: #222;
}

.card-content p {
    font-size: 14px;
    margin-top: 8px;
    color: #555;
}
