.post-display-page-container {
    padding-bottom: 160px;
    display: flex;
    flex-direction: column;
    gap: 80px 0;
}

.post-display-page-container .page-title{
    margin: initial;
}

.single-post-page-more-posts .tag-list {
    max-height: 32px;
    overflow: hidden;
}

.post-display-page-container .tag-list {
    display: block;
    max-height: 64px;
    overflow: hidden;
}
.post-display-page-container .tag-list .tag-item {
    border: none;
    padding: 0;
}

.post-card-items-wrapper{
    display: flex;
    flex-wrap: wrap;
    gap: 80px 30px;
}

.post-card-items-wrapper .tag-item,
.post-display-page-tags .tag-item{
    transition: border 0.2s ease-in;
}

.post-display-page-tags .tag-item.active{
    border-color: #FFCB08;

}

.post-card-items-wrapper .post-card-item:nth-child(4n+1),
.post-card-items-wrapper .post-card-item:nth-child(4n+4){
    width: calc(35.6% - 15px);
    max-width: calc(35.6% - 15px);
}

.post-card-items-wrapper .post-card-item:nth-child(4n+2),
.post-card-items-wrapper .post-card-item:nth-child(4n+3){
    width: calc(64.4% - 15px);
    max-width: calc(64.4% - 15px);
}

.post-card-items-wrapper .post-card-item .post-card-item-image img{
    display: block;
    min-height: 400px;
    height: 400px;
    width: 100%;
    max-width: 100%;
    object-fit: cover;
}

.post-card-items-wrapper .post-card-item .post-card-item-title{
    display: -webkit-box;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 32px;
    margin: 32px 0 8px;
    min-height: 64px;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.post-card-items-wrapper .post-card-item .post-card-item-description{
    display: -webkit-box;
    color: #A1A1A1;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 32px;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.post-card-items-wrapper .post-card-item .post-card-item-additional{
    display: flex;
    justify-content: space-between;
    margin: 32px 0 24px;
}

.post-card-items-wrapper .post-card-item .post-card-item-additional p{
    color: #A1A1A1;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
}

.post-card-item-publish-date{
    padding-right: 13px;
}

.tags-page-title{
    font-size: 48px;
    font-weight: 700;
    line-height: 80px;
}

.post-display-page-tags{
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.tag .post-display-page .page-title{
    margin-bottom: 24px;
}

.post-display-page-load-more{
    border: 2px solid #ffcb08;
    background: transparent;
    width: 160px;
    height: 56px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    color: #fff;
    font-weight: 700;
    cursor: pointer;
    transition: color 0.2s ease-in, background 0.2s ease-in;
}

/*********************************************** Media Queries ********************************************************/
@media screen and (max-width: 1024px) {
    .tags-page-title{
        font-size: 40px;
        line-height: 56px;
    }

    .post-display-page-container {
        padding-bottom: 72px;
        gap: 48px 0;
    }

    .post-display-page .ticker-talk-slider{
        margin-bottom: 72px;
    }

    .post-card-items-wrapper .post-card-item .post-card-item-image img{
        min-height: 350px;
        height: 350px;
    }
}

@media screen and (max-width: 991px) {
    .post-card-items-wrapper{
        gap: 64px 16px;
    }

    .post-card-items-wrapper .post-card-item:nth-child(n){
        width: calc(50% - 8px);
        max-width: calc(50% - 8px);
    }

    .post-card-item-publish-date{
        margin-right: initial;
    }
}

@media screen and (max-width: 768px) {
    .post-display-page-container {
        gap: 32px 0;
    }

    .post-card-items-wrapper{
        gap: 64px;
    }

    .post-card-items-wrapper .post-card-item:nth-child(n){
        width: 100%;
        max-width: 100%;
    }

    .post-card-items-wrapper .post-card-item .post-card-item-additional{
        margin: 24px 0;
    }
}

@media screen and (max-width: 575px) {
    .post-card-items-wrapper .post-card-item .post-card-item-image img{
        min-height: 280px;
        height: 280px;
    }

    .post-card-items-wrapper .post-card-item .post-card-item-title{
        margin: 24px 0 8px;
    }
}

@media screen and (hover: hover){
    .post-display-page-tags .tag-item:hover,
    .post-card-items-wrapper .tag-item:hover{
        border-color: #FFCB08;

    }

    .post-display-page-load-more:hover {
        background: #ffcb08;
        color: #222;
    }
}