.audience-router {
    background-color: #fff;

    .icon {
        height: 60px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .headline {
        display: block;
        color: var(--abc-red);
        font-size: 1.125rem;
        font-family: DaxWeb, sans-serif;
        line-height: 120%;
        margin-bottom: 1rem;

        @media (min-width: 992px) {
            font-size: 1.375rem;
        }
    }

    &.border-1 {
        background-color: #fff;
        box-shadow: 0 0 10px 0 rgba(206, 213, 218, 1);

        .item {
            padding: 1.875rem 0.9375rem 5rem 0.9375rem;
        }

        .button {
            left: 0.9375rem;
            right: 0.9375rem;
        }

        h4 {
            padding: 0 15px;
        }
    }

    .ce-headline-center {
        margin-bottom: 1rem;
    }

    .item {
        border-bottom: 1px solid #ced4da;
        padding: 2.5rem 1.875rem 5rem 1.875rem;
        position: relative;
        text-align: center;

        @media (min-width: 768px) {
            border-bottom: none;
            height: 100%;
        }

        * {
            position: relative;
            z-index: 1;
        }

        &::before {
            display: block;
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: #f6f6f6;
            background: radial-gradient(circle, #fefefe 0%, #f6f6f6 95%);
            opacity: 0;
            transition: all 200ms ease-in;
            box-shadow: 0 0 10px 0 rgba(206, 213, 218, 1);
        }

        &:not(.disable-hover):hover::before {
            top: -15px;
            left: -15px;
            right: -15px;
            bottom: -15px;
            opacity: 1;
        }
    }

    .icon {
        margin-bottom: 30px;
    }

    .button {
        position: absolute;
        bottom: 1.875rem;
        left: 1.875rem;
        right: 1.875rem;
        white-space: nowrap;
        text-align: center;

        a {
            display: inline-block;
        }
    }
}
