/*-----------------------------------*
  Custom CSS
*/

@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');


#blog-page-wrapper {
    display: flex;
    padding-top: 50px;
    width: 100%;

    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
}

#blog-categories {
    width: 250px;
    color: #9EA68B;
}

#blog-categories .blog-categories-title {
    color: #333;
}

#blog-categories .category-link a {
    color: #9EA68B;
    font-weight: 700;
}

#blog-page-wrapper .page-content {
    flex-grow: 1;
}

#blog-entries {
    display: flex;
    grid-template-columns: auto auto;
    grid-gap: 50px;
    flex-grow: 1;
}

#blog-entries .blog-entry {
    width: 100%;
    max-width: calc(50% - 25px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.09);
    height: 500px;
    padding: 0;
    background: white;
    position: relative;
}

.blog-entry.thumbnail-entry .blog-entry-inner {
    display: flex;
    flex-direction: column-reverse;
    height: 100%;
}

.blog-entry.thumbnail-entry .thumbnail {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: absolute;
    top: 0;
    left: 0;
}

#blog-entries .entry-title {
    font-weight: 800;
    font-size: 14px;
}

.blog-entry.thumbnail-entry .blog-entry-content {
    width: 100%;
    padding: 22px;
    height: 100%;
    margin-top: 200px;
    display: flex;
    justify-content: flex-start !important;
}

.blog-entry.thumbnail-entry .blog-entry-category a {
    color: #9EA68B !important;
}

.blog-entry .blog-entry-comments {
    display: none;
}

.blog-entry .edit-link {
    position: absolute;
    top: 0;
    right: 0;
    padding: 20px;
}

.blog-entry .edit-link a {
    color: #919E88;
}

/* article page */
.single-post {
    .content-area {
        border: none;
    }

    #content-wrap {
        margin-top: 50px;
        display: flex;
    }

    .content-area {
        width: 75%;
        border-right: 0;
        flex-shrink: 0;
    }

    .thumbnail>img {
        object-fit: cover;
        height: 400px;
    }

    .single-post-title {
        color: #000000;
        font-size: 24px;
        font-weight: bold;
    }


    .meta {
        margin: 0;
        padding: 0;
        border: none !important;
    }

    h3 {
        color: #9EA68B;
    }

    .single-post-title {
        margin: 0;
        border: none;
        font-family: "Montserrat", sans-serif;
    }

    .meta-author,
    .meta-cat,
    .meta-comments,
    .meta-mod-date,
    .meta-cat {
        display: none;
    }

    .meta-date {
        color: #ababab;
        text-align: right;
        text-transform: uppercase;

        &:after {
            display: none;
        }
    }

    .meta-date i {
        display: none;
    }

    .related-posts {
        width: 100%;

        ul {
            margin: 0;
        }

        .theme-heading {
            display: none;
        }

        #related-posts {
            border: none;
            margin-top: 0;
            padding-top: 0;

            .oceanwp-row {
                width: 100%;
                display: flex;
                flex-wrap: wrap;
            }

            .oceanwp-row>article {
                width: 100%;
                margin-bottom: 20px;
                text-align: left;
            }

            .oceanwp-row>article .published {
                color: #ababab;
                text-align: right;
                text-transform: uppercase;
            }

            .oceanwp-row>article .related-post-title {
                margin: 10px 0;
                font-family: "Montserrat", sans-serif;
            }

            .oceanwp-row>article .published i {
                display: none;
            }
        }
    }
}