/* ebykr home hero — Option B. Curated marquee + 3 tiles above the blog grid. */
/* Both mirror the Blocksy grid cards: pills, bold title, image, date. */

.ebykr-hero {
	margin: 0 0 var(--theme-content-spacing, 1.5em);
}

/* ---- Feature marquee ---- */
.ebykr-hero__feature {
	position: relative;
	min-height: clamp(220px, 42vh, 420px);
	margin-bottom: var(--theme-content-spacing, 1.5em);
	overflow: hidden;
	background-color: var(--theme-palette-color-7, #2b2b2b);
	background-size: cover;
	background-position: center;
}

.ebykr-hero__feature::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 1;
	pointer-events: none;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0.36) 48%, rgba(0, 0, 0, 0) 78%);
}

/* Full-cover click target so the whole marquee links to the article, */
/* while the pills and title remain individually clickable on top. */
.ebykr-hero__feature-cover {
	position: absolute;
	inset: 0;
	z-index: 2;
}

.ebykr-hero__feature-body {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 3;
	padding: clamp(16px, 3vw, 36px);
	pointer-events: none;
}

.ebykr-hero__feature-body a {
	pointer-events: auto;
}

.ebykr-hero__feature-body .entry-meta {
	margin: 0 0 10px;
	text-transform: uppercase;
}

.ebykr-hero__feature-title {
	display: block;
	margin: 0 0 8px;
	font-size: clamp(22px, 3.4vw, 38px);
	line-height: 1.16;
	font-weight: 700;
	color: #fff;
	text-decoration: none;
}

.ebykr-hero__feature-title:hover {
	text-decoration: underline;
}

.ebykr-hero__excerpt {
	display: block;
	max-width: 62ch;
	font-size: clamp(14px, 1.6vw, 17px);
	line-height: 1.5;
	color: rgba(255, 255, 255, 0.92);
}

/* ---- Tiles ---- */
.ebykr-hero__tiles {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: var(--theme-content-spacing, 1.5em);
}

.ebykr-hero__tile {
	display: flex;
	flex-direction: column;
}

.ebykr-hero__tile .entry-meta {
	margin: 0;
	text-transform: uppercase;
}

.ebykr-hero__tile > .entry-meta:first-child {
	margin-bottom: 8px;
}

.ebykr-hero__tile-title {
	display: block;
	margin: 0 0 10px;
	font-size: 17px;
	line-height: 1.28;
	font-weight: 700;
	color: var(--theme-text-color, #232323);
	text-decoration: none;
}

.ebykr-hero__tile-title:hover {
	text-decoration: underline;
}

.ebykr-hero__tile-img {
	display: block;
	height: clamp(120px, 14vw, 168px);
	background-color: var(--theme-palette-color-6, #e7e3dc);
	background-size: cover;
	background-position: center;
}

.ebykr-hero__tile > .entry-meta:last-child {
	margin-top: 8px;
}

.ebykr-hero__tile .meta-date time {
	font-size: 12px;
	color: var(--theme-meta-color, #6d6d6d);
}

@media (max-width: 600px) {
	.ebykr-hero__tiles {
		grid-template-columns: 1fr;
	}
}
