.wiki-section{
    padding: 50px 0 80px;
    position: relative;
    z-index: 2;
}
html[lang="ar"] .wiki-section h1,
html[lang="ar"] .wiki-section h2{
    text-align: right;
}
.wiki-main-content{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px 30px;
    position: relative;
}
.wiki-main-content .wiki-question {
    height: auto;
    box-shadow: 0 4px 16px rgba(0, 0, 0, .15);
    border-radius: 12px;
    overflow: hidden;
    padding: 30px;
    background: #fff;
}
.wiki-question-img{
    height: 212px;
    width: 100%;
    position: relative;
    overflow: hidden;
}
.wiki-question-img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
.wiki-question-date{
    margin-top: 12px;
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
}
.wiki-question-date svg {
    min-width: 20px;
    max-width: 20px;
    height: 20px;
    margin-right: 3px;
}
.wiki-question-date span {
    padding-left: 5px;
    font-size: 14px;
    line-height: 1em;
    color: var(--pix-text-gray);
}
.wiki-question-name{
    font-size: 18px;
    line-height: 1.2em;
    font-weight: 700;
    margin-top: 12px;
    min-height: 43px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
}
a.read-more{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2px 15px;
    margin: 25px auto 0;
    width: 185px;
    height: 44px;
    text-align: center;
    background: var(--pix-orange);
    color: #fff;
    border: 1px solid transparent;
    -webkit-border-radius: 8px;
    border-radius: 8px;
    font-family: var(--pix-main-font);
    font-size: 14px;
    font-weight: 800;
    transition: all .3s ease;
    text-transform: uppercase;
}
html[lang="it"] a.read-more{
    font-size: 13px;
}

/* --- PAGINATION ---*/
nav.pagination{
    margin-top: 50px;
    min-width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 40px;
}
.pagination .page-numbers {
    min-width: 35px;
    max-width: 35px;
    height: 35px;
    text-align: center;
    line-height: 35px;
    margin: 0 5px;
    border-radius: 3px;
    border: 1px solid #EBEBEB;
}
.pagination .page-numbers.double-digit {
    min-width: 45px;
    max-width: 45px;
}
.pagination .page-numbers.current{
    background: var(--pix-orange);
    color: #fff;
    border: 1px solid var(--pix-orange);
}
.pagination .page-numbers.prev,
.pagination .page-numbers.next{
    border: 1px solid #EBEBEB;
    font-size: 0;
}
.pagination .page-numbers.next{
    background: url("../images/arrow-down.svg") center no-repeat;
    -moz-transform: rotate(270deg);
    -webkit-transform: rotate(270deg);
    transform: rotate(270deg);
}
.pagination .page-numbers.prev {
    background: url("../images/arrow-down.svg") center no-repeat;
    -moz-transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
}
.pagination .page-numbers a {
    display: block;
    border: 1px solid #EBEBEB;
    border-radius: 3px;
    height: 100%;
    width: 100%;
    background-color: #fff;
}
/* --- PAGINATION ---*/


/* --- BREADCRUMBS ---*/
.pix-single-breadcrumbs .pix-breadcrumbs-path .fa-angle-right {
    height: auto;
    margin: 0 -2px;
}
.pix-single-breadcrumbs .pix-breadcrumbs-path .fa-angle-right:before {
    content: "/";
}
.pix-single-breadcrumbs .pix-breadcrumbs-path a, .pix-single-breadcrumbs .pix-breadcrumbs-path span:not(.fa) {
    font-weight: 600;
    color: #818181;
    line-height: initial;
    font-size: 14px;
}
/* --- BREADCRUMBS ---*/

.wiki-article{
    margin-top: 50px;
}
.wiki-single {
    padding: 40px 0 100px;
}
.wiki-article .wiki-answer{
    margin-top: 30px;
}

