.root {
    position: relative;
    display: flex;
    justify-content: center;
    max-height: 100vh;
}

.blurredBackground {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.blurredBackground::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(17, 16, 22, 0.6);
    backdrop-filter: blur(25px);
}

.normalBackground {
    position: absolute;
    width: 100vw;
    height: 100vh;
    background-size: cover;
    background-position: center;
    z-index: 1;
    filter: brightness(1.1);
}

.container {
    position: relative;
    display: flex;
    align-items: stretch;
    justify-content: center;
    width: 100%;
    min-height: 100%;
    z-index: 2;
}

.circleVector {
    position: absolute;
    width: 540px;
    height: 540px;
    border: var(--border-width-sm) solid var(--color-bg-fill-alpha-white-20);
    border-radius: var(--border-radius-full);
    pointer-events: none;
    z-index: 0;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.mainColumn {
    width: 100%;
    margin-top: 125px;
    margin-bottom: 45px;
    display: flex;
    position: relative;
    align-items: center;
    padding: 98px 60px;
    z-index: 2;
}

.mainColumn::before,
.mainColumn::after {
    left: 30px;
    content: '';
    position: absolute;
    width: calc(100% - 60px);
    height: var(--border-width-sm);
    background-color: var(--color-bg-fill-alpha-white-20);
}

.mainColumn::before {
    top: 0;
}

.mainColumn::after {
    bottom: 0;
}

.leftColumn,
.rightColumn {
    position: relative;
    margin-top: 125px;
    margin-bottom: 45px;
    display: flex;
    width: 100%;
    height: auto;
}

.rightColumn {
    justify-content: flex-end;
}

.leftColumn::before,
.leftColumn::after,
.rightColumn::before,
.rightColumn::after {
    content: '';
    position: absolute;
    width: calc(100% - 30px);
    height: var(--border-width-sm);
    background-color: var(--color-bg-fill-alpha-white-20);
}

.leftColumn::before,
.rightColumn::before {
    top: 0;
}

.rightColumn::after,
.leftColumn::after {
    bottom: 0;
}

.verticalBorder {
    position: absolute;
    background: var(--color-bg-fill-alpha-white-20);
    width: var(--border-width-sm);
    height: 580px;
}

.verticalBorder:first-child {
    left: 0;
}

.verticalBorder:last-child {
    right: 0;
}

.content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    width: 900px;
    user-select: none;
}

.label {
    color: var(--color-text-primary-inverted);
}

.title {
    width: 100%;
    display: flex;
    flex-direction: column;
    color: var(--color-text-primary-inverted);
}

.firstLineTitle {
    text-align: left;
}

.optionalLineTitle {
    text-align: right;
}

.highlightedLineTitle {
    text-align: center;
    color: var(--color-text-primary-brand-solar);
}

.badgesRow {
    display: flex;
    gap: 12px;
}

.badge {
    border-radius: var(--border-radius-xxs);
    padding: 8px 12px;
    color: var(--color-text-primary-inverted);
    background: var(--color-bg-fill-alpha-white-20);
}

.circleVectorMobile {
    display: none;
}

@media screen and (width <= 768px) {
    .leftColumn,
    .rightColumn {
        display: none;
    }
    .circleVector {
        width: 399px;
        height: 399px;
    }

    .circleVectorMobile {
        display: block;
        position: absolute;
        width: 399px;
        height: 399px;
        clip-path: circle(50%);
        -webkit-clip-path: circle(50%);
        z-index: 1;
        background-size: cover;
        background-position: center;
        pointer-events: auto;
    }

    .mainColumn {
        margin-left: 12px;
        margin-right: 12px;
        justify-content: center;
        padding: 48px 12px;
    }

    .content {
        z-index: 2;
        gap: 0px;
        width: 351px;
        pointer-events: none;
    }

    .content > * {
        pointer-events: auto;
    }

    .label {
        height: 64px;
    }

    .title {
        padding: 0px 8px;
        margin: 137px 0;
    }

    .badgesRow {
        justify-content: center;
        padding: 0px 12px;
        flex-direction: row;
        flex-wrap: wrap;
    }
}
