.root {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
}

.root[data-color-scheme='dark'] {
    background-color: var(--color-bg-fill-primary);
    color: var(--color-text-primary-inverted);
}

.container,
.soloContainer {
    padding: var(--spacing-80) var(--spacing-120);
    max-width: var(--content-max-width);
    width: 100%;
}

.soloContainer {
    padding: 90px 120px 90px 180px;
}

.header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: var(--spacing-64);
    text-align: center;
    text-wrap: balance;
}

.label {
    margin-bottom: var(--spacing-20);
}

.content {
    display: flex;
    justify-content: center;
    gap: 90px;
}

.soloContent {
    width: 100%;
    display: flex;
    justify-content: center;
}

.imageWrapper,
.soloImageWrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 0 0 auto;
    width: 480px;
    height: 600px;
    position: relative;
    margin-right: 30px;
}

.soloImageWrapper {
    width: 480px;
    margin: 0;
}

.image,
.soloImage {
    display: block;
    max-width: 480px;
    max-height: 600px;
    border-radius: var(--border-radius-full);
}

.soloImage {
    max-width: 480px;
    width: 480px;
}

.tag1 {
    top: 60px;
    right: -32px;
}

.tag2 {
    top: 300px;
    left: 30px;
}

.tag3 {
    top: 392px;
    right: -34px;
}

.benefits,
.soloItem {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 32px;
    width: 100%;
    max-width: 624px;
}

.soloItem {
    gap: 24px;
    max-width: 452px;
    margin-left: 120px;
    margin-right: 120px;
}

@media (width <= 1024px) {
    .soloContainer {
        padding: 80px 20px;
    }

    .soloContent{
        align-items: center;
        justify-content: center;
        flex-direction: column-reverse;
        gap: 40px;
    }

    .container {
        padding: var(--spacing-40) var(--spacing-20);
    }

    .header {
        margin-bottom: 30px;
    }

    .label {
        margin-bottom: var(--spacing-16);
    }

    .content {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }

    .benefits {
        order: 1;
        gap: 16px;
    }

    .imageWrapper{
        order: 2;
        width: 335px;
        height: 420px;
        margin-right: 0;
    }

    .soloImageWrapper {
        width: 335px;
        height: 420px;
    }

    .soloImage{
        max-width: 335px;
    }

    .soloItem{
        margin: 0;
    }

    .image {
        max-width: 335px;
    }

    .tag1 {
        top: 42px;
        right: 7px;
    }

    .tag2 {
        top: 210px;
        left: 20px;
    }

    .tag3 {
        top: 273px;
        right: 29px;
    }
}
