.aqn-cat-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

.aqn-cat-grid__item {
	position: relative;
	display: block;
	overflow: hidden;
	height: 320px;
	border-radius: 12px;
	text-decoration: none;
	cursor: pointer;
}

/* Overlay pseudo-element */
.aqn-cat-grid__item::after {
	content: '';
	position: absolute;
	inset: 0;
	background-color: rgba(0, 0, 0, 0);
	transition: background-color 0.3s ease;
	pointer-events: none;
	border-radius: inherit;
	z-index: 1;
}

/* Image */
.aqn-cat-grid__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.4s ease;
}

.aqn-cat-grid--zoom .aqn-cat-grid__item:hover .aqn-cat-grid__img {
	transform: scale(1.05);
}

/* Label pill */
.aqn-cat-grid__label {
	position: absolute;
	bottom: 20px;
	left: 20px;
	z-index: 2;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background-color: #ffffff;
	border-radius: 50px;
	padding: 10px 18px;
	pointer-events: none;
}

.aqn-cat-grid__label-text {
	color: #0a2342;
	font-size: 15px;
	font-weight: 600;
	line-height: 1.2;
	white-space: nowrap;
}

/* Arrow chevron */
.aqn-cat-grid__arrow {
	width: 16px;
	height: 16px;
	color: #0a2342;
	flex-shrink: 0;
	transition: transform 0.25s ease;
}
