.content-image-gallery {
	padding: 60px 0 70px;
	background-image: url(../../assets/img/bg-granite-mixed-quality10.webp);
	background-attachment: fixed;
	background-position: center;
	background-repeat: repeat-y;
	background-size: 1440px auto;
	position: relative;
	overflow: hidden;
}
.content-image-gallery:after {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0.95;
	z-index: 0;
}
.bg-white.content-image-gallery:after {
	background-color: white;
}
.bg-westar.content-image-gallery:after {
	background-color: var(--color-westar);
}
.bg-gravel.content-image-gallery:after {
	background-color: var(--color-gravel);
}
.bg-black.content-image-gallery:after {
	background-color: var(--color-black);
}
.content-image-gallery__container {
	position: relative;
	z-index: 2;
}

.content-image-gallery__accent {
	position: absolute;
	z-index: 1;
	top: -160px;
	right: 10px;
}
:is(.bg-white, .bg-westar) .content-image-gallery__accent {
	opacity: 0.5;
}


.content-image-gallery__content > :last-child {
	margin-bottom: 0;
}

.content-image-gallery__body {
	display: grid;
	gap: 30px 20px;
	margin-top: 45px;
}
.content-image-gallery__col {
	display: grid;
	gap: 20px;
	text-align: center;
	text-decoration: none;
}
.content-image-gallery__col img {
	aspect-ratio: 1;
	width: 100%;
	border-radius: 25px;
	object-fit: cover;
}
.content-image-gallery__col h3 {
	margin: 0;
	transition: color 0.15s ease-out;
}
:is(.bg-white, .bg-westar) a.content-image-gallery__col h3 {
	color: var(--color-black);
}
.bg-white a.content-image-gallery__col:is(:hover, :focus) h3 {
	color: #587A8D;
}
.bg-westar a.content-image-gallery__col:is(:hover, :focus) h3 {
	color: #4B6677;
}
:is(.bg-gravel, .bg-black) .content-image-gallery__col h3 {
	color: inherit;
}

@media (min-width: 576px) {
	.content-image-gallery__body {
		grid-template-columns: repeat(2, 1fr);
	}
}
@media (min-width: 768px) {
	.content-image-gallery__accent {
		right: 30px;
	}
}
@media (min-width: 992px) {
	.content-image-gallery {
		padding: 80px 0 90px;
	}
	.content-image-gallery__intro {
		display: grid;
		grid-template-columns: 1fr 0.76fr;
		gap: 30px;
	}
	.content-image-gallery__intro h2 {
		margin-bottom: 0;
	}
	.has-no-content .content-image-gallery__intro {
		align-items: end;
	}
	.has-no-content .content-image-gallery__btn-group {
		justify-content: end;
	}
	.content-image-gallery__body {
		grid-template-columns: repeat(4, 1fr);
	}
	.content-image-gallery__col {
		display: flex;
		flex-direction: column;
	}
}
@media (min-width: 1440px) {
	.content-image-gallery {
		background-size: cover;
	}
}