.root {
    width: 100%;
}

.wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    max-width: var(--content-max-width);
    max-height: var(--content-max-height);
    aspect-ratio: 1 / 1.5;
    display: grid;
    place-items: center;
}

.container {
    position: relative;
    width: 100%;
    height: 100%;
    max-width: var(--content-max-width);
    max-height: var(--content-max-height);
    aspect-ratio: 1 / 1.5;
    margin: 0 auto;
}

.content {
    width: 100%;
    max-width: 488px;
    padding: 0 var(--spacing-20);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 1;
}

.description {
    margin-top: var(--spacing-20);
}

.actions {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: var(--spacing-32);
}

.mobile {
    display: none;
}

@media (width <= 1200px) and (width > 768px) {
    .content {
        padding: 0;
        max-width: 450px;
    }
}

@media (width <= 768px) {
    .root {
        height: 726px;
    }

    .content {
        padding: 0 var(--spacing-32);
        max-width: 375px;
    }

    .description {
        margin-top: var(--spacing-12);
    }

    .actions {
        margin-top: var(--spacing-12);
    }

    .mobile {
        display: flex;
    }

    .desktop {
        display: none;
    }
}
