/* Blog links */
.blog-highlights {
    padding: 0 20px;
    margin-bottom: 60px;
}

.blog-highlights .inner {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

.blog-highlights .item {
    width: 100%;
    max-width: 400px;
    margin: 0 auto 25px;
}

.blog-highlights .img-cont {
    position: relative;
    z-index: 1;
    padding: 0 20px;
}

.blog-highlights .img-cont img {
    width: 100%;
    height: auto;
    vertical-align: middle;
}

.blog-highlights .content {
    position: relative;
    padding: 18px;
}

.blog-highlights .content::after {
    position: absolute;
    content: "";
    z-index: -1;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: var(--red);
}

.blog-highlights .title {
    font-size: 24px;
    line-height: 24px;
    font-family: var(--font-display-alt);
    text-transform: uppercase;
    font-weight: 700;
    color: var(--off-white);
}

.blog-highlights .date {
    margin-bottom: 5px;
    font-size: 18px;
    line-height: 20px;
    font-family: var(--font-body);
    font-weight: 500;
    color: var(--off-white);
}

.blog-highlights .text {
    line-height: 22px;
    color: var(--off-white);
    margin-bottom: 0;
}

.blog-highlights .text p{
    font-size: inherit;
    color: inherit;
    line-height: inherit;
    margin-bottom: 0;
}

.blog-highlights .read-more {
    color: var(--off-white);
    text-transform: uppercase;
    font-weight: 700;
    font-family: var(--font-body);
}

@media only screen and (min-width: 1025px) {
    .blog-highlights {
        width: calc(100% - 110px);
        margin-left: auto;
    }

    .blog-highlights .inner {
        display: flex;
        flex-wrap: wrap;
    }

    .blog-highlights .item {
        position: relative;
        max-width: 640px;
    }

    .blog-highlights .img-cont {
        padding: 0;
        max-width: 290px;
        box-shadow: 0 0 38px rgba(0, 0, 0, 0.35);
    }

    .blog-highlights .content {
        position: absolute;
        left: 260px;
        padding: 20px 20px 20px 48px;
        top: 50%;
        transform: translateY(-50%);
        background-image: none;
    }
}

@media only screen and (min-width: 1200px) {
    .blog-highlights .item {
        width: 49%;
        max-width: none;
    }

    .blog-highlights .title {
        font-size: calc(20px + (24 - 20) * ((100vw - 1200px) / (1700 - 1200)));
        line-height: 1;
    }
    .blog-highlights .date {
        font-size: calc(16px + (18 - 16) * ((100vw - 1200px) / (1700 - 1200)));
        line-height: 1.1;
    }
    .blog-highlights .content .text {
        font-size: calc(15px + (18 - 15) * ((100vw - 1200px) / (1700 - 1200)));
        line-height: 1.2;
    }
}
@media only screen and (min-width: 1700px) {
    .blog-highlights .title {
        font-size: 24px;
        line-height: 24px;
    }
    .blog-highlights .date {
        font-size: 18px;
        line-height: 20px;
    }
    .blog-highlights .content .text{
        font-size: 18px
    }
}

.blog-link-cont {
    display: block;
    text-align: center;
    padding: 23px 0;
    margin-bottom: 56px;
}

.blog-link-cont .link {
    padding: 21px 39px;
    color: var(--off-white);
    background-color: var(--red);
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 18px;
    line-height: 20px;
    text-transform: uppercase;
}

.blog-link-cont .link .icon {
    margin-left: 5px;
}

@media only screen and (min-width: 1025px) {
    .blog-link-cont {
        margin-left: auto;
    }

    .blog-link-cont .link {
        padding: 21px 42px;
    }
}