.article-press {
    padding: 0 16px;
}

/* .article-press .spacing-top {
    height: 32px;
}

@media screen and (min-width: 768px) {
    .article-press .spacing-top {
        height: 80px;
    }
}

.article-press .spacing-bottom {
    height: 60px;
}

@media screen and (min-width: 768px) {
    .article-press .spacing-bottom {
        height: 80px;
    }
} */

.article-press--title {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    gap: 16px;
    max-width: 900px;
    width: 100%;
    margin: auto;
    margin-bottom: 24px;
}

@media screen and (min-width: 768px) {
    .article-press--title {
        margin-bottom: 64px;
    }
}

.article-press--title h2 {
    text-align: center;
}

.article-press--title p {
    margin: 0;
}

.article-press--list {
    margin-top: 24px;
    display: grid;
    grid-template-columns: 1fr;
    row-gap: 24px;
}

@media screen and (min-width: 768px) {
    .article-press--list {
        margin-top: 64px;
        grid-template-columns: minmax(300px, 508px) minmax(300px, 508px);
        max-width: 1064px;
        width: 100%;
        margin: auto;
        justify-content: space-between;
        column-gap: 24px;
        row-gap: 48px;
    }
}

.article-press .card-press {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    cursor: pointer;
}

.article-press .card-press img {
    width: 120px;
    height: 48px;
    object-fit: contain;
}

.article-press .card-press p {
    font-family: Inter;
    font-size: 18px;
    font-style: normal;
    line-height: 150%;
    margin: 0;
}

.article-press .card-press .title {
    font-weight: 600;
}

.article-press .card-press .desc {
    font-size: 0.875rem;
}

.article-press .card-press .more {
    text-decoration: none;
    color: var(--black);
    font-family: var(--aleo);
    font-size: 1.25rem;
    font-style: normal;
    font-weight: 700;
    line-height: 150%;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    display: flex;
    align-items: center;
    gap: 24px;
    flex-shrink: 0;
}

.article-press .card-press .more span {
    height: 48px;
    width: 48px;
    border-radius: 50%;
    outline: 2px solid var(--black);
    outline-offset: -2px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .6s;
}

.article-press .card-press .more span::before {
    content: '';
    display: block;
    width: 16px;
    height: 16px;
    -webkit-mask: url("../images/icon-arrow-next.svg") no-repeat center;
    mask: url("../images/icon-arrow-next.svg") no-repeat center;
    -webkit-mask-size: contain;
    mask-size: contain;
    background: var(--black);
    transition: all .6s;
}

.article-press .card-press .more:hover span {
    background: var(--black);
}

.article-press .card-press .more:hover span::before {
    background: var(--white);
}

.article-press .pagination {
    margin-top: 40px;
}

@media screen and (min-width: 1024px) {
    .article-press .pagination {
        margin-top: 64px;
    }
}