/* GoldLine — Pinterest block (homepage, glass timeline) */

.gl-pinterest-block {
	position: relative;
	padding: 100px 0;
	background: var(--secondary-color);
}

.gl-pinterest-block .why-choose-images {
	margin-top: 0;
}

/* Typography — match site defaults on light beige background */
.gl-pinterest-intro .section-title {
	margin-bottom: 32px;
}

.gl-pinterest-intro .section-title h3,
.gl-pinterest-intro .section-title h2,
.gl-pinterest-intro .section-title p {
	color: var(--primary-color);
}

.gl-pinterest-intro .section-title h2 {
	font-size: clamp(28px, 3.2vw, 52px);
}

.gl-pinterest-intro .section-title p {
	margin-top: 20px;
	margin-bottom: 0;
	font-size: 16px;
	line-height: 1.6;
	color: #1a1816;
}

.gl-pinterest-cta {
	margin-top: 36px;
}

/* Glass timeline steps */
.gl-pinterest-steps {
	margin-top: 36px;
	display: flex;
	flex-direction: column;
}

.gl-pinterest-step {
	position: relative;
	display: grid;
	grid-template-columns: 56px 1fr;
	gap: 18px;
	padding: 22px 22px 22px 18px;
	border-radius: 20px;
	background: rgba(255, 255, 255, 0.52);
	border: 1px solid rgba(97, 83, 40, 0.12);
	box-shadow:
		0 12px 32px rgba(97, 83, 40, 0.08),
		inset 0 1px 0 rgba(255, 255, 255, 0.85);
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
}

.gl-pinterest-step + .gl-pinterest-step {
	margin-top: 14px;
}

.gl-pinterest-step__icon {
	width: 56px;
	height: 56px;
	border-radius: 16px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: rgba(255, 255, 255, 0.72);
	border: 1px solid rgba(97, 83, 40, 0.18);
	color: var(--accent-color);
	font-size: 22px;
}

.gl-pinterest-step__body h4 {
	margin: 0 0 8px;
	font-size: 18px;
	font-weight: 700;
	line-height: 1.25;
	color: var(--primary-color);
}

.gl-pinterest-step__body p {
	margin: 0;
	font-size: 15px;
	line-height: 1.55;
	color: #2a2622;
}

.gl-pinterest-step__num {
	position: absolute;
	top: 18px;
	right: 18px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.06em;
	color: rgba(26, 24, 22, 0.38);
}

.gl-pinterest-step:not(:last-child)::after {
	content: '';
	position: absolute;
	left: 44px;
	bottom: -14px;
	width: 2px;
	height: 14px;
	background: linear-gradient(180deg, rgba(97, 83, 40, 0.35), rgba(97, 83, 40, 0.06));
	z-index: 1;
}

@media only screen and (max-width: 991px) {
	.gl-pinterest-block {
		padding: 64px 0;
	}

	.gl-pinterest-block .why-choose-images {
		margin-top: 48px;
	}
}

@media only screen and (max-width: 767px) {
	.gl-pinterest-block {
		padding: 52px 0;
	}

	.gl-pinterest-step {
		grid-template-columns: 48px 1fr;
		gap: 14px;
		padding: 18px 16px;
	}

	.gl-pinterest-step__icon {
		width: 48px;
		height: 48px;
		font-size: 18px;
	}

	.gl-pinterest-step:not(:last-child)::after {
		left: 38px;
	}
}
