.language-card {
    background-color: var(--surface-container-lowest, #ffffff);
    border-radius: 0.75rem;
    /* rounded-xl */
    padding: 1rem;
    /* adjust to your md spacing value */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    /* gap-sm */
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.04);
    transition: all 0.30s ease;
    cursor: pointer;
    border: 1px solid var(--surface-container-highest, #e2e8f0);
}

.language-card:hover {
    box-shadow: 0px 8px 30px rgba(0, 0, 0, 0.08);
}

.language-card-icon {
    font-size: 3rem;
    /* text-5xl */
    transition: transform 0.30s cubic-bezier(0, 0, 0.2, 1);
}

.language-card:hover .language-card-icon {
    transform: scale(1.1);
    /* group-hover:scale-110 */
}

.language-card-title {
    font-size: 1.25rem;
    /* Matches text-headline-md size (approx 20px) */
    font-weight: 700;
    /* Makes it properly bold */
    margin-top: 0.5rem;
    /* mt-sm */
    color: var(--primary, #111827);
    /* Ensures text-primary color applies */
}