/* ==========================================================================
   Banner Box Widget Styling
   ========================================================================== */
.banner-box-section {
	width: 100%;
	background-color: #111111;
	position: relative;
	overflow: hidden;
}

.banner-box-section__header {
	text-align: center;
	margin-bottom: 2rem;
	padding: 0 1rem;
}

.banner-box-section__eyebrow {
	display: block;
	color: var(--color-gold, #c5a059);
	font-size: 0.85rem;
	font-weight: 700;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	margin-bottom: 0.75rem;
}

.banner-box-section__title {
	color: #ffffff;
	font-size: 2.25rem;
	font-weight: 800;
	line-height: 1.2;
	margin-bottom: 0.75rem;
	letter-spacing: -0.02em;
}

.banner-box-section__desc {
	color: #a1a1aa;
	font-size: 1.1rem;
	line-height: 1.5;
	max-width: 650px;
	margin: 0 auto;
}

.banner-box-section__inner-container {
	max-width: 1000px;
	width: 100%;
	height: 380px;
	margin: 0 auto;
	background-color: #1f1f23;
	border-radius: 16px;
	padding: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
	border: 1px solid rgba(255, 255, 255, 0.03);
	position: relative;
	overflow: hidden;
}

.banner-box-section__img {
	width: 100%;
	height: 100%;
	max-width: 100%;
	max-height: 100%;
	display: block;
	object-fit: cover;
}

.banner-box-section__placeholder {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 250px;
}

.banner-box-section__placeholder svg {
	width: 80px;
	height: 80px;
	color: rgba(255, 255, 255, 0.15);
	transition: color 0.3s ease;
}

.banner-box-section:hover .banner-box-section__placeholder svg {
	color: var(--color-gold, #c5a059);
}

/* ==========================================================================
   Responsive Rules
   ========================================================================== */
@media screen and (max-width: 768px) {
	.banner-box-section__title {
		font-size: 1.85rem;
	}
	.banner-box-section__desc {
		font-size: 1rem;
	}
	.banner-box-section__inner-container {
		height: 280px;
		padding: 2rem 1rem;
		border-radius: 12px;
	}
	.banner-box-section__placeholder {
		height: 180px;
	}
	.banner-box-section__placeholder svg {
		width: 60px;
		height: 60px;
	}
}

@media screen and (max-width: 480px) {
	.banner-box-section__title {
		font-size: 1.5rem;
	}
	.banner-box-section__inner-container {
		height: 200px;
		padding: 1.5rem 0.5rem;
	}
}
