/**
 * Our Stations — two-card layout (Homemade creations | Our services).
 * Font Awesome + plain CSS (no Tailwind build required).
 */

.dst-stations-section {
	border-bottom: 1px solid #e7e5e4;
	background: linear-gradient(
		180deg,
		rgba(245, 243, 255, 0.88) 0%,
		#ffffff 42%,
		#fafaf9 100%
	);
	padding: 5rem 1rem;
}

@media (min-width: 768px) {
	.dst-stations-section {
		padding: 6rem 1.5rem;
	}
}

.dst-stations-inner {
	max-width: 72rem;
	width: 100%;
	margin-left: auto;
	margin-right: auto;
	padding-left: 1rem;
	padding-right: 1rem;
	text-align: left;
}

.dst-stations-title {
	font-family: "Fraunces", Georgia, "Times New Roman", serif;
	font-size: 1.875rem;
	font-weight: 600;
	letter-spacing: -0.025em;
	line-height: 1.2;
	color: #2e1065;
	margin: 0;
}

@media (min-width: 768px) {
	.dst-stations-title {
		font-size: 2.25rem;
	}
}

.dst-stations-lead {
	margin: 1rem 0 0;
	max-width: 48rem;
	font-size: 1.125rem;
	line-height: 1.75;
	color: #44403c;
}

/* Two cards side by side (stack on small screens) */
.dst-stations-grid {
	display: grid;
	gap: 1.5rem;
	margin-top: 2.5rem;
}

@media (min-width: 1024px) {
	.dst-stations-grid {
		grid-template-columns: 1fr 1fr;
		gap: 2rem;
		align-items: stretch;
	}
}

.dst-stations-card {
	background: #fff;
	border-radius: 1.25rem;
	border: 1px solid #e7e5e4;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
	padding: 1.5rem 1.25rem;
	display: flex;
	flex-direction: column;
	min-height: 0;
}

@media (min-width: 768px) {
	.dst-stations-card {
		padding: 1.75rem 1.5rem;
		border-radius: 1.5rem;
	}
}

.dst-stations-card__title {
	font-family: "DM Sans", system-ui, sans-serif;
	font-size: 0.6875rem;
	font-weight: 600;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: #5b21b6;
	margin: 0 0 1.25rem;
}

.dst-stations-card__title--muted {
	color: #4c1d95;
	letter-spacing: 0.18em;
}

.dst-stations-card__intro {
	font-family: "DM Sans", system-ui, sans-serif;
	font-size: 0.9375rem;
	line-height: 1.6;
	color: #57534e;
	margin: 0 0 1.25rem;
}

/* Footer block: note + pre-order CTA (Homemade creations card) */
.dst-stations-card__foot {
	margin-top: auto;
	padding-top: 1.25rem;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 1rem;
	width: 100%;
}

.dst-stations-card__footer {
	margin: 0;
	font-family: "DM Sans", system-ui, sans-serif;
	font-size: 0.625rem;
	font-weight: 600;
	letter-spacing: 0.14em;
	line-height: 1.55;
	text-transform: uppercase;
	color: #6d28d9;
}

.dst-stations-card__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.7rem 1.5rem;
	border-radius: 9999px;
	font-family: "DM Sans", system-ui, sans-serif;
	font-size: 0.6875rem;
	font-weight: 600;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	text-decoration: none;
	color: #fff;
	background: linear-gradient(180deg, #6d28d9 0%, #5b21b6 55%, #4c1d95 100%);
	border: 1px solid rgba(76, 29, 149, 0.35);
	box-shadow: 0 2px 10px rgba(91, 33, 182, 0.28);
	transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease;
}

.dst-stations-card__btn:hover {
	color: #fff;
	filter: brightness(1.05);
	box-shadow: 0 4px 16px rgba(91, 33, 182, 0.38);
	transform: translateY(-1px);
}

.dst-stations-card__btn:focus-visible {
	outline: 2px solid #7c3aed;
	outline-offset: 2px;
}

/* List inside cards */
.dst-stations-list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.dst-stations-list--card {
	flex: 1 1 auto;
}

.dst-stations-card .dst-station-row {
	padding: 0.7rem 0;
	gap: 0.875rem;
}

.dst-stations-card .dst-station-row:first-child {
	padding-top: 0;
}

.dst-stations-card .dst-station-row + .dst-station-row {
	border-top: 1px solid #f5f5f4;
}

@media (min-width: 640px) {
	.dst-stations-card .dst-station-row {
		gap: 1rem;
		padding: 0.85rem 0;
	}
}

.dst-station-row {
	display: flex;
	flex-direction: row;
	align-items: flex-start;
}

.dst-station-row__icon {
	display: inline-flex;
	width: 2.75rem;
	height: 2.75rem;
	flex-shrink: 0;
	align-items: center;
	justify-content: center;
	border-radius: 0.5rem;
	background: #f5f3ff;
	color: #5b21b6;
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
	border: 1px solid rgba(91, 33, 182, 0.12);
}

.dst-station-row__icon .fa-solid,
.dst-station-row__icon .fa-brands,
.dst-station-row__icon i {
	font-size: 1.0625rem;
	line-height: 1;
}

@media (min-width: 640px) {
	.dst-station-row__icon {
		width: 3rem;
		height: 3rem;
	}

	.dst-station-row__icon .fa-solid,
	.dst-station-row__icon .fa-brands,
	.dst-station-row__icon i {
		font-size: 1.125rem;
	}
}

.dst-station-row__body {
	flex: 1;
	min-width: 0;
	padding-top: 1px;
}

.dst-stations-card .dst-station-row__title {
	font-family: "DM Sans", system-ui, sans-serif;
	font-size: 0.9375rem;
	font-weight: 600;
	line-height: 1.35;
	color: #1c1917;
	margin: 0;
}

.dst-stations-card .dst-station-row__text {
	margin: 0.25rem 0 0;
	font-size: 0.8125rem;
	line-height: 1.55;
	color: #57534e;
}

/* About + values panel — tidy rhythm when ACF injects bare tags */
.dst-about-prose {
	color: #44403c;
}

.dst-about-prose > p:not([class]) + p:not([class]),
.dst-about-prose > div:not([class]) + p:not([class]) {
	margin-top: 1.25rem;
}

.dst-about-prose a {
	color: #5b21b6;
	text-decoration: underline;
	text-underline-offset: 3px;
}

.dst-about-prose a:hover {
	color: #4c1d95;
}
