.arte-posts__wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.arte-posts__item {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 20px;
}
.arte-posts__image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}
.arte-posts__brief p {
    margin-bottom: 5px;
}
.arte-posts__title a {
    color: rgba(184,157,79,1);
}
.arte-posts__title a:hover {
    text-decoration: none;
    color: rgba(184,157,79,1);
}

@media (max-width: 768px) {
    .arte-posts__item {
        grid-template-columns: 1fr;
    }    
    .arte-posts__wrapper {
        gap: 40px;
    }
    .arte-posts__image img {
        height: auto;
    }

}
@media (max-width: 576px) {
    .arte-posts__brief {
        font-size: 14px;
    }
}