a.external-link:not(.btn__entry) {
    font-size: 16px;
    font-weight: 400;
    line-height: calc(32 / 16);
    color: #097BB7;
    text-decoration: none;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    display: inline-block;
}

@media only screen and (max-width: 991px) {
    a.external-link:not(.btn__entry) {
        font-size: 1.4rem;
    }
}

@media only screen and (max-width: 767px) {
    a.external-link:not(.btn__entry) {
        font-size: 1.2rem;
        line-height: 2.6666666667;
    }
}

a.external-link:not(.btn__entry):hover {
    opacity: 0.7;
    text-decoration: underline;
}
a.external-link:not(.btn__entry)[target=_blank] {
    position: relative;
    padding-right: 20px;
    display: inline-block;
}

a.external-link:not(.btn__entry)[target=_blank]::after {
    content: "";
    background: url("pdf.svg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 13px;
    height: 13px;
    position: absolute;
    top: 50%;
    right: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}