/* GCF PC Spec Sheet - frontend styles.
   Colors and sizing are set as CSS variables inline by the renderer, so the
   look follows the module/shortcode settings. Typography matches the source
   sheet (Bebas Neue, condensed uppercase). */

.gcf-pcss {
	--gcf-accent: #67b31b;
	--gcf-heading: #174c4f;
	--gcf-text: #174c4f;
	--gcf-icon-size: 48px;
	--gcf-gap: 22px;
	--gcf-heading-size: 25px;
	--gcf-sub-size: 19px;

	display: grid;
	grid-template-columns: 1fr;
	gap: var(--gcf-gap);
	align-items: start;
	font-family: "Bebas Neue", "Oswald", "Arial Narrow", sans-serif;
	line-height: 1.05;
}

.gcf-pcss--cols-2 {
	grid-template-columns: 1fr 1fr;
	column-gap: calc(var(--gcf-gap) * 1.6);
}

.gcf-pcss__row {
	display: flex;
	align-items: center;
	gap: calc(var(--gcf-icon-size) * 0.32);
	min-width: 0;
}

.gcf-pcss--layout-top .gcf-pcss__row {
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: calc(var(--gcf-icon-size) * 0.18);
}

.gcf-pcss__icon {
	flex: 0 0 auto;
	width: var(--gcf-icon-size);
	height: var(--gcf-icon-size);
	color: var(--gcf-accent);
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.gcf-pcss__icon svg {
	width: 100%;
	height: 100%;
	display: block;
}

.gcf-pcss__body {
	display: flex;
	flex-direction: column;
	gap: 0.12em;
	min-width: 0;
}

.gcf-pcss__heading {
	color: var(--gcf-heading);
	font-weight: 400;
	font-size: var(--gcf-heading-size);
	line-height: 0.98;
	letter-spacing: 0.02em;
	text-transform: uppercase;
}

.gcf-pcss__sub {
	color: var(--gcf-text);
	font-weight: 400;
	font-size: var(--gcf-sub-size);
	line-height: 1;
	letter-spacing: 0.02em;
	text-transform: uppercase;
}

.gcf-pcss__price {
	color: var(--gcf-accent);
	white-space: nowrap;
}

.gcf-pcss--dividers .gcf-pcss__row {
	padding-bottom: var(--gcf-gap);
	border-bottom: 1px solid rgba(23, 76, 79, 0.14);
}

.gcf-pcss--dividers.gcf-pcss--cols-1 .gcf-pcss__row:last-child {
	border-bottom: 0;
	padding-bottom: 0;
}

@media (max-width: 600px) {
	.gcf-pcss--cols-2 {
		grid-template-columns: 1fr;
	}
}
