
/* =========================================================
   Header – Name-Gradient-Styling (.gradient-text)
   ========================================================= */

.gradient-text {
	background: radial-gradient(circle, #f1e89a 0%, #90642c 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

@keyframes tada {
	0%   { transform: scale(1); }
	10%  { transform: scale(0.9) rotate(-3deg); }
	20%  { transform: scale(0.9) rotate(-3deg); }
	30%  { transform: scale(1.1) rotate(3deg); }
	40%  { transform: scale(1.1) rotate(-3deg); }
	50%  { transform: scale(1.1) rotate(3deg); }
	60%  { transform: scale(1.1) rotate(-3deg); }
	70%  { transform: scale(1.1) rotate(3deg); }
	80%  { transform: scale(1.1) rotate(-3deg); }
	90%  { transform: scale(1.1) rotate(3deg); }
	100% { transform: scale(1) rotate(0); }
}

/* =========================================================
   Page Cover – global title cover, front-page excluded
   ========================================================= */

body:not(.home) .inner-cover-img.wp-block-cover {
	min-height: clamp(180px, 22vw, 320px) !important;
	padding: clamp(42px, 7vw, 92px) 20px !important;
	border-radius: clamp(18px, 2.3vw, 32px) !important;
	isolation: isolate;
	overflow: hidden;
	background: #3d2b1f;
}

body:not(.home) .inner-cover-img .wp-block-cover__image-background {
	width: 100% !important;
	height: 100% !important;
	object-fit: cover !important;
	object-position: center center !important;
}

body:not(.home) .inner-cover-img::after {
	inset: 0;
	z-index: 1;
	background:
		linear-gradient(135deg, rgba(20, 14, 10, 0.68) 0%, rgba(94, 61, 30, 0.58) 48%, rgba(255, 148, 70, 0.34) 100%);
	opacity: 1;
	pointer-events: none;
}

body:not(.home) .inner-cover-img .wp-block-cover__background {
	display: none;
}

body:not(.home) .inner-cover-img .wp-block-cover__inner-container {
	position: relative;
	z-index: 2;
}

body:not(.home) .inner-cover-img :is(h1, h2, .wp-block-post-title, .wp-block-query-title) {
	max-width: min(100%, 920px);
	margin-right: auto;
	margin-left: auto;
	font-size: clamp(30px, 4vw, 48px) !important;
	font-weight: 700;
	letter-spacing: 0 !important;
	line-height: 1.08;
	text-wrap: balance;
	text-shadow: 0 3px 18px rgba(0, 0, 0, 0.28);
}

@media screen and (max-width: 767px) {
	body:not(.home) .inner-cover-img.wp-block-cover {
		min-height: 150px !important;
		padding-top: 34px !important;
		padding-bottom: 34px !important;
	}

	body:not(.home) .inner-cover-img :is(h1, h2, .wp-block-post-title, .wp-block-query-title) {
		font-size: clamp(26px, 8vw, 34px) !important;
		line-height: 1.12;
	}
}
