div.section.header > div.wrapper {
    text-align: center;

    h1 {
        font-size: 4rem;
    }

    img {
        margin-top: 36px;
        width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
}

div.streamlined {
    display: flex;
    flex-direction: column;
    gap: 22px;
    margin-top: 44px;

    > div.card {
        display: flex;
        gap: 9px;
        align-items: flex-start;
        padding: 0;

        @media (max-width: 1100px) {
            flex-direction: column !important;
            align-items: center;
        }

        &:nth-child(even) {
            flex-direction: row-reverse;
        }

        img {
            width: 100%;
            max-width: 600px;
        }

        div.content {
            padding: 12px;
            flex: 1;

            h2 {
                margin-top: 0 !important;
            }

            div.needs-login {
                display: flex;
                flex-direction: column;
                height: 200px;
                align-items: center;
                justify-content: center;
                gap: 18px;
            }

            div.options {
                margin-top: 22px !important;
                display: flex;
                flex-direction: column;
                max-width: 800px;
                margin: 0 auto;
                gap: 22px;

                p {
                    margin-top: 18px;
                }

                div.pass {
                    &:has(button.activate) {
                        form:not(.active) {
                            display: none;
                        }

                        &:has(form.active) {
                            button.activate {
                                display: none;
                            }
                        }
                    }

                    form {
                        p:last-of-type {
                            margin-bottom: 22px;
                        }

                        &:has(div.input) {
                            button {
                                margin-left: auto;
                                margin-right: 0;
                                margin-top: 22px;
                            }
                        }
                    }
                    
                    div.actions {
                        display: flex;
                        align-items: center;
                        justify-content: flex-end;
                        margin-top: 22px;
                        gap: 22px;

                        .price {
                            font-family: 'Bubblegum Sans';
                            font-size: 1.6rem;
                        }
                    }
                }
            }
        }
    }
}


div.passes {
    div.wrapper {
        display: flex;
        gap: 44px;
        margin-top: 44px;

        justify-content: center;

        div.pass {
            display: flex;

            div.card {
                max-width: 800px;
                width: 100%;

                p {
                    margin-bottom: 22px;
                }

                p.legal {
                    font-style: italic;
                    font-size: 0.9rem;
                }

                form {
                    button {
                        margin-left: auto;
                    }
                }
            }
        }
    }


}

div.summer-passes {
    margin-top: 22px;
    div.wrapper {
        h2 {
            text-align: center;
        }
    }

    img {
        max-width: 600px;
        margin: 0 auto;
    }
}