.player-posts-outer {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    width: calc(100% + 35px);
}

.player-post-template:first-child {
    grid-column: 1 / 3;
    grid-row: 1 / 3;
}

.player-post-template {
    justify-content: flex-end;
    display: flex;
    flex-direction: column;
    min-height: 250px;
    position: relative;
    overflow: hidden;
    width: calc(100% - 15px);
    margin: 10px 0px;
    color: #fff;
    padding: 20px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

.player-post-template:after {
    content: "";
    background-image: linear-gradient(180deg, rgba(255, 255, 255, 0), var(--contrast));
    z-index: 0;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    pointer-events: none;
}

.player-author-date {
    display: flex;
    font-size: 11px;
    z-index: 1;
}

.player-author-date span.gb-icon {
    margin-right: 5px;
}

.player-author-date time, .player-author, .player-author:hover {
    margin-right: 20px;
    color: #fff;
    z-index: 1;
}

h4.player-post-title {
    z-index: 1;
    margin-bottom: 10px;
}

h4.player-post-title a {
    color: #fff;
    font-weight: 500;
    font-size: 20px;
    line-height: 1.3em;
}

.player-category {
    color: #fff;
    z-index: 1;
    display: inline-block;
    font-family: Montserrat, sans-serif;
    font-size: 12px;
    letter-spacing: 0.06em;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 10px;
    padding: 5px 10px;
}

.page-numbers li a, .page-numbers li .current, span.page-numbers.dots  {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;

    background-color:var(--base-2) ;
    color: var(--contrast-2);
}

.page-numbers {
    display: flex;
    margin: 0 -5px;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: flex-start;
    clear: both;
}

.page-numbers li {
    list-style: none;
    padding: 5px;
}

@media (max-width: 768px){
    .player-posts-outer {
        display: block;
        grid-template-columns: repeat(3, 1fr);
        width: 100%;
        overflow: hidden;
    }

    .player-post-template {
        width: 100%;
    }
}

.site-content .content-area {
    width: 100%;
}
