.visitors-guide {
	position: relative;
	margin: 0 auto;
	max-width: 280px;
	margin-bottom: 76px;
}

.visitors-guide .img-cont,
.visitors-guide .img-cont img { border-radius: 4px; }

.visitors-guide .img-cont img {
	width: 100%;
	height: auto;
}

.visitors-guide .content-section {
	position: absolute;
	bottom: max(calc(-15px + (-30 + 15) * ((100vw - 320px) / (375 - 320))), -30px);
	right: max(calc(-15px + (-30 + 15) * ((100vw - 320px) / (375 - 320))), -30px);
	display: flex;
	justify-content: center;
	align-items: center;
	aspect-ratio: 1 / 1;
	background: var(--orange);
	border-radius: var(--rounded-full);
	pointer-events: none;
}

.visitors-guide h4 {
	font-family: var(--font-display-alt);
	font-size: 0.9375rem;
	font-weight: 700;
	line-height: calc(18 / 15);
	letter-spacing: var(--tracking-normal);
	color: var(--white);
	text-transform: uppercase;
	max-width: 11ch;
	text-align: center;
	pointer-events: all;
}

@media (min-width: 64em) {
	.visitors-guide {
		max-width: 316px;
		margin-bottom: 50px;
	}
}