/* Pricing list (Cennik) */

.morelo-pricing {
	background: transparent;
	color: #000;
	padding: 56px 0;
}

.morelo-pricing-container {
	max-width: 1092px;
}

.morelo-pricing-head {
	margin: 0 0 34px;
}

.morelo-pricing-kicker {
	margin: 0 0 2px;
	font-size: clamp(1.6rem, 2.1vw, 2.8rem);
	font-weight: 300;
	letter-spacing: 0.8px;
	text-transform: uppercase;
	color: rgba(0, 0, 0, 0.92);
}

.morelo-pricing-title {
	margin: 0;
	line-height: 1.05;
	letter-spacing: 0.4px;
	text-transform: uppercase;
}

.morelo-pricing-title-bold {
	display: inline-block;
	font-weight: 900;
	font-size: clamp(1.55rem, 2.2vw, 2.7rem);
}

.morelo-pricing-group + .morelo-pricing-group {
	margin-top: 42px;
}

.morelo-pricing-group-title {
	margin: 0 0 16px;
	font-size: 0.95rem;
	letter-spacing: 0.8px;
	text-transform: uppercase;
	color: rgba(0, 0, 0, 0.78);
}

.morelo-pricing-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.morelo-pricing-item {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 24px;
	align-items: baseline;
	padding: 14px 0;
}

.morelo-pricing-item + .morelo-pricing-item {
	border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.morelo-pricing-item-label {
	font-weight: 700;
	color: rgba(0, 0, 0, 0.9);
}

.morelo-pricing-item-price {
	font-weight: 800;
	white-space: nowrap;
	color: rgba(0, 0, 0, 0.92);
}

@media (max-width: 640px) {
	.morelo-pricing-item {
		grid-template-columns: 1fr;
		gap: 8px;
	}

	.morelo-pricing-item-price {
		justify-self: start;
	}
}

