.color-card {
    width: 100%;
    height: 100%;
    box-shadow: 1px 2px 6px -1px hsla(var(--color-black), .1), 1px 2px 4px -2px hsla(var(--color-black), .1);
}

.color-card__inner {
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: .375rem;
    border-radius: .5rem;
    border: 1px solid var(--border-color);
    background-color: var(--bg-color-secondary);
    overflow: hidden;
    position: relative;
}

.color-card__image {
    height: 50px;
    margin: -1px;
    border-radius: .5rem;
    border: 1px solid var(--border-color);
    transition: width .3s ease-out, height .3s ease-out;
}

.color-card__title {
    font-size: .875rem;
    text-align: center;
    text-wrap-style: balance;
}

@media (min-width: 768px) {
    .color-card__inner {
        flex-direction: row;
        align-items: center;
    }

    .color-card__image {
        width: 45px;
        height: 45px;
        margin: -1px 0 -1px -1px;
    }
}