.wiki-next-prev{
    display: flex;
    flex-wrap: wrap;
    margin: 60px auto;
    justify-content: space-between;
}
.wiki-next-prev .pix-news-next .label-next a,
.wiki-next-prev .pix-news-prev .label-prev a{
    display: flex;
    align-items: center;
    height: 20px;
    line-height: 20px;
}
.wiki-next-prev .pix-news-next .label-next a{
    justify-content: flex-end;
}
.wiki-next-prev .pix-news-next{
    width: 45%;
}
.wiki-next-prev .pix-news-next svg{
    transform: rotate(-90deg);
    margin-left: 3px;
    margin-right: -3px;
}
.wiki-next-prev .pix-news-prev{
    width: 45%;
}
.wiki-next-prev .pix-news-prev svg{
    transform: rotate(90deg);
    margin-right: 3px;
    margin-left: -3px;
}
.wiki-next-prev a{
    font-weight: 500;
    font-size: 15px;
}
.wiki-next-prev .label-next a,
.wiki-next-prev .label-prev a {
    color: var(--pix-orange);
    font-weight: 700;
    text-transform: uppercase;
}
.wiki-next-prev .pix-news-next > a{
    text-align: right;
    display: table;
    margin-left: auto;
}

.post__meta.with-author{
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 20px;
    border: 1px solid var(--pix-grey-border);
}
.author-meta {
    display: flex;
    align-items: flex-start;
    flex-wrap: nowrap;
    background-color: white;
    margin-bottom: 15px;
}
.author-meta .author-avatar{
    min-width: 70px;
    max-width: 70px;
    height: 70px;
    margin-right: 15px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.12);
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
html[lang="ar"] .author-meta .author-avatar{
    margin-right: 0;
    margin-left: 10px;
}
.author-meta .author-avatar img {
    width: 88%;
    height: 88%;
    margin: 0 !important;
    object-fit: contain;
}
.author-info strong{
    line-height: 1.2em;
    display: block;
}
.author-meta .author-desc{
    line-height: 1.2em;
    margin: 10px 0;
}
.author-meta .author-info a {
    color: var(--pix-orange);
    text-decoration: none;
}
.author-meta .author-info a:hover {
    text-decoration: underline;
}

@media screen and (max-width: 1360px) {
    .wiki-main-content .wiki-question {
        padding: 20px;
    }
}
@media screen and (max-width: 1000px) {
    .wiki-main-content{
        grid-template-columns: repeat(2, 1fr);
    }
    .wiki-question-img {
        height: auto;
    }
}
@media screen and (max-width: 768px) {
    .wiki-main-content .wiki-question {
        padding: 15px;
    }
}
@media screen and (max-width: 576px) {
    .wiki-section{
        padding-bottom: 50px;
    }
    .wiki-section h1{
        font-size: 34px;
    }
    .wiki-section h2{
        font-size: 28px;
        margin-top: 30px;
    }
    .wiki-main-content{
        grid-template-columns: repeat(1, 1fr);
        gap: 20px;
    }

    .wiki-main-content .wiki-question {
        padding: 20px;
    }
}
@media screen and (max-width: 480px) {
    .wiki-single{
        padding-top: 20px;
    }
    .pix-single-breadcrumbs{
        line-height: 1.2em;
    }
    .wiki-article{
        margin-top: 30px;
    }
    .wiki-article h1{
        font-size: 30px;
    }
    .wiki-next-prev{
        display: block;
    }
    .wiki-next-prev .pix-news-next,
    .wiki-next-prev .pix-news-prev{
        width: 100%;
    }
    .wiki-next-prev .pix-news-next .label-next a, .wiki-next-prev .pix-news-prev .label-prev a{
        justify-content: center;
    }
    .pix-news-next{
        margin-top: 30px;
    }
    .wiki-next-prev .pix-news-next > a,
    .wiki-next-prev .pix-news-prev > a{
        margin-top: 5px;
        line-height: 1.2em;
        text-align: center !important;
        display: block !important;
    }
    .wiki-next-prev .pix-news-next > a{
        margin-left: 0;
    }
}
@media screen and (max-width: 375px) {
    a.read-more{
        font-size: 13px;
    }
}