.post-listing--banner {
    margin: 210px 0 60px;
    text-align: center;
}

.post-listing--title {
    margin-bottom: 20px;
    color: var(--gold);
}

.post-listing--subtitle {
    margin-bottom: 60px;
    text-transform: uppercase;
}

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

.featured-post--image, .featured-post--content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.featured-post--content {
    padding-left: 85px;
}

.featured-post--date {
    margin-bottom: 6px;
}

.featured-post--title {
    margin-bottom: 20px;
}

.featured-post--excerpt {
    margin-bottom: 30px;
}

.featured-post__button {
    display: flex;
    align-items: center;
    border: none;
    text-transform: uppercase;
}

.featured-post__button:hover {
    background: none;
    border: none;
    color: var(--gold);
}

.post-ajax {
    margin-top: 60px;
}

.post-ajax--news__search {
    display: flex;
    justify-content: center;
    margin-bottom: 60px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

.post-ajax--news__search--wrapper {
    position: relative;
    margin-bottom: 30px;
}

.post-ajax--news__search--wrapper label {
    position: absolute;
    z-index: -1;
    top: 50%;
    left: 18px;
    margin-bottom: 0;
    color: #5F5F5F;
    transform: translateY(-50%);
    transition: all ease 200ms;
}

.post-ajax--news__search--wrapper.focused label {
    opacity: 0;
}

.post-ajax--news__search--wrapper input {
    width: 350px;
    height: 54px;
    border: 1px solid rgba(0, 0, 0, 0.3);
    padding-left: 18px;
    padding-right: 18px;
    outline: none;
    background: transparent;
}

.post-ajax--news__button {
    position: absolute;
    top: 50%;
    right: 20px;
    display: flex;
    align-items: center;
    border: none;
    padding: 0;
    background: none;
    transform: translateY(-50%);
}

.post-ajax--news__button svg {
    pointer-events: none;
}

.post-ajax--news__button path, .post-ajax--news__button circle {
    stroke: var(--gold);
}

.post-ajax--wrapper {
    margin-top: 45px;
}

.post-ajax--titles {
    text-align: center;
}

.post-ajax--titles h4 {
    margin-bottom: 10px;
}

.post-ajax--titles p {
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 60px;
}

.post-ajax--news {
    position: relative;
    margin-bottom: 60px;
}

.post-ajax--news__thumbnail {
    display: block;
    margin-bottom: 10px;
    overflow: hidden;   
}

.post-ajax--news__thumbnail img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    transition: all ease 1500ms;
}

.post-ajax--news__thumbnail:hover img {
    transform: scale(1.5);
    transition: all linear 4000ms;
}

.post-ajax--news__date {
    margin-bottom: 6px;
}

.post-ajax--news__title {
    font-size: 22px;
    line-height: 30px;
    color: var(--black);
    transition: all ease 400ms;
}

.post-ajax--news__title:hover {
    color: var(--gold);
}

.post-ajax--news__transition {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: var(--white);
    transition: all ease 600ms;
}

.post-ajax--news.hide-first .post-ajax--news__transition {
    height: 100%;
}

.post-ajax--pagination {
    border-top: 1px solid rgba(0, 0, 0, 0.2);
}

.post-ajax--pagination.remove-border {
    border-top: none;
}

.post-ajax--pagination .navigation {
    margin-top: 60px;
}

.post-ajax--pagination .navigation .list-inline {
    display: flex;
    justify-content: center;
    margin-bottom: 190px;
}

.post-ajax--pagination .navigation .list-inline li {
    display: flex;
    justify-content: center;
    width: 60px;
}

.post-ajax--pagination .navigation .list-inline li .link-text {
    color: var(--black);
    transition: all ease 400ms;
}

.post-ajax--pagination .navigation .list-inline li .link-text:hover {
    color: var(--gold);
}

.post-ajax--pagination .navigation .list-inline li .link-text.active {
    color: var(--gold);
    text-decoration: underline;
    text-decoration-color: rgba(172, 136, 16, 0.2);
}

.post-ajax--pagination .navigation .list-inline li svg {
    pointer-events: none;
}

.post-ajax--pagination .navigation .list-inline .next-btn svg {
    transform: rotate(180deg);
}

.post-ajax--pagination .navigation .list-inline .disabled a {
    cursor: default;
}

.post-ajax--pagination .navigation .list-inline .disabled svg path {
    fill: var(--arrow-color);
}

.post-ajax--wrapper .not-found-article p {
    margin-top: 10px;
    margin-bottom: 80px;
    text-align: center;
}

@media (max-width: 1199px) {
    .featured-post--content {
        padding-left: 15px;
    }
}

@media (max-width: 767px) {
    .post-listing--banner {
        margin: 150px 0 0;
    }

    .post-listing--subtitle {
        margin-bottom: 30px;
    }

    .post-ajax {
        margin-top: 30px;
    }

    .post-ajax--news__search--wrapper, .post-ajax--news__search--wrapper input {
        width: 100%;
    }

    .featured-post img {
        height: 220px;
    }

    .featured-post--date {
        margin: 20px 0 10px;
    }

    .featured-post--excerpt {
        margin-bottom: 20px;
    }

    .post-ajax--wrapper {
        margin-top: 40px;
    }

    .post-ajax--news {
        margin-bottom: 40px;
    }

    .post-ajax--news__thumbnail {
        margin-bottom: 20px;
    }

    .post-ajax--news__thumbnail img {
        height: 180px;
    }

    .post-ajax--pagination .navigation .list-inline {
        margin-bottom: 140px;
    }

    .post-ajax--wrapper .not-found-article p {
        margin-bottom: 60px;
    }
}