.price {
    .layout {
        display: grid;
        gap: 100px;

        .wrapper {
            width: 80%;
            margin: 0 auto;
            background-color: rgb(15, 30, 50);
            border-radius: 8px;
            display: grid;
            grid-template-columns: 440px 1fr;

            @media (width<=1000px) {
                width: 100%;
            }

            @media (width<=768px) {
                grid-template-columns: none;
            }


            h2 {
                -webkit-text-stroke: 4px rgb(24, 24, 24);
                paint-order: stroke;
                grid-column: span 2;
                padding: 24px;
                font-size: 24px;
                font-weight: bold;
                text-align: center;
                background-image: linear-gradient(90deg, rgba(61, 200, 194, 1), rgba(61, 156, 194, 1) 50%, rgba(197, 125, 233, 1));
                border-top-left-radius: 8px;
                border-top-right-radius: 8px;

                @media (width<=768px) {
                    grid-column: auto / auto;
                    font-size: 20px;
                }
            }

            .outer {
                margin: 32px 24px;
                border-radius: 8px;
                background-color: rgb(4, 14, 31);
                display: grid;

                @media (width<=768px) {
                    margin: 32px 16px 16px;
                }

                .inner {
                    padding: 16px;
                    display: flex;
                    justify-content: space-between;
                    align-items: end;

                    &:nth-child(1) {
                        border-bottom: solid 1px;
                    }

                    &:nth-child(2) {
                        border-bottom: solid 1px;
                    }

                    h3 {
                        background-color: inherit;
                        font-size: 20px;
                        font-weight: bold;

                        @media (width<=768px) {
                            font-size: 18px;
                        }
                    }

                    p {
                        font-size: 20px;
                        font-weight: bold;

                        @media (width<=768px) {
                            font-size: 18px;
                        }

                        span {
                            font-size: 48px;
                            font-weight: bold;
                            line-height: 1;
                            padding: 0 8px;

                            @media (width<=768px) {
                                font-size: 32px;
                            }
                        }
                    }
                }
            }

            .text {
                margin: 16px 16px 32px;

                h3 {
                    font-weight: bold;
                    font-size: 20px;
                }

                ul {
                    padding-left: 32px;

                    li {
                        list-style: disc;

                        span {
                            text-decoration: underline wavy red;
                        }
                    }
                }
            }
        }
    }
}