.data-siswa {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 15px;
    margin: 20px 0;
}

.data-siswa .item {
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    transition: transform .3s ease;
}

.data-siswa .item:hover {
    transform: translateY(-5px);
}

.data-siswa .item.male {
    background: linear-gradient(135deg, #f5f7fa, #e4ebf3); /* abu muda */
}

.data-siswa .item.female {
    background: linear-gradient(135deg, #ffe0e9, #ffcce0); /* pink muda */
}

.data-siswa .item.total {
    background: linear-gradient(135deg, #dff9fb, #c7ecee); /* biru muda */
}

.data-siswa .icon {
    font-size: 32px;
}

.data-siswa .number {
    font-size: 32px;
    font-weight: bold;
    margin: 8px 0;
    color: #2c3e50;
}

.data-siswa .label {
    font-size: 14px;
    color: #555;
}
