main>article.location{
	>section{
		>header{
			font-size:300%;
		}
		>section{
			figure{
				&:only-child{
					max-height:400px;
				}
				img{
					border-radius:5px;
					object-fit:cover;
					max-height:min(80%,400px);
				}
				figcaption{
					padding:0.25em;
					font-weight:bold;
					font-size:200%;
				}
				text-align:center;
			}
			display:grid;
			gap:1em;
		}
	}
}
@media(max-width:850px){
	main>article.location{
		>section{
			>section{
				figure{
					img{
						object-fit:contain;
						max-height:250px;
					}
					figcaption{
						padding:0.25em;
						font-weight:bold;
						font-size:100%;
					}
				}
				display:block;
			}
		}
	}
}