/* TripuraPulse — theme block styles (token driven). */

.tp-block-lead {
	padding: clamp(1.5rem, 4vw, 3rem) clamp(1.25rem, 3vw, 2.5rem);
	border-radius: var(--tp-radius-l, 18px);
	background: var(--tp-surface, #fff);
	box-shadow: var(--tp-shadow-1, none);
	margin: var(--tp-space-6, 2rem) 0;
	position: relative;
	overflow: hidden;
}

.tp-block-lead::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 6px;
	background: var(--tp-highlight, #c46a4a);
}

.tp-block-lead__kicker {
	font-family: var(--tp-font-mono, monospace);
	font-size: var(--tp-micro, 0.72rem);
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--tp-highlight, #c46a4a);
	margin-bottom: var(--tp-space-3, 0.75rem);
}

.tp-block-lead__title {
	font-family: var(--tp-font-display, Georgia, serif);
	font-size: clamp(1.8rem, 4.5vw, 3rem);
	line-height: 1.08;
	margin-bottom: var(--tp-space-3, 0.75rem);
}

.tp-block-lead__sub {
	color: var(--tp-text-soft, #4d5c56);
	max-width: 56ch;
}

/* Broken-layout pullquote (Editorial-Noir vibe). */
.wp-block-pullquote.is-style-tp-broken {
	border-top: 1px solid var(--tp-highlight, #c46a4a);
	border-bottom: 1px solid var(--tp-highlight, #c46a4a);
	border-left: 0;
	border-right: 0;
	font-family: var(--tp-font-display, Georgia, serif);
	font-size: clamp(1.6rem, 4vw, 2.8rem);
	font-weight: 700;
	text-transform: uppercase;
	line-height: 1.1;
	letter-spacing: 0.01em;
	padding: var(--tp-space-6, 2rem) 0;
	margin: var(--tp-space-7, 3rem) -8vw;
	width: calc(100% + 16vw);
}

.wp-block-pullquote.is-style-tp-broken blockquote {
	margin: 0;
	padding: 0;
	border: 0;
}

/* River-island quote (Tripura-River vibe). */
.wp-block-quote.is-style-tp-island {
	border: 0;
	border-radius: 50% 50% 48% 52% / 58% 42% 58% 42%;
	background: color-mix(in srgb, var(--tp-accent, #0e3b2e) 8%, var(--tp-surface, #fff));
	padding: var(--tp-space-5, 1.5rem);
	text-align: center;
	font-family: var(--tp-font-accent, "Dancing Script", cursive);
	font-size: clamp(1.3rem, 3vw, 1.7rem);
}

/* Pulse button (Pulse-Cards vibe). */
.wp-block-button.is-style-tp-pulse .wp-block-button__link {
	border-radius: var(--tp-radius-pill, 999px);
	box-shadow: 0 6px 20px color-mix(in srgb, var(--tp-accent, #0e3b2e) 40%, transparent);
	transition: transform var(--tp-dur, 240ms) var(--tp-ease-bounce, ease), box-shadow var(--tp-dur, 240ms) var(--tp-ease, ease);
}

.wp-block-button.is-style-tp-pulse .wp-block-button__link:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 28px color-mix(in srgb, var(--tp-accent, #0e3b2e) 50%, transparent);
}

@media (max-width: 700px) {
	.wp-block-pullquote.is-style-tp-broken {
		width: 100%;
		margin-inline: 0;
	}
}
