/**
 * Homepage image band. Loaded only on the front page.
 */

.az-home-band {
	--az-palm: #899878;
	--az-porcelain: #f7f7f2;
	--az-beige: #e4e6c3;
	--az-carbon: #222725;
	--az-onyx: #121113;
	background: var(--az-beige);
	color: var(--az-carbon);
	padding: 3.5rem 1.25rem 4rem;
}

.az-home-band__inner {
	max-width: 1120px;
	margin: 0 auto;
}

.az-home-band__title {
	margin: 0;
	color: var(--az-onyx);
	font-size: clamp(1.75rem, 2.4vw, 2.25rem);
	font-weight: 650;
	letter-spacing: -0.02em;
	line-height: 1.2;
	text-align: center;
}

.az-home-band__title::after {
	content: "";
	display: block;
	width: 3rem;
	height: 3px;
	margin: 0.85rem auto 0;
	background: var(--az-palm);
	border-radius: 999px;
}

.az-home-band__lead {
	max-width: 36rem;
	margin: 1rem auto 0;
	color: var(--az-carbon);
	font-size: 1.05rem;
	line-height: 1.55;
	text-align: center;
}

.az-home-band__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1.25rem;
	margin: 2rem 0 0;
	padding: 0;
	list-style: none;
}

.az-home-band__card {
	display: flex;
	flex-direction: column;
	background: var(--az-porcelain);
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 10px 28px rgba(18, 17, 19, 0.08);
}

.az-home-band__media {
	aspect-ratio: 4 / 3;
	background: var(--az-beige);
}

.az-home-band__media img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.az-home-band__copy {
	padding: 1.15rem 1.2rem 1.3rem;
}

.az-home-band__copy h3 {
	margin: 0 0 0.4rem;
	color: var(--az-onyx);
	font-size: 1.15rem;
	font-weight: 650;
	line-height: 1.3;
}

.az-home-band__copy p {
	margin: 0;
	color: var(--az-carbon);
	font-size: 0.98rem;
	line-height: 1.55;
}

@media (max-width: 900px) {
	.az-home-band__grid {
		grid-template-columns: 1fr;
		max-width: 28rem;
		margin-left: auto;
		margin-right: auto;
	}
}
