.venue__right {
	display:block;
	overflow:hidden;
}

.venue__image {
	position:relative;
	max-height: none!important;
	max-width: none!important;
	width: 100%;
	height: 100%;
}
.venue__image img{
	left: 0;
    object-fit: contain;
    object-position: bottom center;
    position: absolute;
    top: 0;
    width: 100%;
}

.venue__image-title, 
.venue__image-desc {
	display: none;
}
.header__rozklad {
	display:flex;
	align-items:center;
	justify-content:center;
	margin-bottom: 40px;
	border: .0625rem solid rgba(51, 51, 51, .5);
    border-radius: 1rem;
    box-shadow: 0 .5rem 2rem -.5rem rgba(0, 0, 0, .4);
	overflow:hidden;
}

.header__rozklad-mobile {
	display:none;
	border: .0625rem solid rgba(51, 51, 51, .5);
    border-radius: 1rem;
    box-shadow: 0 .5rem 2rem -.5rem rgba(0, 0, 0, .4);
	overflow:hidden;
}

@media (min-width: 20em) and (max-width: 77.875em) {
	.venue__image {
		max-height: clamp(15rem, 12.840172786175rem + 10.7991360691vw, 21.25rem);
        min-height: clamp(15rem, 12.840172786175rem + 10.7991360691vw, 21.25rem);
	}
	.venue__image img {
		max-width: none;
		height: 100%;
		width: auto;
	}
	
	.header__rozklad {
		display:none;
	}

	.header__rozklad-mobile {
		display:flex;
		align-items:center;
		justify-content:center;
		margin-bottom: 40px;
	}
}