/* post START */
.postnew .entry-title {
    font-weight: 400;
    font-family: 'crete-round', 'Adjusted Times New Roman Fallback', serif;
    font-size: 32px;
    line-height: 1.2;
    color: #1d1d1b;
}



.layout__left .post-thumbnail {
    margin-top: 10px;
    width: 100%;
}

.layout__left .entry-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    justify-content: space-between;
    margin-top: 5px;
}

.layout__left .entry-meta__left {
    display: flex;
    gap: 10px;
}

.layout__left .entry-meta .byline a   {
    font-size: 13px;
    font-weight: 500;
    font-family: 'montserrat-bold',  arial, sans-serif;
    line-height: 22.1px;
    color: #1d1d1b;
    text-transform: uppercase;
}

.layout__left .entry-meta .byline .author {
    position: relative;
    padding-left: 42px;
}

.layout__left .entry-meta .byline .author::before {
    content: '';
    position: absolute;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-size: cover;
    background-image: url(../img/avatar.png);
    left: 0;
}

.layout__left .entry-meta .posted-on a {
    color: #d00f45;
    font-size: 10px;
    font-weight: 400;

}

.layout__left .categories {
    display: flex;
    justify-content: flex-end;
    flex-wrap: nowrap;
    align-content: center;
    gap: 5px;
}

@media only screen and (max-width: 600px) {
    .layout__left .categories {
        display: flex;
        justify-content: flex-start;
        flex-wrap: wrap;
        align-content: center;
        gap: 5px;
    }
}

.layout__left .categories a {
    display: inline-block;
    color: white;
    background-color: #D00F45;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 10px;
    padding: 2px 5px;
    border-radius: 3px;
    white-space: nowrap;
    text-decoration: none;

}


/* single related START */

.relateds {
    display: flex;
    flex-direction: column;
}


.related {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.related-post {
    display: flex;
    flex-direction: row;
    column-gap: 30px;
    row-gap: 10px;
    padding: 20px;
    border: 1px solid #ededed;
    border-radius: 5px;
    position: relative;
}

.related-post__image {
    flex-basis: 40%;
    width: 40%;
    display: block;
    position: relative;
}

.single .post-thumbnail {
    display: block;
    position: relative;
    height: 100%

}

.single .post-thumbnail picture {
    line-height: 0;
    margin: 0;
    padding: 0;
    height: 100%;
}

.single .post-thumbnail img {
    width: 100%;
    height: auto;
    border-radius: 5px;
}

.related-post__image picture img {
    aspect-ratio: 16 / 9;
    width: 100% !important;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
}

.related-post-text {
    width: 60%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
}

.related-post__category {
    width: fit-content;
    padding: 6px 6px 5px 5px;
    BACKGROUND: #fff;
    border-radius: 5px;
    font-size: 0.625rem;
    line-height: 1;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
    position: absolute;
    left: 25px;
    top: 25px;
}

.related-post-text a.related-post__title {
    color: #000!important;
    font-size: 1.17em;
    font-weight: 600;
    text-decoration: none;
}

.related-post-text a.related-post__title:hover {
    text-decoration: underline;
}

a.btn-primary {
    display: inline-block;
    margin: 20px auto;
    text-align: center;
    padding: calc(0.667em + 2px) calc(1.333em + 2px);
    background-color: #fff;
    color: #262626;
    border: 3px solid #262626;
    border-radius: 100px;
    font-size: 1.125em;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}

a.btn-primary:hover {
    background-color: #262626;
    color: #fff;
    box-shadow: 0 5px 10px rgb(38 38 38 / 15%)
}

.related-post img {
    display: block;
    aspect-ratio: 16 / 9;
    width: 100% !important;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
}


@media only screen and (max-width: 660px) {
    .related-post {
        flex-direction: column;
    }

    .related-post-text, .related-post__image {
        width: 100%;
    }

    .related-post__image picture img {
        border-radius: 5px ;
    }

}

.ssba > div {
    display: flex;
    align-content: center;
    align-items: center;
}

.ssba li {
    margin-top: 0 !important;
}

/* single related STOP */