/* ==========================================================================
   Anchor Block
   Pill-shaped scroll-anchor button.
   Figma spec: padding 18px · border-radius 27px · white bg · shadow 0 4 4
   ========================================================================== */

.block-anchor {
	display: block;
	text-align: center;
}

.block-anchor__link {
	padding: 18px;
	background: var(--wp--preset--color--white);
	box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
	border-radius: 27px;
	display: inline-flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 10px;
	text-decoration: none;
	color: var(--wp--preset--color--dark, #031c31);
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.block-anchor__link:hover {
	box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.18);
	color: var(--wp--preset--color--primary);
	transform: translateY(-2px);
}

.block-anchor__arrow {
	display: block;
}

/* Editor placeholder */
.block-anchor--placeholder {
	padding: 18px;
	background: #f5f5f5;
	border-radius: 27px;
	color: #999;
	font-style: italic;
}
