.container.safer-gambling {
    .sf-guidelines {
        display: flex;
        flex-wrap: wrap;
        list-style: none;


        li {
            margin: 0 1.25em 1.25em 0;
            width: 100%;
            list-style: none;

            img {
                display: block;
                margin-bottom: 0.5rem;
            }

            a {
                display: block;
                text-decoration: none;

                &:HOVER {
                    text-decoration: underline;
                }
            }
        }
    }

    @media (min-width: 600px) {
        .sf-guidelines {
            li {
                width: calc(33.33333% - .83333em);
            }

            li:nth-child(3n) {
                margin-right: 0;
            }
        }
    }

    .sg-cards {
        gap: 1rem;
        display: flex;
        padding: 2.5rem;
    }
    .sg-desc {
        text-align: left;
    }

    .sg-card {
        border-radius: .6rem;
        padding: 3rem;
        align-items: center;
        justify-content: space-between;
        display: flex;
        flex-direction: column;
        box-shadow: 0 .125rem .25rem rgba(0, 0, 0, .075);
        background: white;
        color: rgb(108 117 125 / 1);
        text-align: center;
        width: 100%;
        max-height: 100%;
    }

    .sg-icon {
        max-width: 100%;

        img {
            margin: 0 0 1rem;
        }
    }

    .sg-btn {
        background-color: rgb(101 51 209/1);
        border-color: rgb(255 255 255/1);
        border-width: 1px;
        padding: 1rem;
        border-radius: .5rem;
        color: #FFFFFF;
        display: inline-flex;
        font-size: 1.125rem;
        justify-content: center;
        line-height: 1.5rem;
        width: 100%;
        text-align: center;
        text-decoration: none;
        font-weight: bold;
        margin: 2.5rem 0;
    }

    .sg-hero {
        font-weight: 700;
        font-size: 1.25rem;
        text-align: left;
    }

    .sg-ftr {
        .sg-pr {
            margin-bottom: 1rem;
        }
    }

    .sg-btn {
        padding: 1rem;
    }

    .sg-grayscale {
        filter: grayscale(100%);
    }

    @media (min-width: 768px) {
        .sg-cards {
            flex-direction: row;
        }
    }

    @media (min-width: 768px) {
        .sg-cards {
            flex-direction: row;
        }
    }

    @media (max-width: 768px) {
        .sg-cards {
            flex-direction: column;
            gap: 1.5rem;
        }

        .sg-card {
            padding: 1rem;
        }
    }
}