.paragraph--type--feature .region {
    max-width: none;
    padding: 0;
    position: relative;
    font-size: 0;
}

.paragraph--type--feature .image {
    background-size: cover;
    object-position: center;
}

.paragraph--type--feature .image img,
.paragraph--type--feature .secondary-image img,
.paragraph--type--feature .secondary-image > div {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.paragraph--type--feature .content-wrap {
    background-repeat: no-repeat;
    position: relative;
    display: grid;
    grid-template-areas: "same";
}

.paragraph--type--feature .content-wrap > * {
    grid-area: same;
}
.paragraph--type--feature .content-wrap h2 {
    font-weight: bold;
    color: var(--color-uw-body);
    margin-bottom: 1rem;
    font-size: 3.5rem;
}

.paragraph--type--feature .content-wrap .copy {
    margin-bottom: 1rem;
    line-height: 1.5;
}

.paragraph--type--feature .overlay {
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    background: rgba(255,255,255,.7);
    z-index: 500;
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px);
}

.paragraph--type--feature .content-inner {
    z-index: 500;
    padding: 3rem 9rem;
    margin: auto 2rem;
    border: 2px solid rgba(255,255,255,.3);
    border-radius: 15px;
    max-width: var(--content-width-narrow);
    position: relative;
    margin-inline: auto;
    width: 100%;
}


.paragraph--type--feature .content-inner-wrap{
    padding: 2rem;
    display: flex;
}

.paragraph--type--feature .content-inner .button-wrap.button{
    display: flex;
    align-items: center;
}

.paragraph--type--feature .copy {
    font-size: 2rem;
}

.paragraph--type--feature.count-3 .button-wrap > div {
    display: flex;
    justify-content: space-evenly;
    width: 100%;
    gap: 2rem;
}

.paragraph--type--feature.count-2 .content-inner {
    display: flex;
    justify-content: space-around;
}

.paragraph--type--feature.count-1 .content-inner {
    display: flex;
    justify-content: space-around;
    gap: 2rem;
}

.paragraph--type--feature .links-wrap {
    max-width: 52rem;
    text-align: right;
    margin: 0 auto;
}

.paragraph--type--feature .links-wrap a {
    color: var(--color-uw-red);
}

.paragraph--type--feature .links-wrap a::after {
    content: ' ';
    background-image: url(../images/arrow-red.svg);
    background-repeat: no-repeat;
    display: inline-block;
    width: 20px;
    height: 15px;
    vertical-align: middle;
    margin-left: 10px;
    transition: all 0.25s ease-in;
}

.paragraph--type--feature .links-wrap a:hover,
.paragraph--type--feature .links-wrap a:focus-visible {
    text-decoration: none;
}

.paragraph--type--feature .links-wrap a:hover::after,
.paragraph--type--feature .links-wrap a:focus-visible::after {
    margin-right: -5px;
    margin-left: 15px;
}

.paragraph--type--feature .button a {
    margin: 1rem 0;
    color: #fff;
    background-color: var(--color-uw-red);
    min-width: 20rem !important;
    line-height: 1.2;
}

.paragraph--type--feature .button a:hover,
.paragraph--type--feature .button a:focus-visible {
    color: var(--color-uw-red);
    background-color: #fff;
}

@media screen and (max-width: 1405px) {
    
    .paragraph--type--feature .button-wrap.button{
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

@media screen and (max-width: 980px) {
    .paragraph--type--feature .content-wrap {
        padding: 8rem 0 2rem;
        margin-top: -5rem;
    }

  

    .paragraph--type--feature.count-1 .content-inner {
        display: block;
    }
    .paragraph--type--feature.count-3 .button-wrap > div div {
        max-width: 20rem;
        margin-inline: auto;
    }
    .paragraph--type--feature .button a{
        padding-inline: 0.5rem !important;
        min-width: 18rem !important;
    }
    
 
}

@media screen and (max-width: 775px){
    .paragraph--type--feature.count-3 .button-wrap > div {
        display: block;
        text-align: center;
    }
}

@media screen and (max-width: 1330px) {
    .paragraph--type--feature .content-wrap {
        padding: 2rem 4vw;
        margin-top: 0;
        min-height: auto;
        background-color: var(--color-uw-page);
    }

    .paragraph--type--feature .overlay {
        display: none;
    }

    .paragraph--type--feature .region {
        min-height: auto;
    }

    .paragraph--type--feature .content-inner {
        padding: 1rem;
        margin: 0;
    }

    .paragraph--type--feature .secondary-image {
        display: none;
    }
}