section.title {
    color: white;

    div.badges {
        position: absolute;
        top: -40px;
        display: flex;
        flex-wrap: wrap;
        gap: 8px;

        span.badge {
            background-color: var(--colourPrimary);
            color: white;
            border-radius: 11px;
            padding-left: 11px;
            padding-right: 11px;
            padding-top: 5px;
            padding-bottom: 5px;
        }
    }
}

section.body {
    display: flex;
    flex-direction: column;
    gap: 22px;

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

        > div.card {
            padding: 60px;
        }
    }

    p:not(:first-of-type) {
        margin-top: 22px;
    }
}

section.break.actions {
    margin-top: 100px;

    p.title {
        font-weight: bold;
        color: white;
        text-align: center;
        font-size: 1.8rem;
        margin-top: -70px;
        z-index: 1;
        position: relative;
    }

    > div.wrapper {
        margin-top: 22px;
        margin-bottom: -50px;
        display: flex;
        gap: 22px;
        justify-content: space-between;
        flex-wrap: wrap;
        justify-content: center;

        > div {
            min-width: 300px;
            max-width: 400px;
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 22px;
            color: white;
            text-align: center;
            justify-content: flex-end;

            &.web {
                p {
                    span {
                        display: block;
                        text-align: center;
                        font-weight: bold;
                    }
                }
            }
        }
    }
}