.ajx-category-wrapper {
    display: flex;
    margin-bottom: 0;
}

.ajx-category-wrapper .ajx-post-loop {
    width: 66%;
    height: 100%;
}

.ajx-category-wrapper #post-container {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 36px;
}

.ajx-category-wrapper #post-container.loading {
    opacity: 0.7;
    pointer-events: none;
}

.ajx-category-wrapper #category-sidebar {
    width: 34%;
    padding-left: 70px;
}

.ajx-category-wrapper #category-sidebar h3 {
    margin-bottom: 20px;
}

.ajx-category-wrapper #category-sidebar ul {
    padding-left: 0;
    margin-left: 0;
}

.ajx-category-wrapper #category-sidebar ul li {
    margin: 6px 0;
    list-style: none;
}

.ajx-category-wrapper #category-sidebar ul li a {
    color: #333;
    display: block;
    padding: 5px 0px 10px;
    border-bottom: 1px solid #eee;
}

.ajx-category-wrapper #category-sidebar ul li:last-child a {
    border: 0;
}

.ajx-category-wrapper #category-sidebar ul li:hover a {
    color: #c4a229;
}

.ajx-category-wrapper #category-sidebar ul li a.active {
    color: #c4a229;
}

.ajx-category-wrapper .post-item {
    position: relative;
    flex: calc(50% - 18px);
    max-width: calc(50% - 18px);
}

.ajx-category-wrapper .post-item.post-small {
    display: flex;
    gap: 30px;
    align-items: center;
}

.ajx-category-wrapper .post-item.post-small .post-thumbnail  {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
}

.ajx-category-wrapper .post-item.post-small .post-info .post-categories li a {
    font-size: 13px;
}

.ajx-category-wrapper .post-item.post-small .post-info {
    margin-top: 0;
}

.ajx-category-wrapper .post-item.post-small .post-info h3 {
    font-size: 1em;
    line-height: 1.6em;
}

.ajx-category-wrapper .post-item.post-small .post-info h3 a {
    color: #444;
}

.ajx-category-wrapper .post-item .post-thumbnail {
    position: relative;
    border-radius: 5px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.ajx-category-wrapper .post-item:hover .post-thumbnail {
    transform: translateY(-4px);
    box-shadow: #dad7d7 0 20px 40px;
}

.ajx-category-wrapper .post-item.post-large .post-thumbnail {
    aspect-ratio: 16/10;
}

.ajx-category-wrapper .post-item .post-thumbnail a {
    line-height: 0;
    display: block;
    height: 100%;
}

.ajx-category-wrapper .post-item .post-thumbnail img {
    border-radius: 5px;
    border: 1px solid #ddd;
    margin-bottom: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.ajx-category-wrapper .post-item .post-info {
    margin-top: 25px;
}

.ajx-category-wrapper .post-item .post-info .post-categories {
    padding-right: 20px;
}

.ajx-category-wrapper .post-item .post-info .post-categories ul {
    margin-left: 0;
    margin-bottom: 0;
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
    flex-flow: wrap;
}

.ajx-category-wrapper .post-item .post-info .post-categories li {
    list-style: none;
}

.ajx-category-wrapper .post-item .post-info .post-categories li a {
    position: relative;
    display: block;
    color: #f0c040;
    line-height: 1;
    font-size: 14px;
}

.ajx-category-wrapper .post-item .post-info .post-categories li a::before {
    position: absolute;
    content: "";
    height: 2px;
    width: 100%;
    bottom: -5px;
    left: 0;
    transform-origin: left center;
    transition: transform 0.3s cubic-bezier(0.25, 0, 0.4, 1);
    background: #f0c040;
    display: block;
    transform: scaleX(0);
}

.ajx-category-wrapper .post-item .post-info .post-categories li a:hover::before {
    transform: scaleX(1);
}

.ajx-category-wrapper .post-item .post-info .post-excerpt a {
    color: #676767;
}

.ajx-category-wrapper .post-item .post-info h3 a {
    color: rgb(68, 68, 68);
}

.ajx-category-wrapper .post-item .post-info .author {
    margin-top: 15px;
    display: flex;
    gap: 15px;
    color: #fff;
}

.ajx-category-wrapper .post-item .post-info .author .avatar img {
    border-radius: 50px;
    margin-bottom: 0;
}

.ajx-category-wrapper .post-item .post-info .author .meta-author a {
    font-size: 1em;
    line-height: 1.6em;
    color: #fff;
}

.ajx-category-wrapper .post-item .post-info .author .meta-author p {
    font-size: 0.8em;
    line-height: 1em;
}

.ajax-load-more-btn {
    width: 100%;
    margin-top: 45px;
}

.ajax-load-more-btn button {
    border-radius: 4px;
    padding: 10px 40px;
    color: #000;
    border: 1px solid rgba(0, 0, 0, .15);
    background-color: transparent;
    display: inline-block;
    position: relative;
    transition: background-color .3s ease, border-color .3s ease, color .3s ease;
    text-align: center;
    margin: 0 auto;
    display: block;
    cursor: pointer;
}

@media(max-width: 1200px) {
    .ajx-category-wrapper #category-sidebar {
        width: 33%;
        padding-left: 40px;
    }

    .ajx-category-wrapper .ajx-post-loop {
        width: 67%;
    }
}

@media(max-width: 1080px) {
    .ajx-category-wrapper .post-item {
        flex: 100%;
        max-width: 100%;
    }

    .ajx-category-wrapper .post-item .post-info h3 a {
        font-size: min(32px, 2.4vw);
    }

    .ajx-category-wrapper .post-item .post-info .post-categories li a {
        font-size: 12px;
    }

    .ajx-category-wrapper .post-item .post-info {
        bottom: 30px;
        left: 30px;
    }
}

@media(max-width: 990px) {
    .ajx-category-wrapper #category-sidebar {
        padding-left: 30px;
    }
}

@media(max-width: 768px) {
    .ajx-category-wrapper {
        display: block;
    }
    .ajx-category-wrapper .ajx-post-loop,
    .ajx-category-wrapper #category-sidebar {
        width: 100%;
        padding: 0;
    }

    .ajx-category-wrapper #category-sidebar {
        margin-top: 40px;
    }
}