.root {
    display: flex;
    padding: 48px 32px;
    flex-direction: column;
    align-items: flex-start;
    border-radius: var(--border-radius-lg);
    background: radial-gradient(50% 50% at 50% 50%, rgba(89, 153, 217, 0.00) 0%, rgba(89, 153, 217, 0.20) 100%), linear-gradient(0deg, rgba(255, 255, 255, 0.10) 0%, rgba(255, 255, 255, 0.10) 100%), rgba(0, 0, 0, 0.50);
    width: 380px;
    color: var(--color-text-primary-inverted);
    backdrop-filter: blur(25px);
    min-height: 316px;
    height: auto;
}

.number{
    align-items: flex-start;
}

.contentContainer{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    width: 100%;
    gap: 0;
}
.topContainer {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

@media (width < 1440px) {
    .root{
        padding: 32px;
        width: 100%;
        height: 0;
    }
    
    .contentContainer{
        justify-content: space-between;
    }
}

@media (width < 768px) {
    .description{
        letter-spacing: var(--letter-spacing-negative-lg);
    }
}
