/* =============================================================
   EPH Promo Blocks — Frontend Styles
   ============================================================= */

/* ── 1. Promo Banner ─────────────────────────────────────── */
.eph-promo-banner {
	width: 100%;
	text-align: center;
	font-size: 14px;
	font-weight: 500;
	letter-spacing: 0.03em;
	line-height: 1.4;
}

.eph-promo-banner__inner {
	max-width: 1200px;
	margin: 0 auto;
	padding: 12px 20px;
}

.eph-promo-banner a {
	color: inherit;
	text-decoration: underline;
}

.eph-promo-banner strong {
	font-weight: 700;
}

/* ── 2. Info Bar ─────────────────────────────────────────── */
.eph-info-bar {
	width: 100%;
	border-top: 1px solid rgba(0,0,0,0.08);
	border-bottom: 1px solid rgba(0,0,0,0.08);
}

.eph-info-bar__inner {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 0px;
	display: flex;
	align-items: stretch;
	justify-content: space-around;
	flex-wrap: wrap;
}

.eph-info-bar__item {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 18px 24px;
	flex: 1 1 240px;
	text-decoration: none;
	color: inherit;
	border-right: 1px solid rgba(0,0,0,0.08);
	transition: background 0.2s ease;
}

.eph-info-bar__item:last-child {
	border-right: none;
}

.eph-info-bar__item[href]:hover {
	background: rgba(0,0,0,0.04);
}

.eph-info-bar__icon {
	flex-shrink: 0;
	width: 48px;
	height: 48px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.eph-info-bar__icon img {
	width: 48px;
	height: 48px;
	object-fit: contain;
}

.eph-info-bar__icon--placeholder svg {
	width: 42px;
	height: 42px;
	opacity: 0.45;
}

.eph-info-bar__text {
	display: flex;
	flex-direction: column;
	gap: 3px;
	align-items: flex-start;
    text-align: left;
}

.eph-info-bar__title {
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	line-height: 1.2;
	display: block;
	font-family: var(--e-global-typography-d3e369a-font-family), Sans-serif;
}

.eph-info-bar__desc {
	font-size: 12px;
	line-height: 1.5;
	opacity: 0.7;
	display: block;
}

/* ── 3. Hero Banner ──────────────────────────────────────── */
.eph-hero-banner {
	position: relative;
	width: 100%;
	display: flex;
	align-items: center;
	background-repeat: no-repeat;
	overflow: hidden;
}

.eph-hero-banner__overlay {
	position: absolute;
	inset: 0;
	z-index: 1;
	pointer-events: none;
}

.eph-hero-banner__content {
	position: relative;
	z-index: 2;
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 60px 40px;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

/* Alignment variants */
.eph-hero-banner__content--center {
	align-items: center;
	text-align: center;
}
.eph-hero-banner__content--left {
	align-items: flex-start;
	text-align: left;
}
.eph-hero-banner__content--right {
	align-items: flex-end;
	text-align: right;
}

.eph-hero-banner__eyebrow {
	margin: 0;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	opacity: 0.85;
	font-family: var(--e-global-typography-d3e369a-font-family), Sans-serif;
}

.eph-hero-banner__headline {
	margin: 6px 0 4px;
	font-size: clamp(28px, 4vw, 48px);
	font-weight: 700;
	line-height: 1.15;
	letter-spacing: -0.01em;
	color: #fff;
	font-family: var(--e-global-typography-d3e369a-font-family), Sans-serif;
}

.eph-hero-banner__subtext {
	margin: 0;
	font-size: 16px;
	line-height: 1.6;
	max-width: 520px;
	opacity: 0.88;
	font-family: var(--e-global-typography-d3e369a-font-family), Sans-serif;
}

.p.eph-hero-banner__subtext, .eph-hero-banner__footnote, span.eph-info-bar__desc{
	font-family: var(--e-global-typography-d3e369a-font-family), Sans-serif;
}

.eph-hero-banner__code {
	margin: 4px 0 0;
	font-size: 15px;
	font-family: var(--e-global-typography-d3e369a-font-family), Sans-serif;
}

.eph-hero-banner__code-label {
	opacity: 0.9;
	margin-right: 4px;
}

.eph-hero-banner__code-value {
	font-weight: 800;
	letter-spacing: 0.06em;
	font-size: 16px;
}

.eph-hero-banner__btn {
	display: inline-block;
	margin-top: 16px;
	padding: 14px 36px;
	background: rgba(255,255,255,0.95);
	color: #111 !important;
	text-decoration: none;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	border: 2px solid transparent;
	transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
	font-family: var(--e-global-typography-d3e369a-font-family), Sans-serif;
}

.eph-hero-banner__btn:hover {
	background: transparent;
	color: #fff !important;
	border-color: rgba(255,255,255,0.8);
}

.eph-hero-banner__footnote {
	margin: 8px 0 0;
	font-size: 12px;
	opacity: 0.6;
}

a.eph-info-bar__item {
    transition: all 0.3s;
}

a.eph-info-bar__item:hover {
    color: #be9756;
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 768px) {
	.eph-info-bar__inner {
		flex-direction: column;
	}
	.eph-info-bar__item {
		border-right: none;
		border-bottom: 1px solid rgba(0,0,0,0.08);
		flex: unset;
	}
	.eph-info-bar__item:last-child {
		border-bottom: none;
	}

	.eph-hero-banner__content {
		padding: 40px 20px;
		align-items: center;
		text-align: center;
	}
	.eph-hero-banner__content--left,
	.eph-hero-banner__content--right {
		align-items: center;
		text-align: center;
	}
}
