/* Post-hero pull — single-line CTA that points eye to a section below */
.lwh-post-hero-cta__btn {
	width: 100%;
	display: flex;
	align-items: center;
	gap: 18px;
	padding: 18px 24px;
	background: transparent;
	border: 1px solid var(--line);
	border-left: 2px solid var(--accent);
	color: var(--fg);
	text-align: left;
	cursor: pointer;
	font: inherit;
	transition: background 0.2s ease, border-color 0.2s ease;
}

.lwh-post-hero-cta__btn:hover {
	background: var(--bg-2);
	border-color: var(--fg-3);
	border-left-color: var(--accent);
}

.lwh-post-hero-cta__btn:hover .lwh-post-hero-cta__arrow {
	transform: translateY(3px);
}

.lwh-post-hero-cta__btn:focus-visible {
	outline: 2px solid var(--accent);
	outline-offset: 3px;
}

.lwh-post-hero-cta__pulse {
	position: relative;
	width: 10px;
	height: 10px;
	flex-shrink: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.lwh-post-hero-cta__pulse::before {
	content: "";
	position: absolute;
	inset: -4px;
	border-radius: 50%;
	background: var(--accent);
	opacity: 0.25;
	animation: lwh-post-hero-cta-pulse 1.6s ease-in-out infinite;
}

.lwh-post-hero-cta__pulse-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--accent);
	position: relative;
	z-index: 1;
}

@keyframes lwh-post-hero-cta-pulse {
	0%, 100% { transform: scale(1);   opacity: 0.25; }
	50%      { transform: scale(1.6); opacity: 0;    }
}

.lwh-post-hero-cta__label {
	font-family: var(--font-mono, monospace);
	font-size: 11px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--accent);
	flex-shrink: 0;
}

.lwh-post-hero-cta__copy {
	font-size: 15px;
	color: var(--fg-2);
	flex: 1;
	line-height: 1.4;
}

.lwh-post-hero-cta__arrow {
	font-family: var(--font-mono, monospace);
	font-size: 18px;
	color: var(--fg);
	margin-left: 8px;
	transition: transform 0.2s ease;
}

@media (max-width: 640px) {
	.lwh-post-hero-cta__btn {
		flex-wrap: wrap;
		gap: 10px 14px;
		padding: 16px 18px;
	}
	.lwh-post-hero-cta__copy { flex-basis: 100%; }
	.lwh-post-hero-cta__arrow { margin-left: auto; }
}

@media (prefers-reduced-motion: reduce) {
	.lwh-post-hero-cta__pulse::before { animation: none; opacity: 0.4; }
	.lwh-post-hero-cta__btn,
	.lwh-post-hero-cta__arrow { transition: none; }
}
