.dcr-container {
	width: 100%;
	margin: 0 auto;
	padding: 20px 0;
}

/* Mobile: 2 Columns Grid */
.dcr-cards-row {
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
	padding: 15px;
}

/* Hide scrollbar disabled as we now wrap */

.dcr-card {
	flex: 0 0 calc(50% - 7.5px);
	min-width: 0;
	position: relative;
	display: flex;
	flex-direction: column;
	text-decoration: none;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 4px 15px rgba(0,0,0,0.06);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.dcr-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.dcr-card-img-wrap {
	width: 100%;
	aspect-ratio: 1 / 1;
	overflow: hidden;
	position: relative;
}

.dcr-card-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.5s ease;
}

.dcr-card:hover .dcr-card-img {
	transform: scale(1.05);
}

.dcr-card-overlay {
	padding: 0px 15px;
	text-align: center;
	/* Extends below the card image */
	display: flex;
	flex-grow: 1;
	align-items: center;
	justify-content: center;
}

.dcr-overlay-text {
	display: block;
	font-weight: 700;
	font-size: 1.1rem;
	line-height: 1.3;
	padding-top: 4px;
	padding-bottom: 4px;
	letter-spacing: 0.5px;
	text-transform: uppercase;
}

/* Desktop Layout (Tablet and up) */
@media (min-width: 768px) {
	.dcr-cards-row {
		gap: 20px;
		padding: 20px 0;
	}
	.dcr-card {
		/* Show exactly 4 cards, accounting for 20px gap */
		flex: 0 0 calc(25% - 15px);
	}
}
