#press_press a{
    background-color: #DE6255;
    margin-top: 50px;
}
#press_press a:hover{
    background-color: #B2C05F;
}

#press_list{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.block_press{
    display: block;
    padding: 1.5rem;
    max-width: 22rem;
    background-color: #fff;
    width: 33%;
}
.block_press > div{
    padding: 1rem 0 2rem;
}
.block_press > div.date_press{
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row-reverse;
    font-size: 0.7em;
}
.date_press span {
    color: #232323;
    display: inline-block;
    margin-right: 6px;
    margin-bottom: 10px;
    padding: 5px 9px;
    border: 1px solid #d6d6d6;
    font-weight: 700;
    line-height: 1.2;
    text-transform: lowercase;
    transition: 0.4s;
    font-size: 14px;
}
.contact_press{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.contact_press a{
    color:#fff;
    background-color: #B2C05F;
}
.contact_press a:hover{
    background-color: #DE6255;
}

@media (max-width: 1200px) {
    .block_press{
        width: 50%;
        max-width: 22rem;
    }
}
@media (max-width: 768px) {
    .block_press{
        width: 100%;
        max-width: 30rem;
    }
}