.main-search-back {
	position: relative;
	min-height: calc(100vh - 76px);
	background-image: url('/assets/img/main-search-back.jpeg');
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.hero-overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.6);
}

.hero-content {
	position: relative;
	z-index: 1;
	min-height: inherit;
	display: flex;
	align-items: center;
	justify-content: center;
}

.search-panel {
	width: 100%;
	max-width: 840px;
	margin: 0 auto;
	padding: 1.4rem;
	border-radius: 1.15rem;
	background: linear-gradient(145deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.12));
	border: 1px solid rgba(255, 255, 255, 0.26);
	box-shadow: 0 18px 40px rgba(0, 0, 0, 0.24);
	backdrop-filter: blur(6px);
}

.search-panel .form-control {
	border: 1px solid #dbe4ea;
	box-shadow: none;
	min-height: 54px;
	background: rgba(255, 255, 255, 0.97);
}

.btn-search {
	background: #10b3ab;
	border: 1px solid #10b3ab;
	color: #ffffff;
	font-weight: 600;
	min-height: 54px;
}

.btn-search:hover,
.btn-search:focus {
	background: #0f9b94;
	border-color: #0f9b94;
	color: #ffffff;
}

.about-project {
	padding: 4rem 0;
	background: #f7fafc;
	border-bottom: 1px solid #e6edf3;
}

.about-kicker {
	font-size: 0.95rem;
	font-weight: 700;
	color: #0f9b94;
	letter-spacing: 0.3px;
	text-transform: uppercase;
}

.about-title {
	font-size: clamp(2rem, 3vw, 2.6rem);
	font-weight: 800;
	color: #0f172a;
}

.about-subtitle {
	font-size: 1.1rem;
	color: #334155;
}

.about-description {
	font-size: 1.05rem;
	line-height: 1.75;
	color: #334155;
}

.about-logo-image {
	width: 100%;
	height: auto;
	max-height: 110px;
	object-fit: contain;
	filter: drop-shadow(0 8px 18px rgba(15, 23, 42, 0.12));
	display: block;
	margin: 0 auto;
}

.latest-entries {
	padding: 4rem 0 4.5rem;
	background: #ffffff;
}

.entries-title {
	font-weight: 800;
	color: #0f172a;
}

.entry-card {
	background: linear-gradient(145deg, #ffffff, #f5fbff);
	border: 1px solid #dbe8f4;
	border-radius: 1rem;
	padding: 1.5rem;
	min-height: 220px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
}

.entry-card-title {
	font-size: 1.2rem;
	font-weight: 700;
	color: #0f172a;
	margin-bottom: 0.8rem;
}

.entry-card-desc {
	color: #334155;
	line-height: 1.65;
}

.latest-entries .carousel-control-prev,
.latest-entries .carousel-control-next {
	width: 48px;
	height: 48px;
	top: 50%;
	transform: translateY(-50%);
	background: rgba(16, 179, 171, 0.9);
	border-radius: 50%;
	opacity: 0.95;
}

.latest-entries .carousel-control-prev {
	left: -12px;
}

.latest-entries .carousel-control-next {
	right: -12px;
}

@media (max-width: 991.98px) {
	.main-search-back {
		min-height: 72vh;
	}

	.about-project,
	.latest-entries {
		padding: 3rem 0;
	}

	.entry-card {
		min-height: 240px;
	}
}

@media (max-width: 575.98px) {
	.search-panel {
		padding: 1rem;
	}

	.about-description {
		font-size: 1rem;
	}

	.about-logo-image {
		max-height: 80px;
	}

	.latest-entries .carousel-control-prev,
	.latest-entries .carousel-control-next {
		display: none;
	}
}
