.av-share-box {
    float: none;
}

.entry-content-header + .av-share-box {
    margin-bottom: 50px;
}

/* Sidebar */
.blog-sidebar {
    padding-right: 10px;
}

.blog-sidebar .inner_sidebar .widget {
    padding: 50px 0;
    border-bottom: 1px solid #E1E1E1;
}

.blog-sidebar .inner_sidebar .textwidget > :last-child {
    margin-bottom: 0;
}

.blog-sidebar .inner_sidebar .widget:first-child {
    padding-top: 0;
}

.blog-sidebar .inner_sidebar .widget:last-child {
    padding-bottom: 0;
    border-bottom: none;
}

/* Jump Links */
.blog-jump-link-row {
    display: flex;
    flex-wrap: wrap;
    margin: -4px;
}

.blog-jump-link-col {
    padding: 4px;
}

.blog-jump-link {
    display: inline-block;
    padding: 10px;
    border-radius: 5px;
    background-color: #D6E7EA;
    font-size: 14px;
}

a.blog-jump-link {
    color: #043D50;
    transition: background-color 0.3s, color 0.3s;
}

a.blog-jump-link:hover,
a.blog-jump-link:focus {
    background-color: #063e51;
    color: #fff;
    text-decoration: none;
}

/* CTAs */
.blog-cta {
    margin: 0 auto;
    max-width: 450px;
}

.blog-cta--center {
    text-align: center;
}

.blog-cta img {
    margin-bottom: 20px;
    object-fit: contain;
}

.blog-cta p {
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 15px;
    color: #919191;
}

.blog-cta .btn {
    display: block;
    margin-top: 0;
    width: 100%;
    border-color: #279FB4;
    text-align: center;
    color: #279FB4 !important;
}

.blog-cta .btn:after {
    content: '\e908';
    display: inline-block;
    margin-left: 12px;
    font-family: 'icomoon';
    font-size: 12px;
    transition: transform 0.3s;
}

.blog-cta .btn:hover {
    background-color: transparent;
    box-shadow: 0px 0px 10px #289fb2;
}

.blog-cta .btn:hover::after {
    transform: translateX(4px);
}

.blog-cta-row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin: -16px;
}

.blog-cta-row:before {
    content: '';
    display: block;
    height: 1px;
    width: 100%;
    max-width: 450px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #E1E1E1;
}

.blog-cta-col {
    flex: 0 0 auto;
    padding: 16px;
    width: 100%;
}

.blog-cta-row .blog-cta {
    margin-top: 30px;
    margin-bottom: 30px;
}

.blog-cta-row .blog-cta-col:first-child .blog-cta {
    margin-top: 0;
}

.blog-cta-row .blog-cta-col:last-child .blog-cta {
    margin-bottom: 0;
}

@media (min-width: 768px) {
    .blog-cta-row {
        position: relative;
        justify-content: center;
        overflow: hidden;
    }

    

    .blog-cta-col {
        width: auto;
    }

    .blog-cta-col:last-child {
        border-right: none;
    }

    .blog-cta-row .blog-cta .btn {
        display: inline-block;
        min-width: 320px;
        width: auto;
    }
}

@media (min-width: 1025px) {
    .blog-cta-row {
        justify-content: space-between;
    }

    .blog-cta-row:before {
        width: 1px;
        height: 100%;
    }

    .blog-cta-row .blog-cta {
        margin-top: 0;
        margin-bottom: 0;
    }
}

/* Related Resources */
.related-resources-section {
    background-color: #063E51;
}

.related-resources-section-intro-content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.related-resources-section-intro-content h2 {
    margin-bottom: 0;
    color: #fff;
}

.related-resources-section-intro-content .btn {
    display: none;
    margin-top: 0;
    border: none;
    border-radius: 13px;
    background-color: #FF244C;
    font-size: 16px;
    color: #fff !important;
}

.related-resources-section-intro-content .btn:hover {
    box-shadow: 0 0 10px #C42222;
}

.related-resources-row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin: -16px;
}

.related-resources-col {
    flex: 0 0 auto;
    padding: 16px;
    width: 100%;
}

.related-resource-link {
    display: block;
    height: 100%;
    color: #fff;
    text-decoration: none;
}

.related-resource-link:hover,
.related-resource-link:focus {
    text-decoration: none;
}

.related-resource {
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
}

.related-resource img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    aspect-ratio: 382 / 200 auto;
    transition: transform 0.3s;
    background-color: #fff;
}

.related-resource-link:hover .related-resource img {
    transform: scale(1.02);
}

.related-resource-body {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex: 1;
    padding: 32px;
    background-color: #00161D;
}

.related-resource-body h3 {
    margin-bottom: 32px;
    color: #fff;
}

.related-resource-btn {
    margin-top: 0;
    border: 2px solid #fff;
    border-radius: 13px;
    color: #fff;
}

@media (min-width: 600px) {
    .related-resources-col {
        width: 50%;
    }

    .related-resources-section-intro-content {
        justify-content: space-between;
    }

    .related-resources-section-intro-content h2 {
        font-size: 40px;
    }

    .related-resources-section-intro-content .btn {
        display: block;
    }

    .related-resources-section-outro-content .btn {
        display: none;
    }
}

@media (min-width: 1024px) {
    .related-resources-section-intro-content h2 {
        font-size: 50px;
    }

    .related-resources-col {
        width: 33.33%;
    }
}

@media (min-width: 1200px) {
    .related-resource-body h3 {
        margin-bottom: 32px;
        font-size: 28px;
        color: #fff;
    }
}

/* Newsletter Section */
.blog-newsletter-section {
    position: relative;
    z-index: 1;
}

.blog-newsletter-section-intro-content {
    text-align: center;
    color: #fff;
}

.blog-newsletter-section-intro-content h2 {
    color: #fff;
}

.blog-newsletter-section-intro-content p {
    font-size: 20px;
}

.blog-newsletter-section-bg {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    object-fit: cover;
}

.blog-newsletter-section:after {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    background: linear-gradient(to right, #FF244C, #279FB4);
    opacity: 0.88;
}

.blog-newsletter-section-inner {
    position: relative;
    z-index: 3;
    max-width: 800px !important;
}

@media (min-width: 1024px) {
    .blog-newsletter-section-intro-content h2 {
        font-size: 50px;
    }
}
