.press-block--wrap{
    display: flex;
    /* mobile defaults use CSS variables set inline on the wrapper */
    margin-top: var(--pb-mt-mobile, 0);
    margin-bottom: var(--pb-mb-mobile, 0);
    padding: calc(var(--gutters)/2) var(--gutters);
}
@media (min-width: 768px) {
    .press-block--wrap {
        /* desktop defaults use CSS variables set inline on the wrapper */
        margin-top: var(--pb-mt-desktop, 0);
        margin-bottom: var(--pb-mb-desktop, 0);
    }
}
@media (max-width: 840px) {
    .press-block--wrap {
        padding: 0;
    }
}
.press-block__inner{
    display: flex;
    flex-direction: column;
    gap: 2rem;
    width: 100%;
}
.press-block__head{
    display: flex;
    width: 100%;
    justify-content: space-between;
}
@media (max-width: 840px) {
    .press-block__head {
        flex-direction: column;
        align-items: flex-start;
    }
}
.press-list{
    display: flex;
    width: 100%;
    flex-direction: column;
}
.press-item{
    display: flex;
    width: 100%;
    padding: 1rem 0;
    border-top: solid 0.5px var(--wp--preset--color--sauge);
    position: relative;
}
@media (max-width: 576px) {
    .press-item {
        flex-wrap: wrap;
    }
}
.press-item::before{
    content: " ";
    display: flex;
    width: 100%;
    height: 0;
    background-color: var(--wp--preset--color--noir);
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    z-index: 1;
    transition: height 0.6s ease;
}
.press-item:hover::before{
    height: 100%;
}
.press-item a{
    display: flex;
    width: 100%;
}
@media (max-width: 768px) {
    .press-item a {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
}
.press-item:last-child{
    border-bottom: solid 0.5px var(--wp--preset--color--sauge);
}
.press-item__meta{
    text-transform: uppercase;
    display: flex;
    width: 25%;
    justify-content: center;
    position: relative;
    z-index: 2;
    transition: color 0.6s ease;
    &:nth-child(1), &:nth-child(2){
        width: 15%;
    }
    &:nth-child(3){
        width: 45%;
    }
}
@media (max-width: 840px) {
    .press-item__meta {
        text-align: center;
        align-items: center;
    }
}
@media (max-width: 576px) {
    .press-item__meta {
        width: 50%;
        margin-bottom: 0.5rem;
    }
    .press-item__meta:nth-child(3), .press-item__meta:nth-child(4) {
        width: 100%;
    }
}
.press-item:hover .press-item__meta{
    color: var(--wp--preset--color--white);
}
.press-item__pdf span{
    display: flex;
    gap: 1rem;
}
.press-item__pdf span::before{
    content: '';
    display: flex;
    background: url(../../../assets/svg/mdi_eye.svg) no-repeat center;
    background-size: contain;
    width: 20px;
    height: 20px;
    transition: filter 0.6s ease;
}
.press-item:hover .press-item__pdf span::before{
    filter: invert(1);
}
.press-item__date{
    text-align: center;
}
@media (max-width: 768px) {
    .press-item:nth-child(even)::before{
        height: 100%;
    }
    .press-item:nth-child(even) .press-item__pdf span::before{
        filter: invert(1);
    }
    .press-item:nth-child(even) .press-item__meta{
        color: var(--wp--preset--color--white);
    }
}