/* GRID LAYOUT */
.ars-grid-d9cc6280 {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 20px;
}

/* CARD LAYOUT - FLEXBOX MAGIC */
.ars-item-d9cc6280 {
	display: flex;
	flex-direction: column;
	height: 100%;
	box-sizing: border-box;
	overflow: hidden;
}

/* IMAGE */
.ars-item-image-d9cc6280 {
	flex-shrink: 0;
	margin-bottom: 15px;
}

.ars-item-image-d9cc6280 img {
	width: 100%;
	height: auto;
	display: block;
	object-fit: cover;
}

.ars-item-image-d9cc6280 a {
	display: block;
}

/* TITLE */
.ars-item-title-d9cc6280 {
	flex-grow: 0;
	margin-bottom: 15px;
	font-weight: bold;
}

.ars-item-title-d9cc6280 a {
	text-decoration: none;
	color: inherit;
	display: block;
}

/* BUTTON WRAPPER - PUSHES TO BOTTOM */
.ars-item-btn-wrap-d9cc6280 {
	margin-top: auto; /* This forces the button to the bottom */
}

/* BUTTON */
.ars-item-btn-d9cc6280 {
	display: inline-block;
	padding: 10px 20px;
	background-color: #000;
	color: #fff;
	text-decoration: none;
	transition: all 0.3s ease;
	text-align: center;
}

.ars-item-btn-d9cc6280:hover {
	background-color: #333;
	color: #fff;
}

/* FALLBACK */
.ars-placeholder-img-d9cc6280 {
	width: 100%;
	height: 200px;
	background: #f5f5f5;
}
