.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;
    justify-content: space-between;
    width: 100%;
}
@media (max-width: 768px) {
    .press-block__inner {
        padding: 0 var(--gutters);
        flex-direction: column;
    }
}
.press-block__left{
    width: 30%;
}
@media (max-width: 840px) {
    .press-block__left {
        width: 100%;
        margin-bottom: 2rem;
    }
}
@media (max-width: 840px) {
    .press-block__head {
        flex-direction: column;
        align-items: flex-start;
    }
}
.press-list{
    display: flex;
    width: 65%;
    flex-direction: column;
}
@media (max-width: 840px) {
    .press-list {
        width: 100%;
    }
}
.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:first-child:hover::before{
    display: none;
}
.press-item a{
    display: flex;
    width: 100%;
    color: var(--wp--preset--color--noir);
}
.press-item:first-child{
    border-top: none;
}
.press-item:last-child{
    border-bottom: solid 0.5px var(--wp--preset--color--sauge);
}
.press-item__meta{
    display: flex;
    position: relative;
    z-index: 2;
    transition: color 0.6s ease;
    font-size: var(wp--preset--font-size--size-18);
    font-weight: 500;
}
.press-item__meta:first-child{
    width: 20%;
}
.press-item__meta:nth-child(2){
    width: 30%;
}
.press-item__meta:nth-child(3){
    width: 50%;
}
@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:first-child:hover .press-item__meta{
    color: var(--wp--preset--color--noir);
}
.press-item:first-child .press-item__meta{
    font-size: var(--wp--preset--font-size--size-16);
    color: #505050;
    font-weight: 600;
}
.press-item:first-child .press-item__meta:last-child{
    width: 50%;
}
.press-item__year{
    margin: 0;
    transition: color 0.6s ease;
}
.press-item:hover .press-item__year{
    color: var(--wp--preset--color--white);
}
.press-item{ position:relative; }
.press-item__preview{ position:absolute; right:0; top:0; width:240px; height:135px; overflow:hidden; opacity:0; pointer-events:none; transform:translateY(-110%); transition:opacity .2s ease, transform .2s ease; z-index:5; }
.press-item:hover .press-item__preview, .press-item:focus-within .press-item__preview{ opacity:1; transform:translateY(-100%); pointer-events:auto; }
.press-item__preview video{ width:100%; height:100%; object-fit:cover; display:block; }
.press-logos{
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}
@media (max-width: 768px) {
    .press-logos {
        justify-content: center;
    }
}