/**
 * Phase 2.5 B1：div.ogc-actions 内的 core Buttons 区块继承 .ogc-button 视觉。
 * 规则逐条镜像 oceango-compliance.css 的 .ogc-button / .is-ghost / @680px，
 * 并压掉 core 按钮的全局默认样式（背景/圆角/内边距）。
 * .ogc-actions 自身的 flex/gap:12px 规则零特异性冲突（core 的 gap 用 :where() 注入），无需覆盖。
 */
.ogc-actions .wp-block-button__link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: 12px 22px;
	border: none;
	border-radius: 8px;
	font-weight: 750;
	font-size: inherit;
	line-height: inherit;
	text-decoration: none;
	background: var(--ogc-gold);
	color: var(--ogc-navy);
}
.ogc-actions .wp-block-button.is-ghost .wp-block-button__link {
	background: transparent;
	color: #fff;
	border: 1px solid rgba(255, 255, 255, 0.55);
}
@media (max-width: 680px) {
	.ogc-actions {
		flex-direction: column;
	}
	.ogc-actions .wp-block-button,
	.ogc-actions .wp-block-button__link {
		width: 100%;
	}
}
