/**
 * 3 CTA blocks — icon, small pink label, bold heading, link button.
 * Vertical separators between blocks (desktop only).
 */

.cta-three {
	margin-block: var(--space-16);
}

.cta-three__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 0;
}

.cta-three__item {
	display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-8);
    text-align: center;
    position: relative;
}

/* Vertical separators between items */
.cta-three__item + .cta-three__item::before {
	content: "";
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 1px;
	height: 88px;
	background: var(--color-border);
}

/* === Icon === */
.cta-three__icon {
	width: 74px;
	height: 74px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.cta-three__icon img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

/* === Content === */
.cta-three__content {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: var(--space-1);
}

.cta-three__label {
	font-family: var(--font-sans);
    font-size: var(--text-sm);
    font-weight: var(--font-medium);
    line-height: 20px;
    color: #FF8FAB;
    margin: 0;
}

.cta-three__heading {
	font-family: var(--font-heading);
    font-size: 22px;
    font-weight: var(--font-bold);
    line-height: 28px;
    color: var(--color-black);
    margin: 0 0 var(--space-3);
}

/* === Responsive === */
@media (max-width: 768px) {
	.cta-three__grid {
		grid-template-columns: 1fr;
		gap: var(--space-6);
	}

	/* Horizontal separators between stacked items */
	.cta-three__item + .cta-three__item::before {
		left: 50%;
		top: 0;
		transform: translate(-50%, -50%);
		width: 88px;
		height: 1px;
	}

	.cta-three__heading {
		font-size: 18px;
        line-height: 25px;
	}
	.cta-three {
		margin-block: 42px;
	}

	.cta-three__label {
		font-size: var(--text-base);
		line-height: 25px;
	}
	.cta-three__item {
		padding-top: 24px;
	}

	.cta-three__item:first-child {
		padding-top: 0;
	}
}
