.wp-block-post-excerpt__more-text {
	margin-top: 20px;
}

/* Faint chessboard background image behind the "Why chess?" section. */
.why-chess-bg {
	position: absolute;
	inset: 0;
	z-index: 0;
	background-image: url('https://new.eikersjakklubb.no/wp-content/uploads/2026/07/why-chess-bg.png');
	background-size: cover;
	background-position: center;
	opacity: 0.6;
}

/* Faint chessboard background image behind the "Upcoming events" section. */
.upcoming-events-bg {
	position: absolute;
	inset: 0;
	z-index: 0;
	background-image: url('https://new.eikersjakklubb.no/wp-content/uploads/2026/07/upcoming-events-bg.png');
	background-size: cover;
	background-position: center;
	opacity: 0.4;
}

/* Chess piece silhouette row + checkered pattern divider, straddling the section's top edge:
   pieces poke up above the edge, the checkered board sits right at/inside the edge. */
.chess-pieces-divider {
	margin-top: calc(-1 * (var(--wp--preset--spacing--30) + 134px));
	margin-bottom: var(--wp--preset--spacing--30);
	position: relative;
}

.chess-pieces-divider__row {
	display: flex;
	justify-content: center;
	align-items: flex-end;
	gap: 0;
	max-width: 540px;
	margin: 0 auto;
}

.chess-piece-icon {
	width: auto;
	flex: 0 0 auto;
	color: var(--wp--preset--color--primary);
}

.chess-pieces-divider__pattern {
	margin-top: -2px;
	max-width: 740px;
	margin-left: auto;
	margin-right: auto;
}

.chess-pieces-divider__pattern svg {
	width: 100%;
	height: 100px;
	display: block;
}

/* Decorative accent line under the header, echoing the oak-leaf green in the logo. */
header.wp-block-group {
	position: relative;
}

header.wp-block-group::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 3px;
	background: linear-gradient(to right, #b0e87a 0%, #b0e87a 100%);
}

/* Soft acorn-gradient glow behind cards on hover (Tournament / Sponsor / Audience cards). */
.hero-card-glow {
	position: relative;
}

.hero-card-glow::before {
	content: "";
	position: absolute;
	inset: -2px;
	border-radius: inherit;
	background: linear-gradient(to right, #a57445 0%, #04491d 100%);
	opacity: 0;
	transition: opacity 0.25s ease;
	z-index: -1;
}

.hero-card-glow:hover::before {
	opacity: 0.18;
}

/* Footer headings: global heading color (dark brown) has poor contrast on the dark green footer background. */
footer.wp-block-group .wp-block-heading {
	color: #b0e87a;
}

/* H2 headings use the same brown as the main menu, distinct from the darker default heading color. */
h2.wp-block-heading {
	color: var(--wp--preset--color--acorn);
}

/* Equal-height cards inside Query Loop grids (Tournament Cards, Sponsor Cards). */
.wp-block-post-template.is-layout-grid {
	align-items: stretch;
}

.wp-block-post-template.is-layout-grid > li.wp-block-post {
	height: 100%;
}

.wp-block-post-template.is-layout-grid > li.wp-block-post > .hero-card-glow {
	height: 100%;
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
}

/* Tag / category pills on News listing and single post pages. */
.wp-block-post-terms {
	margin: 4px 0;
}

.wp-block-post-terms__separator {
	display: none;
}

.wp-block-post-terms a {
	display: inline-block;
	font-size: 13px;
	line-height: 1.4;
	font-weight: 600;
	text-decoration: none;
	padding: 4px 12px;
	border-radius: 999px;
	margin: 2px 4px 2px 0;
}

.wp-block-post-terms.taxonomy-category a {
	background-color: var(--wp--preset--color--primary);
	color: #ffffff;
}

.wp-block-post-terms.taxonomy-category a:hover {
	background-color: #183d2d;
}

.wp-block-post-terms.taxonomy-post_tag a {
	background-color: var(--wp--preset--color--background-alt);
	color: var(--wp--preset--color--text);
	border: 1px solid var(--wp--preset--color--line);
}

.wp-block-post-terms.taxonomy-post_tag a:hover {
	background-color: var(--wp--preset--color--line);
}

/* Protect H2s that are deliberately set to white on dark green backgrounds (CTA Banner, Footer). */
.has-primary-background-color h2.wp-block-heading,
footer.wp-block-group h2.wp-block-heading {
	color: #ffffff;
}
