/* Single post */
article.single-post{
    margin-top: 60px;
    max-width: 1160px;
    margin-left: auto;
    margin-right: auto;
}

.single-post__image{
    text-align: center;
}

.single-post__image img{
    border-radius: 24px;
    object-fit: cover;
    height: 350px;
    max-width: 800px;
}
.single-post-top-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    margin-bottom: 60px;
}

.single-post-top-wrapper>div {
    flex: 1 1 calc(50% - 60px);
}
.single-post-top-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.single-post-breadcrumb>div {
    margin: 0 !important;
}

.single-post__excerpt {
    margin-top: 30px;
    line-height: 1.4em;
    color: #fff;
}

.single-post__meta span{
    font-size: 16px;
    line-height: 16px;
}

.single-post__entry{
    margin-top: 20px;
    background: #fff;
    border-radius: 24px;
    color: #050a36;
    padding: 60px 200px;
}

.single-post__entry * {
    color: inherit !important;
}


@media screen and (max-width: 1600px) {
    .single-post__meta span{
        font-size: 14px;
        line-height: 14px;
    }

    .single-post__entry{
        margin-top: 15px;
    }
}

@media screen and (max-width: 1025px) {
    article.single-post{
        margin-top: 40px;
    }
    .single-post-top-wrapper {
        gap: 30px;
        margin-bottom: 30px;
    }
    .single-post__image img {
        height: fit-content;
    }
    .single-post-top-wrapper>div {
        flex: 1 1 auto;
    }
    .single-post__entry {
        padding: 60px 40px;
    }
}

@media screen and (max-width: 767px) {
    article.single-post{
        margin-top: 30px;
    }

    .single-post__body{
        margin-top: 20px;
    }

    .single-post__entry {
        padding: 30px 15px;
    }

    .single-post__meta span{
        font-size: 12px;
        line-height: 12px;
    }

    .single-post__entry{
        margin-top: 10px;
    }

}
