.gorriceta-gallery {
	position: relative;
	margin: 0 auto;
	--diamond-size: 60px;
	--diamond-gap: 6px;
}

.gorriceta-diamond {
	position: absolute;
	width: var(--diamond-size);
	height: var(--diamond-size);
	background: #FFFFFF;
	border: 2px solid #BC955C;
	box-shadow: 0px 4px 12px 0px #00000040;
	box-sizing: border-box;
	transform: rotate(45deg);
	display: flex;
	align-items: center;
	justify-content: center;
}

.gorriceta-diamond-inner {
	width: 100px;
	height: 64px;
	transform: rotate(-45deg); /* counter-rotate so the logo stays upright */
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	box-sizing: border-box;
}

.gorriceta-diamond-inner img {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
	display: block;
}
