	.subpage-tile {
		position: relative;
		width: 100%;
		height: 280px;
		border-radius: 6px;
		overflow: hidden;
		display: flex;
		align-items: flex-end;
		transition: transform .25s ease, box-shadow .25s ease;
	}

	.subpage-card:hover .subpage-tile {
		transform: translateY(-4px);
		box-shadow: 0 12px 28px rgba(0,0,0,0.18);
	}

	.subpage-bg {
		position: absolute;
		inset: 0;
		background-size: cover;
		background-position: center;
		z-index: 1;
	}

	.subpage-overlay {
		position: absolute;
		inset: 0;
		z-index: 2;
		background: linear-gradient(
			to top,
			var(--bs-secondary) 0%,
			rgba(0,0,0,0) 40%
		);
		opacity: .65;
	}

	.subpage-title {
		position: relative;
		z-index: 3;
		width: 100%;
		padding: 1rem 1.25rem;
		text-align: center;
	}