.related_lotions_section {

    & .container {
        position: relative;
        z-index: 2;
        padding-bottom: 100px;

        & .section_inner {
            width: 100%;

            & h2 {
                width: 100%;
                text-align: center;
                font-weight: 400;
                font-size: 5rem;
                margin: 0 0 5rem;
                line-height: 1;
                color: var(--primary);
            }

            /* Grid */
            & .lotion-grid {
                display: flex;
                flex-wrap: wrap;
                gap: 5rem;
                justify-content: center;

                & .lotion-card {
                    display: flex;
                    flex: 0 1 calc((100% - 10rem) / 3);
                    max-width: 40rem;
                    border: 2px solid var(--primary);
                    padding: 3rem;
                    text-align: center;
                    background: var(--white);
                    flex-direction: column;

                    @media (max-width: 991px) {
                        flex: 0 1 calc((100% - 5rem) / 2);
                    }

                    @media (max-width: 767px) {
                        flex: 0 1 100%;
                    }

                    & .lotion-img img {
                        width: auto;
                        height: 23rem;
                        margin-bottom: 2rem;
                    }

                    & .lotion-title {
                        color: #42251A;
                        text-align: center;
                        font-family: "Aboreto";
                        font-size: 2.4rem;
                        font-style: normal;
                        font-weight: 400;
                        line-height: 98%;
                        letter-spacing: 4.6px;
                        text-transform: uppercase;
                        margin: 2rem 0 3rem;
                    }

                    & .buttons {
                        margin-top: auto;

                        & a:first-of-type {
                            margin-bottom: 2rem;
                        }
                    }
                }
            }
        }
    }
}
