.paragraph--type--layout-3-col {
    margin: 0;
    padding: 172px 180px 117px;
    padding: var(--size-128) 180px var(--size-167);
    position: relative;

    &.bg_color_pink {
        background: linear-gradient(69deg, var(--pink-dark) -0.12%, var(--pink-light) 174.36%);
    }

    &.bg_color_gold {
        background: linear-gradient(93deg, #F7C964 3.03%, #F2A44A 38.97%);
    }

    & .main-description {
        margin-bottom: 2rem;
        margin-top: -1rem;
        font-size: var(--size-18);
        font-family: var(--font-sans);
    }

    & h2 {
        color: var(--blue-dark);
        font-family: var(--font-sans);
        font-size: var(--size-34);
        font-style: normal;
        font-weight: 700;
        line-height: var(--size-50);
        margin-bottom: var(--size-40);
    }

    & .content-wrapper {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: space-between;
        align-items: normal;
        align-content: normal;

        & .first,
        .second,
        .third {
            display: block;
            flex-grow: 0;
            flex-shrink: 1;
            flex-basis: auto;
            align-self: flex-start;
            width: 30%;
            padding: 0 3rem 0 0;
            z-index: 1;

            & h3 {
                color: var(--blue-dark);
                font-family: var(--font-sans);
                font-size: var(--size-24);
                font-style: normal;
                font-weight: 700;
                line-height: 150%;
                margin-bottom: var(--size-24);
                border-bottom: 4px solid var(--ucgold);
                display: inline-block;
            }

            & p {
                font-family: var(--font-sans);
                font-size: var(--size-18);
                font-style: normal;
                font-weight: 400;
                line-height: 150%;
                margin: .2rem 0;
            }
        }

        &.links {
            margin-top: 1.5rem;
        }

        & a.learn-more {
            color: var(--blue-dark);
            font-family: var(--font-sans);
            font-size: var(--size-18);
            font-style: normal;
            font-weight: 700;
            line-height: 150%;
            /* 27px */
            text-decoration-line: underline;
            position: relative;
            display: block;
            margin-top: 1rem;

            &.external-_blank {
                &:after {
                    width: 25px;
                    content: url('../../../images/icons/launch.svg');
                    position: absolute;
                    padding-left: 5px;
                    transform: translateX(0);
                    transition: transform 0.2s ease;
                    transition-delay: .1s;
                }
            }
        }

        &.col-1-1-0 {

            & .first,
            .second {
                width: 45%;
            }

            & .third {
                display: none;
            }
        }

        &.col-1-0-0 {
            & .first {
                width: 100%;
            }

            & .third,
            .second {
                display: none;
            }
        }
    }

    &.hide-rays .true-ray {
        display: none;
    }
}

.page-node-type-page .paragraph--type--layout-3-col {
    & .content-wrapper {

        & .first,
        .second,
        .third {
            & h3 {
                border-bottom: 4px solid var(--blue);
            }
        }
    }
}




@media screen and (max-width: 767px) {
    .paragraph--type--layout-3-col {
        padding: 0 1.6rem;

        & .content-wrapper {
            flex-direction: column;
            padding: 0;

            & .first,
            .second,
            .third {
                width: 100% !important;
                margin-bottom: 3rem;
                padding: 0;

                & p {
                    margin-bottom: 1rem;
                }

                & a:not(.learn-more) {
                    text-decoration: none;
                }

                & h3 {
                    display: block;
                }
            }
        }
    }
}

@media screen and (max-width: 1370px) {
    .paragraph--type--layout-3-col {
        padding: var(--global-side-padding-medium);
    }
}

@media screen and (max-width: 1023px) {
    .paragraph--type--layout-3-col {
        padding: 4rem var(--global-side-padding-small);

        & .true-ray {
            display: none;
        }
    }
}