article {
    padding: 0 10px;
    margin: 60px auto;
    max-width: 1050px;
}

h1.entry-title {
    font: 700 30px/1.1 var(--all-round-gothic);
    color: var(--green-dark-3);
    margin-bottom: 6px;
}

.media-inner h1.entry-title {
    font: 700 30px/1.1 var(--all-round-gothic);
    color: var(--green-dark-3);
}

.single-hero-video {
    margin: 30px auto;
    border-radius: 10px;
    /* overflow: hidden; */
    width: 100%;
    aspect-ratio: 1.795;
}

.single-media-hero-img {
    display: flex;
    margin: 30px auto;
    border-radius: 5px;
    overflow: hidden;
    width: 100%;

    box-shadow: 0 0 13px 3px rgba(0, 0, 0, 0.15);
}

.single-media-hero-img img {
    width: 100%;
    height: auto;
}

iframe {
    width: 100%;
    height: 100%;
}

.entry-content p {
    font: 300 20px/1.5 var(--Lexend);
}

.single-widgets {
    margin-top: 80px;
    justify-content: space-between;
    align-items: end;
}

.social-share-widget {
    margin-bottom: 0;
}

a.back-btn {
    font-size: 24px;
}

a.back-btn {
    font-size: 20px;
    color: var(--green-dark-2);
    position: relative;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    flex-direction: row-reverse;
}

a.back-btn:hover {

}

a.back-btn:after {
    content: '';
    position: absolute;
    background: var(--green-dark-2);
    bottom: -3px;
    height: 2px;
    width: 0;
    transform-origin: right;
    transition: all 0.5s cubic-bezier(0.4,0,0.2,1);
}

a.back-btn:hover:after {
    width: 100%;
}

a.back-btn svg {
    height: 18px;
    width: auto;
    margin-top: 2px;
    transform: scaleX(-1);
}

button.social-btn svg {
    width: 34px;
    height: 34px;
}


/*  Related section  */

.related-section {
    background-color: #bdc9be3b;
    padding-bottom: 60px;
}

.related-slider-widget {
    position: relative;
}

.related-section .related-list {
    display: block;
    margin: 0 -10px;
}

.related-section .related-list .post-item {
    margin: 0 10px;
}

.related-section .section-title {
    text-align: center;
}

/* Slick Navigators Styles */

.content-slider-navigation {
    position: absolute;
    top: auto;
    /*bottom: 80px;*/

    bottom: -60px;
}

.content-slider-navigation .arrows {
    gap: 16px;
    justify-content: space-between;
}

.slick-arrow svg {
    width: 32px;
    height: 32px;
    display: flex;
    cursor: pointer;
    fill: var(--brand-grey);
}

@media (min-width: 991px) {
    .content-slider-navigation {
        position: absolute;
        /*top: 0;*/
        right: 0;
        bottom: auto;
        transform: none;

        top: -75px;
    }

    .slick-arrow svg {
        width: 40px;
        height: 40px;
        display: flex;
        cursor: pointer;
        fill: var(--brand-grey);
    }
}


@media (max-width: 991px) {
    .single-post.separate-containers .inside-article,
    .single-media.separate-containers .inside-article {
        padding-inline: 0;
    }

    article {
        padding: 0 20px;
    }
}

@media (min-width: 768px) {
    .related-section .section-title {
        text-align: left;
    }
}

@media (min-width: 991px) {
    article {
        padding: 0 30px;
        margin: 80px auto;
    }

    h1.entry-title {
        font: 700 48px/1.3 var(--all-round-gothic);
        margin-bottom: 0;
    }

    .media-inner h1.entry-title {
        font: 700 38px/1.3 var(--all-round-gothic);
    }

    button.social-btn svg {
        width: 40px;
        height: 40px;
    }

    a.back-btn {
        font-size: 24px;
    }

}