.postlist__container .container {
    margin-top: -30px;
    background: #fff;
    border-radius: 4px;
    padding: 30px;
}

.postlist__title {
    font-size:24px;
    font-weight: bold;
    border-bottom: 1px #dedede solid;
    padding-bottom: 15px; 
    margin-bottom: 15px;
}

.postlist__container .post__item {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    border:1px #dedede solid;
    margin-bottom: 30px;
    background:#fff;
    border-radius: 4px;
    overflow: hidden;
}

.postlist__container .post__image {
    display: block;
    overflow: hidden;
    position: relative;
    height: auto;
    padding-bottom: 33.15%;
    border-radius:4px 0 0 4px;
    min-width: 50%;
}

.postlist__container .post__image img {
    position: absolute;
    width:100%;
    height:100%;
    object-fit: cover;
    transition: all .5s;
}

.postlist__container .post__item:hover img {
    transform: scale(1.05);
}

.postlist__container .post__content {
    padding: 30px;
}

.postlist__container .post__content h3 {
    font-size:22px;
    color:#000;
    line-height: 110%;
    margin-bottom: 20px;
}

.postlist__container .post__item .button {
    display: table;
    border-radius: 50px;
    padding: 5px 20px;
    background: #fff;
    color:rgb(94, 94, 94);
    font-weight: bold;
    text-transform: uppercase;
    border:1px #dedede solid;
    transition: all .5s;
    font-size:12px;
}

.postlist__container .post__item:hover .button {
    background: var(--azul);
    color: #fff;
    border:1px var(--azul) solid
}

.page-numbers {
    display: flex;
    justify-content: end;
    gap: 10px;
    margin-bottom: 30px;
}

.page-numbers span, .page-numbers a {
    padding: 10px 15px;
    display: block;
    border:1px #dedede solid;
    border-radius: 4px;
    color:#000;
    line-height: 18px;
    font-weight: bold;
}

.page-numbers .current {
    background: #dedede;
    color:#919191
}

.page-numbers i {
    line-height: 18px;
}

.page-numbers a:hover {
    background: var(--azul);
    border: 1px var(--azul) solid;
    color:#fff;
}
