* {
    font-family: serif;
}


body {
    font-family: oswald;
    background-color: var(--beige);
}

.press-coverage {

    margin-top: 50px;
    text-align: center;
    color: #1d1c1c;
}

h2 {
    font-family: 'Gallery', serif;
}



.press {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    justify-items: center;
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.press img {
    margin-top: 12px;
    margin-bottom: 0;
    width: 100%;
    height: 300px;
    object-fit: cover;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.press img:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

#logo img {
    cursor: default !important;
}

#logo img:hover {
    transform: none !important;
    box-shadow: none !important;
}

/* Image Modal Styles */
.image-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    animation: fadeIn 0.3s ease;
    overflow: hidden;
}

.image-modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-modal-content {
    max-width: 90%;
    max-height: 90vh;
    object-fit: contain;
    animation: zoomIn 0.3s ease;
    cursor: zoom-in;
    transition: transform 0.1s ease;
}

.image-modal-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
    z-index: 2001;
}

.image-modal-close:hover {
    color: #bbb;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes zoomIn {
    from {
        transform: scale(0.8);
    }

    to {
        transform: scale(1);
    }
}

@media (max-width: 600px) {
    .press {
        grid-template-columns: 1fr;
        max-width: 420px;
        gap: 14px;
        padding: 16px;
    }

    .press img {
        height: 220px;
    }
}