
.cta {
    position: relative;
    display: block;
    width: 100%;
    background: #000;
    overflow: hidden;
    padding: 24px 0 22px;
}

.cta-cont .cta,
.mobile-header-cta-container .cta {
    height: 150px;
}

.cta .background-image {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
}

.cta .background-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
    transform: scale(1);
}

.cta .title {
    position: relative;
    margin: 0 auto;
    background-size: cover;
    background-repeat: no-repeat;
    text-align: center;
    z-index: 1;

}

.cta.enews .title {
    width: 136px;
}

.cta.vguide .title {
    width: 155px;
}

.mobile-header-cta-container {
    display: grid;
    gap: 2px;
    margin-bottom: 2px;

}

@media (min-width: 40em) {
    .cta-cont .cta {
        height: 153px;
    }
}

@media (min-width: 64em) {
    .cta .background-image img {
        transition: opacity ease-in-out 0.6s, transform ease-in-out 0.6s;
    }
    .cta:hover .background-image img {
        opacity: 0.85;
        transform: scale(1.05);
    }

    .cta-cont .cta {
        height: 347px;
        padding-top: 68px;
    }

    .cta.enews .title {
        width: 301px;
    }

    .cta.vguide .title {
        width: 332px;
    }
}

@media (min-width: 1440px) {
    .cta.enews .title {
        width: 301px;
    }

    .cta.vguide .title {
        width: 332px;
    }
}