.related_equipment_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);

                @media (max-width: 991px) {
                    font-size: 3rem;
                    margin: 0 0 3rem;
                    text-align: center;
                }
            }

            /* Grid */
            & .sunbed-grid {
                @media (min-width: 992px) {
                    display: flex;
                    flex-wrap: wrap;
                    gap: 5rem;
                    justify-content: center;
                }

                & .sunbed-card {
                    display: flex;
                    border: 2px solid var(--primary);
                    padding: 3rem;
                    text-align: center;
                    background: var(--white);
                    flex-direction: column;

                    @media (min-width: 992px) {
                        flex: 0 1 calc((100% - 10rem) / 3);
                        max-width: 40rem;
                    }

                    & .sunbed-img {
                        display: flex;
                        align-items: center;
                        justify-content: center;

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

                    & .sunbed-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;
                        }
                    }
                }
            }
        }
    }
}
