/* Press repeater */

.press-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: clamp(24px, 4.8vw, 48px);
    background: var(--white);
    padding: clamp(24px, 4.8vw, 48px);
    border-radius: 2px;
    border: solid 6px var(--border-green);
}

a.press-item {
    max-width: 100%;
    max-height: 100%;
    display: flex;
    position: relative;
    aspect-ratio: 348 / 397;
    overflow: hidden;
}

section.press-repeater {
    z-index: 1;
    position: relative;
}

.press-item-logo img {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    display: flex;
    z-index: 2;
    width: 80%;
    height: 80%;
    object-fit: contain;
    max-height: 100px;
}

.press-item-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    position: absolute;
    transition: ease 0.5s;
}

a.press-item:after {
    background: var(--black);
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    content: '';
    opacity: 0.3;
    transition: ease 0.5s;
}
a.press-item:hover::after {
    opacity: 0.7;
}
a.press-item:hover .press-item-background img {
    transform: scale(1.1);
}

@media (max-width: 800px) {
    .press-wrapper {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .press-wrapper {
        grid-template-columns: 1fr;
    }
}