.posts .post {
    margin: 10px 0 20px 0;
}
.post .post-title {
    margin-top: 0;
    margin-bottom: 32px;
}
.post .post-info {
    margin: 0 0 10px 0;
    color: var(--gray-txt);
}

.post .post-info small,
.post .post-info .fa,
.post .post-info a {
    font-size: 14px;
}

.post .post-info a {
    color: inherit;
}

.post .post-info a:hover {
    color: var(--blue-txt);
}

.post .post-content p {
    font-size: 15px;
    line-height: 1.4;
    color: var(--black-txt);
    font-family: var(--font-family-sans-serif);
}

.post-intro{
    cursor: pointer;
}

.post .post-image,
.post .post-video {
    margin: 0 10px 5px 0;
}

.post .post-img {
    object-fit: cover;
    width: 100%;
    max-height: 260px;
}

@media screen and (max-width: 576px) {
    .post .post-image,
    .post .post-video {
        display: block;
        margin: 16px 0 16px;
        float: none;
        width: 100%;
    }
}

.post blockquote{
    background-color: var(--primary);
    color: #fff;
    font-size: 18px;
    padding: 35px 40px;
    position: relative;
    border: 0;
    border-radius: 4px;
}
.post blockquote:before {
    color: #fff;
    content: open-quote;
    font-size: 96px;
    line-height: 96px;
    width: 26px;
    height: 26px;
    display: block;
    position: absolute;
    z-index: 1;
    top: 0;
    left: 10px;
}

.sidebar a {
    font: inherit;
    color: inherit;
}

.sidebar .most-popular {
    /* margin-top: 20px; */
}
.sidebar .most-popular .mostpopular-item {
    position: relative;
    margin: 0;
    height: 150px;
    border-radius: 5px;
    background: no-repeat center / cover;
    z-index: 0;
    overflow: hidden;
}

.sidebar .most-popular .mostpopular-item:not(:last-child) {
    margin-bottom: 30px;
}

.sidebar .most-popular .mostpopular-link {
    display: flex;
    flex-direction: column;
    padding: 8px;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0, 0) 25%, rgba(0,0,0, 0.8) 100%);
    z-index: -1;
}

.sidebar .most-popular .mostpopular-title {
    font-size: 16px;
    line-height: 1.2;
    font-weight: 500;
    color: var(--white-txt);
    margin-bottom: 12px;
    font-family: var(--font-family-sans-serif);
    margin: 0;
    margin-top: auto;
    /* align-self: flex-end; */
}

.sidebar .most-popular .mostpopular-tags {
    font-size: 12px;
    line-height: 1.2;
    font-weight: 500;
    color: var(--white-txt);
    margin-bottom: 12px;
    font-family: var(--font-family-sans-serif);
    margin: 0;
    margin-top: 8px;
    /* align-self: flex-end; */
}

.sidebar .most-popular .mostpopular-tags .fa {
    margin-right: 4px;
}

.sidebar .most-popular .mostpopular-intro {
    margin-bottom: 16px;
}

.sidebar .most-popular .mostpopular-intro p {
    font-size: 14px;
    line-height: 1.2;
    font-weight: 400;
    color: var(--black-txt);
    font-family: var(--font-family-sans-serif);
    margin: 0;
}

.sidebar .most-popular .mostpopular-intro p + p {
    margin-top: 8px;
}

.sidebar .categories .list-group-item{
    border: 0;
}

.sidebar .categories .list-group-item a{
    font-size: 18px;
}

.sidebar .categories .list-group-item.active{
    border-radius: 4px;
    background-color: var(--blue-txt);
}

.sidebar .categories .list-group-item.active a{
    color: white;
}

.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
    margin-bottom: 26px;
}

.tag-cloud .tag-cloud-title {
    font-size: 16px;
    line-height: 1;
    font-weight: 500;
}

.tag-cloud .tag-cloud-title::after {
    content: '/';
    font-family: var(--font-family-sans-serif);
    font-size: 1.25em;
    border: none;
    vertical-align: middle;
    color: var(--blue-txt);
    margin-right: 0.5em;
    margin-left: 0.5em;
}

.tag-cloud .tag-cloud-list {
    display: contents;
    align-items: baseline;
    list-style: none;
    margin: 0;
    padding: 0;
}

.tag-cloud .tag-cloud-list li {
    list-style: none;
    display: inline;
}

.tag-cloud .tag-cloud-list a {
    display: inline-block;
    padding: 6px 10px;
    margin: 0;
    background-color: var(--gray-bg);
    color: var(--black-txt);
    border-radius: 8px;
    white-space: nowrap;
    font-size: 14px;
    font-weight: 500;
    vertical-align: middle;
}

.tag-cloud .tag-cloud-list a:hover,
.tag-cloud .tag-cloud-list a:active {
    color: var(--blue-txt);
}

.post-events{
    margin: 32px 0;
}
.post-events h2{
    margin-left: 10px;
    padding-bottom: 10px;
}

.post .no-comments{
    margin: 20px 0;
}

.post .comment-form,
.post .no-comments
{
    margin: 20px 0;
}

.post .comment-form .form-control {
    border: 1px solid #d5ddea;
    font-family: inherit;
    font-size: 14px;
    padding: 0.56rem 0.75rem;
    line-height: 14px;
    font-weight: 400;
    background-image: none;
    border-radius: 4px;
    -webkit-box-shadow: none;
    box-shadow: none;
    color: var(--black-txt);
}

.post .comment-form .btn[type="submit"] {
    color: var(--white-txt);
    background-color: var(--blue-txt);
}

.post .comment-form .btn[type="submit"]:hover,
.post .comment-form .btn[type="submit"]:active {
    color: var(--white-txt);
    background-color: var(--blue-txt-hover);
}

.post .comment {
    margin-bottom: 20px;
}

.post .comment-avatar {
    margin-right: 10px;
    border-radius: 50%;
    overflow: hidden;
}

.post .comment-info,
.post .comment-body
{
    margin: 5px 0;
}

.owl-carousel {
    padding: 0 30px;
    box-sizing: border-box;
}

.owl-nav {
    display: flex;
    position: absolute;
    left: 0;
    top: 20%;
    width: 100%;
}

.owl-nav .owl-prev {
    margin-right: auto;
}

.owl-nav .owl-next {
    margin-left: auto;
}

.btn-group-flex {
    display: flex;
}

ul.pagination a i.fa-chevron-right{
    padding: 0 0 0 10px;
    position: relative;
    top: 1px;
    font-size: 11px;
}

ul.pagination a i.fa-chevron-left{
    padding: 0 10px 0 0;
    top: 1px;
    font-size: 11px;
}

ul.pagination ul.pagination-numbers{
    display: flex;
    align-items: center;
    padding: 0;
}

ul.pagination ul.pagination-numbers li{
    list-style: none;
    padding: 0 15px;
}
