/*
.coverage-single-content h2 {
    font-size: 2.5rem;
    font-weight: 500;
    line-height: 3.3rem;
    letter-spacing: 0.01em;
}

.coverage-single-content p {
    margin-bottom: 25px;
    text-align: justify;
    font-family: "Open Sans", sans-serif;
    font-size: 1.6rem;
    line-height: 2.6rem;
    margin-bottom: 25px;
}

.coverage-single-content h3 {
    font-size: 1.7rem;
    font-weight: 500;
    line-height: 2.5rem;
    letter-spacing: 0.01em;
    margin-top: 40px;
    margin-bottom: 15px;
}

.coverage-single-content a {
    position: relative;
    padding-right: 1.3em;
    text-decoration: none;
    color: #E97D1D;
    -webkit-transition: color .2s linear;
    transition: color .2s linear;
}

.coverage-single-content a::after {
    position: absolute;
    display: block;
    content: "";
    width: 0.7em;
    height: 0.7em;
    right: 0;
    top: calc(50% - 0.3em);
    background: url(../img/icons/arrow-right-orange.svg) no-repeat center/0.7em;
    -webkit-transition: -webkit-transform .2s linear;
    transition: -webkit-transform .2s linear;
    transition: transform .2s linear;
    transition: transform .2s linear, -webkit-transform .2s linear;
}

@media (hover) {
    .coverage-single-content a:hover:after {
        -webkit-transform: translateX(5px);
        transform: translateX(5px);
    }
}

.coverage-single-content .coverage-vc-block + .coverage-vc-block {
    margin-top: 80px;
}

.coverage-single-content img {
    width: 100%;
    height: auto;
}
*/