* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: Arial, sans-serif;
    background: #f4f6f8;
    padding: 20px;
}

/* JUDUL */
h2 {
    margin-bottom: 20px;
}

/* GRID */
.card-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* DESKTOP */
    gap: 20px;
}

/* CARD */
.card {
    background: #fff;
    border-radius: 12px;
    padding: 15px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
    transition: transform 0.2s ease;
}

.card:hover {
    transform: translateY(-5px);
}

/* GAMBAR */
.card img {
    width: 100%;
    max-height: 140px;
    object-fit: contain;
    margin-bottom: 10px;
}

/* LABEL */
.card-label {
    font-size: 15px;
    margin-bottom: 6px;
    color: #333;
}

/* DESKRIPSI */
.card p {
    font-size: 13px;
    color: #666;
    margin-bottom: 12px;
}

/* BUTTON */
.btn {
    display: inline-block;
    padding: 8px 14px;
    background: #0d6efd;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-size: 13px;
}

.btn:hover {
    background: #084298;
}

/* MOBILE */
@media (max-width: 600px) {
    .card-container {
        grid-template-columns: repeat(2, 1fr); /* 2 : 2 : 2 : 2 */
    }

    .card img {
        max-height: 110px;
    }
}
