body {
	padding-top: 50px;
	color: #959595;
	}
	
h1, h2, h3, h4, h5, h6 {
	color: black;
	}
	
.feature {
	background-color: yellowgreen;
	color: greenyellow;
	}
	
.article-intro {
    margin-bottom: 25px;
}

.footer-blurb {
    padding: 30px 0;
    background-color: goldenrod;
    color: black;
}
    
.footer-blurb-item {
    padding: 30px;
    }
 
.small-print {
	background-color: #fff;
	padding: 30px 0;
}

.feature,
.page-intro,
.article-intro,
.footer-blurb,
.small-print {
	text-align: center;
	}

.margin-auto{
	margin: auto;
}

/* === Grid Container for the Cards === */
.cards-grid-container {
	gap: 1.5rem;
	padding: 1.5rem;
	margin: auto;
}

/* === Product Card Styles === */
.product-card {
	--product-card-radius: 12px;
	--product-card-shadow: 0 4px 6px -1px rgba(0,0,0,0.07), 0 2px 4px -2px rgba(0,0,0,0.07);

	background-color: #ffffff;
	border-radius: var(--product-card-radius);
	box-shadow: var(--product-card-shadow);
	overflow: hidden;
	display: flex;
	flex-direction: column;
	transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.product-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1);
}

.product-card a.product-card-link {
	text-decoration: none;
	color: inherit;
}

/* Image container */
.product-card-image-container {
	position: relative;
	background-color: #f3f4f6; /* Fallback for transparent images */
}

.product-card-image {
	width: 100%;
	height: 300px;
	object-fit: cover;
	display: block;
}

/* Product details */
.product-card-content {
	padding: 1rem 1.25rem;
	display: flex;
	flex-direction: column;
	flex-grow: 1; /* Pushes footer to the bottom */
}

.product-card-category {
	font-size: 0.8rem;
	color: #6b7280;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	margin-bottom: 0.25rem;
}

.product-card-title {
	font-size: 1.1rem;
	font-weight: 600;
	line-height: 1.4;
	margin: 0;
}

/* Price and Action button footer */
.product-card-footer {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1rem 1.25rem;
	border-top: 1px solid #f3f4f6;
	margin-top: 1rem;
}

.product-card-price {
	font-size: 1.2rem;
	font-weight: 700;
	color: #111827;
}

.product-card-cta {
	background-color: #1f2937;
	color: #ffffff;
	font-weight: 500;
	border: none;
	border-radius: 8px;
	padding: 0.6rem 1rem;
	cursor: pointer;
	transition: background-color 0.2s ease;
}

.product-card-cta:hover {
	background-color: #374151;
}