[data-type="show-items-container"],
[data-type="show-footer"] {
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 2rem;
	width: 100%;
	max-width: 50rem;
	margin: auto;
	margin-top: 3rem;
}

[data-type="show-footer"] {
	margin-bottom: 3rem;
}

@media only screen and (max-width: 60rem) {
	[data-type="show-items-container"],
	[data-type="show-footer"] {
		padding-right: 2rem;
		padding-left: 2rem;
	}	
}

[data-show="photo-project"] figure {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	position: relative;
	width: 100%;
	margin: 0;
	overflow: hidden;
}

figure a img, figure img {
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	width: 100%;
	height: auto;
	border-radius: 5px;
}

figure iframe {
	width: 100%;
	height: auto;
	aspect-ratio: 16 / 9;
	border: unset;
	border-radius: 5px;
}

figure:hover a img, figure:hover img {
	filter: grayscale(1) brightness(0.5);
	transition : -webkit-filter 200ms linear;
	-webkit-transition : -webkit-filter 200ms linear;
}

[data-show="photo-project"] figcaption {
	display: none;
	font-size: 2.5rem;
	position: absolute;	
	inset: 0;
	padding: 0 1rem;
	width: 100%;
	max-width: 100%;
	box-sizing: border-box;	
	text-align: center;
	overflow-wrap: break-word;
	word-break: normal;
	color: #FFF;
	-moz-user-select: none;
	-webkit-user-select: none;
	-ms-user-select: none;
	user-select: none;	
	cursor: pointer;
	font-weight: 400;
}

@media only screen and (max-width: 60rem) {
	[data-show="photo-project"] figcaption {
		font-size: 1.5rem;
	}
}

[data-show="photo-project"] figure:hover figcaption {
	display: flex;
	justify-content: center;
	align-items: center;	
}

[data-type*="show-footer-content"] {
	padding-top: 3rem;
    border-top: 2px solid var(--bg-color-opposite);
}

[data-type="show-footer-content"] figure img {	
	width: fit-content;
	height: auto;
	max-height: 8rem;
	object-fit: contain;
	border-radius: 0.5rem;
}

[data-type="call-to-action"] {
	max-width: 50rem;
}

[data-project="show"] {
	margin-bottom: 4rem;
}

hr {
	width: 100%;
	border-top: 2px solid var(--bg-color-opposite);
}