.photoswipe-gallery {
    display: flex;
    justify-content: center;

    @media (max-width: 768px) {
        flex-direction: column;
    }

    gap: 1rem;

    a {
        display: block;
        overflow: hidden;
        border-radius: 10px;
        box-shadow: var(--soft-shadow);
        transition: var(--transition-smooth);

        &:hover {
            transform: scale(1.03);
            box-shadow: var(--hover-shadow);
        }
    }

    img {
        width: 100%;
        height: 180px;
        object-fit: cover;
        display: block;
    }
}

.contact {
    margin-bottom: 2rem;
    display: flex;
    gap: 8rem;
    justify-content: center;
    & .contact-coords {
        text-align: center;
        font-weight: bold;
    }

    @media (max-width: 768px) {
        flex-direction: column;
        gap: 2rem;
    }
}

.instagram-link {
    color: var(--anaigreen);
    text-align: right;
    display: block;
    text-decoration: none;
    &.mobile {
        @media (min-width: 768px) {
            display: none;
        }
    }
    &.desktop {
        @media (max-width: 768px) {
            display: none;
        }
        margin-right: 8rem;
    }
}
