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

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 64px;
    width: 100%;
    max-width: var(--content-max-width);
    padding: 120px;
}

.header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.title {
    text-align: center;
}

.content {
    display: flex;
    width: max-content;
}

.content div:last-child {
    margin-left: -1px;
}

@media (width <= 1024px) {
    .container {
        padding: 64px 40px;
    }

    .content {
        flex-direction: column;
        margin-left: 0;
    }

    .content > div:first-child {
        order: 2;
        margin-top: -1px;
    }

    .content > div:last-child {
        order: 1;
        margin-left: 0;
    }
}

@media (width <= 768px) {
    .container {
        padding: 64px 20px;
        gap: 40px;
    }

    .content {
        flex-direction: column;
        margin-left: 0;
    }

    .content > div:first-child {
        order: 2;
        margin-top: -1px;
    }

    .content > div:last-child {
        order: 1;
        margin-left: 0;
    }
}
