/* =========================================================
   Services Page — Pricing Cards
   ---------------------------------------------------------
   • Controls layout and spacing of price sections inside cards
   • Styles large hero prices, labels, and light/dark variants
   ---------------------------------------------------------
   File: services.css
   Location: /assets/css/pages/
   Author: Perran Wallace
   Last updated: 23 Oct 2025
   ========================================================= */


/* Remove default paragraph spacing inside price block */
.price-block p {
	margin: 0;
}

/* Control vertical spacing of the whole price section */
.price-block {
	margin-top: 0.75rem;    /* space below subtitle */
	margin-bottom: 1.25rem; /* space before bullet list */
}

/* Price line → big hero number with smaller labels */
.price-line {
	display: flex;
	justify-content: center;
	align-items: baseline;
	gap: .4rem;
	margin-bottom: .2rem;
	text-align: center;
}

.price-amount {
	font-size: clamp(2.2rem, 4.6vw, 3.25rem);
	line-height: 1;
	font-weight: 900;
	letter-spacing: -0.02em;
}

.price-label {
	font-size: .95rem;
}

/* Variants – Light and Dark Cards */
.price-light {
	color: #2d3748;
}
.price-light .price-label {
	opacity: .85;
}

.price-dark {
	color: #ffffff;
}
.price-dark .price-label {
	opacity: .9;
}
