.container-blog-post {
    width: 85%;
    max-width: 1440px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 3rem;
}

.image-post-large {
    width: 80%;
	height: 350px;
    object-fit: cover;
}

.post-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 5rem;
}

.post-header * {
    text-align: center;
    width: fit-content;
}

.post-header h1 {
    font-family: 'Roboto', sans-serif;
    font-size: 36px;
    font-style: normal;
    font-weight: 500;
    line-height: 48px;
    margin-bottom: .5rem;
}
.post-header span {
    color: #767676;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-style: italic;
    font-weight: 300;
    line-height: 19px;
}

.container-blog-post article {
    max-width: 60rem;
    width: 100%;
    margin: 3rem 0;
}

.container-blog-post article h2, .container-blog-post article h3, .container-blog-post article h4, .container-blog-post article h5, .container-blog-post article h6 {
    font-family: 'Jost', sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 35px;
}

.container-blog-post article p {
    font-family: 'Jost', sans-serif;
    font-size: 18px;
    font-style: italic;
    font-weight: 300;
    line-height: 26px;
    color: #525252;
}

.container-blog-post article > ul {
    margin: 1rem 0;
    flex-direction: column;
    font-size: 18px;
    font-style: italic;
    color: #525252;
    margin-left: 3.5rem;
}

.container-blog-post footer {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.container-blog-post article > ul li, .container-blog-post article > ol li {
    list-style:initial;
    font-family: 'Jost', sans-serif;
    font-size: 18px;
    font-style: italic;
    font-weight: 300;
    line-height: 26px;
}

.container-post-small-images {
    display: flex;
    width: 100%;
    justify-content: space-between;
}

.post-quote {
    font-size: 20px !important;
    color: #111111 !important;
    border-left: #000 solid 3px;
    margin: 3rem 2rem;
    padding: 2rem;
}

.post-tags {
    display: flex;
    flex-direction: row;
    justify-self: center;
    margin-top: 4rem;
    width: 925px;
    align-items: center;
    justify-content: space-evenly;
    padding: 0 4rem;
}

.post-tags li {
    list-style: none;
    width: 220px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 .5rem;
}

.post-tags a {
    color: #fff;
    font-size: 16px;
    width: 220px;
    height: 54px;
    border-radius: 100px;
    padding: 1rem 1.5rem;
    text-align: center;
    line-height: 26px;
    font-family: 'Roboto', sans-serif;
}
.post-tags a img {
    margin-right: 1rem;
}

.facebook-button {
    background-color: #475a96;
}.twitter-button {
    background-color: #49B2E8;
}.pinterest-button {
    background-color: #D74047;
}.linkedin-button {
    background-color: #0D76B4;
}

.container-related-posts {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 85%;
    max-width: 1440px;
    margin-bottom: 3rem;
}

.container-posts {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.header-related-posts {
    font-size: 32px;
    font-weight: 500;
    margin-bottom: 4rem;
}

.article-blog {
    position: relative;
    max-width: 560px;
}

.article-blog span {
    font-family: 'Jost', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 23px;
    color: #111;
}

.blog-title {
    font-family: 'Roboto', sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 28px;
    max-width: 360px;
    color: #000;
}

.blog-date {
    position: absolute;
    top: 1rem;
    z-index: 2;
    width: 60px;
    height: 22px;
    background-color: #fff;
    font-size: 11px;
    font-weight: 500;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container-posts > a span img {
    transition: .3s ease;
}
.container-posts > a:hover span img {
    transform: translateX(1rem);
} 

.link-back-to-blog {
    background-color: transparent;
    border: 1px solid #000;
    height: 48px;
    width: 222px;
    border-radius: 100px;
    text-align: center;
    line-height: 45px;
    font-family: 'Jost', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    color: #111;

    margin-bottom: 4rem;
}
.container-blog-post article img {
    max-width: 100%;
    height: auto;
    width: auto;
    margin: auto;
    display: block;
}

.container-blog-post article .post-tags img {
  display: inline-block;
  margin-right: 1rem;
}
.linkedin-button:hover {
  background-color: #0C4E75;
}
.pinterest-button:hover {
  background-color: #AC3137;
}
.twitter-button:hover {
  background-color: #1B95D5;
}
.facebook-button {
  background-color: #202f5e;
}
b {
    font-weight: 700;
}

@media (max-width: 1350px) {
    .container-post-small-images img {
        width: 40%;
        min-width: 20rem;
    }
    .container-posts {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 900px) {
    .container-blog-post {
        width: 100%;
        overflow: hidden;
    }
    .container-blog-post article {
        width: 90%;
        margin: 2rem 0;
    }
    .container-post-small-images {
        flex-direction: column;
        align-items: center;
    }

    .container-post-small-images img {
        width: 100%;
    }
    .container-post-small-images img:first-of-type {
        margin-bottom: 2rem;
    }

    .container-blog-post article > ul {
        margin: 2rem 0;

    }

    .image-post-large {
        min-width: inherit;
        width: 100%;
		height: 250px;
    	object-fit: cover;
    }

    .post-tags {
        flex-wrap: wrap;
        justify-content: flex-start;
    }
    .post-tags li {
        margin: 4px 4px;
    }
    .post-quote {
        margin: 0;
    }
    .article-blog {
        margin-bottom: 3rem;
    }
    .article-blog > img {
        width: 100%;
        height: auto;
    }
    .post-header {
        margin-bottom: 2rem;
        padding: 0px 5%;
    }

    .mobile-post-tags {
        display: flex;
        width: 235px;
        justify-content: space-between;
    }
    .mobile-post-tags li {
        list-style: none;
        width: 48px;
        height: 48px;
    }
    .mobile-post-tags li a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        height: 100%;
        background-color: #f5f5f5;
        border-radius: 100%;
    }
    .post-header h1 {
      margin-top: 0px;
    }
    .container-blog-post {
      margin-top: 1.5rem;
    }
    .container-scroll-bars {
      padding: 0 0%;
    }
}