.blog-content-wrapper {
    border-top: 1px solid #69c6c6;
    background-color: #eefaf9;
}

.blog-content-wrapper .blog-header {
    display: flex;
    justify-content: center;
}

.blog-content-wrapper .blog-posts {
    max-width: 1170px;
    width: 100%;
    margin: 0 auto 100px;
}

.blog-content-wrapper .blog-posts--content {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    margin: 0 auto 100px;
}

.blog-content-wrapper .post {
    width: 33.33333%;
    padding: 15px;
}

@media (max-width: 900px) {
    .blog-content-wrapper .post {
        width: 50%;
    }
}

@media (max-width: 576px) {
    .blog-content-wrapper .post {
        width: 100%;
    }
}

.blog-content-wrapper .post--content {
    height: 100%;
    border-radius: 5px;
    padding-bottom: 20px;
    background-color: #fff;
    box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.2);
    /* 0 6px 20px 0 rgba(0, 0, 0, 0.19); */
}

.blog-content-wrapper .post--content.active {
    background-color: #00c1d3;
    color: #fff;
}

.blog-content-wrapper .post-image {
    overflow: hidden;
    position: relative;
    border-radius: 6px;
}

.blog-content-wrapper .post-image img {
    border-radius: 6px;
}

.blog-content-wrapper .post-image .post-img--void {
    width: 100%;
}

.blog-content-wrapper .post-image .post-img--link {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.blog-content-wrapper .post h2 {
    margin: 30px 0 0 20px;
    line-height: 30px;
    font-size: 24px;
}

.blog-content-wrapper .post h2 a {
    color: #4b5158;
}

.blog-content-wrapper .post .post--content.active h2 a {
    color: #fff;
}

.blog-content-wrapper .post .publish-info {
    margin: 0 0 15px 20px;
    color: #65ced6;
}

.blog-content-wrapper .post p {
    margin: 0 15px 15px 40px;
}

.blog-content-wrapper .post .continue-reading {
    margin-left: 40px;
    color: #65ced6;
    border: 1px #65ced6 solid;
    border-radius: 0;
}

.blog-content-wrapper .post .continue-reading:hover {
    color: #ffffff;
    background-color: #65ced6;
    cursor: pointer;
}

.post-medium.no-search {
    display: none;
}

/* View page */
.post-view--container {
    display: flex;
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    /* max-height: 100vh; */
    overflow: hidden;
    padding-bottom: 30px;
}

.post-view--left {
    position: relative;
    width: 30%;
    /* height: 100%; */
    overflow: hidden;
    background-color: #eefaf9;
    padding-left: 30px;
}

@media (max-width: 767px) {
    .post-view--left {
        display: none;
    }
}

.post-view--left--content {
    position: absolute;
    width: calc(100% - 30px);
    height: calc(100% - 60px);
    top: 30px;
    left: 30px;
    overflow-y: auto;
}

.post-view--left--content::-webkit-scrollbar {
    width: 14px;
}

.post-view--left--content::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    background-clip: content-box;
    background-color: #adbfc9;
}

.post-view--left--content::-webkit-scrollbar-thumb {
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.5);
    width: 24px;
    background-color: #4a5158;
    border: 2px solid #adbfc9;
}

.post-view--left .post {
    padding: 0 45px 30px 0;
}

.post-view--left .post {
    width: 100%;
}

.post-view--main {
    width: 70%;
    padding-left: 90px;
    padding-right: 90px;
    padding-top: 30px;
    position: relative;
}

@media (max-width: 767px) {
    .post-view--main {
        width: 100%;
        padding: 30px 15px 0;
    }
}

.post-view--main--close {
    position: absolute;
    z-index: 5;
    top: 5px;
    right: 15px;
    width: 45px;
    height: 45px;
    background-color: #00c1d3;
    border-radius: 50%;
    line-height: 45px;
    text-align: center;
    cursor: pointer;
}

.post-view--main--close {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
}

.post-view--main--close a:hover {
    text-decoration: none;
}

.post-view--image {
    position: relative;
}

.post-view--image--void {
    width: 100%;
}

.post-view--image--img {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.post--text-active {
    font-weight: 700;
    padding-left: 40px;
    color: #fff;
}

.header-blog {
    background-color: #fff !important;
}

.header-content {
    display: flex;
}

.header-content--logo {
    max-width: 310px;
    width: 310px;
}

.header-content--logo img {
    width: 100%;
}

.header-blog--search {
    position: relative;
}

.header-blog--search input {
    width: 200px;
    padding: 5px 15px 5px 40px;
    border: 0;
    border-bottom: 1px solid #65ced6;
    color: #65ced6;
}

.header-blog--search input::placeholder {
    color: #98eeea;
}

.header-blog--search img {
    position: absolute;
    top: 0;
    left: 0;
    width: 26px;
}

.header-blog--button button {
    padding: 10px 30px;
    color: #fff;
    background-color: #65ced6;
    border: 0;
    font-size: 18px;
}

.header-blog--phone {
    color: #4a5158 !important;
    font-size: 18px;
}

.header-blog--phone img {
    width: 24px;
    margin-right: 5px;
}

.header--title {
    font-size: 32px;
    padding: 30px 0 30px;
    text-align: center;
}

.header--title a {
    color: #4a5158 !important;
}

@media (max-width: 1100px) {
    .header-blog--phone {
        display: none;
    }

}

@media (max-width: 767px) {
    .header-blog .container {
        display: flex;
    }

    .header-content--logo {
        max-width: 160px;
        width: 160px;
    }

    .header-blog--button,
    .header-blog--search,
    .header-blog--phone {
        display: none;
    }

    .header--title {
        font-size: 22px;
        margin-left: auto;
        padding: 15px 0 0;
    }
}
