.card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
    padding: 24px;
    gap: 10px;
    text-align: left;
    color: var(--color-text-primary-inverted);
    text-decoration: none;
}

a.card {
    cursor: pointer;
}

.card[data-type='active'] {
    width: 540px;
    height: 320px;
    border-radius: var(--border-radius-full);
    background-size: cover;
    padding: 24px 48px;
}

.card[data-type='coming_soon'] {
    width: 320px;
    height: 320px;
    background: linear-gradient(180deg, var(--color-bg-fill-primary) 7.66%, var(--color-bg-fill-brand-disabled) 100%);
    border-radius: var(--border-radius-md);
    cursor: default;
}

.card[data-type='active'].cardRounded {
    position: relative;
    width: 100%;
    height: 496px;
    border-radius: var(--border-radius-xxxl);
    padding: 120px 60px;
    transition: padding-right 0.3s, padding-left 0.3s, border-radius 0.3s;

    &:hover {
        border-radius: 250px;
        padding: 120px 96px;
    }

    &::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border-radius: var(--border-radius-xxxl);
    }
}

.label {
    width: 100%;
}

.arrow {
    width: 128px;
    height: 128px;
    flex-shrink: 0;
}

@media (width <= 768px) {
    .card {
        padding: 12px;
    }

    .card[data-type='active'] {
        width: 270px;
        height: 160px;
    }

    .card[data-type='coming_soon'] {
        width: 160px;
        height: 160px;
    }

    .card[data-type='active'].cardRounded {
        height: 176px;
        border-radius: 250px;
        padding: 12px 36px;

        &:hover {
            border-radius: 250px;
            padding: 12px 36px;
        }
    }

    .arrow {
        width: 64px;
        height: 64px;
    }
}
