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

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

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.buttonWrapperDesktop {
    display: flex;
}

.buttonWrapperMobile {
    display: none;
}

.contentDesktop {
    display: flex;
    width: 100%;
}

.contentMobile {
    display: none;
    width: 100%;
}

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

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

    .header {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }

    .buttonWrapperDesktop {
        display: none;
    }

    .buttonWrapperMobile {
        display: flex;
    }

    .contentDesktop {
        display: none;
        width: 100%;
    }

    .contentMobile {
        display: flex;
        width: 100%;
    }
}
