﻿.generic-card-component {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 16px;
    background-color: var(--color-light-background);
    box-shadow: var(--shadow-small);
    box-sizing: border-box;
    border: var(--border-outline);
    border-radius: 8px;
    transition-property: color, border, background-color, box-shadow;
    transition-timing-function: var(--transition-timing-function);
    transition-duration: var(--transition-duration);
}

    .generic-card-component:hover {
        color: var(--color-text-accent);
        box-shadow: var(--shadow-highlight);
        background-color: var(--color-highlight);
        border: var(--border-outline-highlight);
    }

.generic-card-component-icon {
    width: 100%;
    height: 256px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 128px;
    line-height: 128px;
    border-radius: 8px;
}

.generic-card-component-image {
    width: 100%;
    height: 256px;
    object-fit: contain;
    border-radius: 8px;
}