.hide-desktop {
    display: none;
}

@media (max-width: 1023px) {
    .hide-desktop {
        display: block;
    }
}

/* Hide on mobile screens (below 1024px) */
.hide-mobile {
    display: block;
}

@media (max-width: 1023px) {
    .hide-mobile {
        display: none;
    }
}

/* Navbar logos - same height */
#mainNav #petrzalka img {
    height: 40px;
    width: auto;
    border-right: none !important;
}

#mainNav #petrzalka {
    border-right: 1px solid #fff;
    padding-right: 10px;
    height: 40px;
    padding-top: 0;
    padding-bottom: 0;
}

#mainNav .kzp-brand img {
    height: 40px;
    width: auto;
}

@media (min-width: 992px) {
    #mainNav #petrzalka img {
        height: 50px;
    }
    #mainNav #petrzalka {
        height: 50px;
    }
    #mainNav .kzp-brand img {
        height: 50px;
    }
}

/* KZP brand - logo left, text right */
#mainNav .navbar-brand.kzp-brand {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* KZP brand text - hidden on mobile, 3 lines from sm up */
#mainNav .kzp-brand-text {
    line-height: 1.2;
    font-size: 0.7rem;
    text-align: left;
    white-space: nowrap;
}

@media (min-width: 992px) {
    #mainNav .kzp-brand-text {
        font-size: 0.85rem;
    }
}

/* Contact page - links to individual cultural venues */
.contact-place-card {
    display: block;
    height: 100%;
    overflow: hidden;
    border-radius: 0.25rem;
    background: #f1f3f5;
    color: #212529;
    text-align: center;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.contact-place-card:hover,
.contact-place-card:focus {
    color: #212529;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

.contact-place-card:focus {
    outline: 3px solid #e2434b;
    outline-offset: 2px;
}

.contact-place-card__image {
    display: block;
    overflow: hidden;
    aspect-ratio: 8 / 5;
    background: #dee2e6;
}

.contact-place-card__image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.2s ease;
}

.contact-place-card:hover .contact-place-card__image img,
.contact-place-card:focus .contact-place-card__image img {
    transform: scale(1.025);
}

.contact-place-card__title {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 4.5rem;
    padding: 1rem;
    font-size: 1.15rem;
    font-weight: 700;
    line-height: 1.25;
}
