/* Hakutulossivun pääsisältö */
body.search main.site-main {
	max-width: 1200px;
	margin: 50px auto;
	padding: 0 20px;
}

/* Sivun otsikko */
body.search .page-header {
	margin-bottom: 60px;
}

body.search .page-header h1 {
	font-size: 48px;
	text-align: center;
	margin: 0;
}

/* Kaksipalstainen asettelu: sisältö + sivupalkki */
.search-results-wrapper {
	display: flex;
	gap: 40px;
	align-items: flex-start;
}

.search-results-wrapper .page-content {
	flex: 1 1 0;
	min-width: 0;
}

.search-results-sidebar {
	flex: 0 0 360px;
}

/* Sivupalkin yläreuna tasan hakukorttien kanssa */
.search-results-sidebar > *:first-child {
	margin-top: 0;
}

/* Ulompi kehys (Viimeisimmät artikkelit, Kuukauden luetuimmat) */
.search-sidebar-widget {
	margin-bottom: 30px;
	background: #f5f7fb;
	border: 1px solid #d1d1d1;
	border-radius: 10px;
	padding: 12px;
}

/* Sisempi paneeli - luo kaksitasoisen reunaefektin ulomman kehyksen kanssa */
.search-sidebar-inner-panel {
	background: #FFFFFF;
	border: 1px solid #d8dce6;
	border-radius: 8px;
	padding: 16px 20px;
}

/* Numeroitu lista (Viimeisimmät artikkelit, Kuukauden luetuimmat) */
.numbered-post {
	display: flex;
	align-items: flex-start;
	gap: 14px;
	padding: 12px 0;
	border-bottom: 1px solid #eef0f3;
}

.numbered-post:last-child {
	border-bottom: none;
	padding-bottom: 0;
}

.numbered-post:first-child {
	padding-top: 0;
}

.numbered-post-number {
	flex-shrink: 0;
	font-size: 1.3em;
	font-weight: 700;
	color: #c9ccd1;
	line-height: 1.3;
	min-width: 18px;
}

.numbered-post a {
	color: #101a3b;
	text-decoration: none;
	font-size: 0.95em;
	line-height: 1.4;
}

.numbered-post a:hover {
	color: #2b4ea1;
}

/* Hakutulokset sivun keskustelu palkki */
.search-sidebar-plain-widget {
	margin-bottom: 30px;
	margin-top: 0;
	background: #FFFFFF;
	border: 1px solid #FFFFFF;
	border-radius: 8px;
	padding: 0px;
}

/* Nollataan widgetin oman otsikon ylämarginaali */
.search-sidebar-plain-widget h1,
.search-sidebar-plain-widget h2,
.search-sidebar-plain-widget h3,
.search-sidebar-plain-widget h4,
.search-sidebar-plain-widget h5,
.search-sidebar-plain-widget .widget-title,
.search-sidebar-plain-widget .widgettitle {
	margin-top: 0;
}

/* Ohitetaan widgetin oma padding/keskitys !important-säännöillä */
.search-sidebar-plain-widget .forum-main-title {
	padding-top: 9px !important;
	padding-bottom: 9px !important;
	text-align: center !important;
}

.search-sidebar-plain-widget .forum-outer-container {
	padding-top: 0 !important;
	margin-top: 0 !important;
}

.search-sidebar-title {
	font-size: 1.1em;
	font-weight: 700;
	margin: 0 0 12px;
	padding-bottom: 12px;
	border-bottom: 1px solid #eef0f3;
	color: #101a3b;
	text-align: center;
}

/* Hakutuloskortti */
.search-card {
	display: flex;
	gap: 30px;
	padding: 30px;
	margin-bottom: 25px;
	background: #f5f7fb;
	border: 2px solid #d8dce6;
	border-radius: 8px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, .04);
	transition: all .25s ease;
}

/* Hover-efekti */
.search-card:hover {
	border-color: #101a3b;
	box-shadow: 0 8px 20px rgba(16, 26, 59, .18);
	transform: translateY(-3px);
}

.search-card:hover .search-content h2 a {
	color: #101a3b;
}

/* KUVA */
.search-image {
	width: 320px;
	flex-shrink: 0;
}

.search-image a {
	display: block;
	overflow: hidden;
	border-radius: 8px;
}

.search-image img {
	display: block;
	width: 100%;
	height: 210px;
	object-fit: cover;
	transition: transform .35s ease;
}

.search-card:hover .search-image img {
	transform: scale(1.05);
}

/* SISÄLTÖ */
.search-content {
	flex: 1;
	display: flex;
	flex-direction: column;
}

.search-content h2 {
	margin: 0 0 12px;
	font-size: 34px;
	line-height: 1.25;
}

.search-content h2 a {
	color: #101a3b;
	text-decoration: none;
	transition: color .2s ease;
}

.search-content h2 a:hover {
	color: #2b4ea1;
}

/* Päivämäärä */
.search-meta {
	color: #7a7a7a;
	font-size: 14px;
	margin-bottom: 18px;
}

/* Tiivistelmä */
.search-excerpt {
	color: #333;
	font-size: 17px;
	line-height: 1.8;
	margin-bottom: 20px;
}

/* Lue lisää */
.read-more {
	display: inline-block;
	margin-top: auto;
	align-self: flex-start;
	padding: 10px 18px;
	background: #101a3b;
	color: #fff;
	text-decoration: none;
	font-weight: 600;
	border-radius: 6px;
	transition: all .2s ease;
}

.read-more:hover {
	background: #24386f;
	color: #fff;
}

/* Hakutulosten määrä */
.search-results-count {
	text-align: center;
	margin-top: 14px;
	color: #6b7280;
	font-size: 16px;
}

.search-results-count strong {
	color: #101a3b;
	font-weight: 700;
}

/* Ei tuloksia -sivu */
.no-results {
	text-align: center;
	padding: 60px 30px;
	background: #f5f7fb;
	border: 2px solid #d8dce6;
	border-radius: 12px;
}

.no-results h2 {
	color: #101a3b;
	margin-bottom: 12px;
}

.no-results p {
	color: #6b7280;
	margin-bottom: 25px;
}

.suggested-posts {
	text-align: left;
	max-width: 700px;
	margin: 0 auto;
}

.suggested-posts h3 {
	color: #101a3b;
	margin-bottom: 15px;
}

.suggested-post {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 12px 0;
	border-bottom: 1px solid #e5e7eb;
}

.suggested-post a {
	color: #101a3b;
	text-decoration: none;
}

.suggested-post a:hover {
	color: #2b4ea1;
}

.suggested-post span {
	color: #6b7280;
	font-size: 14px;
}

/* Sivutus */
.pagination {
	display: flex;
	justify-content: space-between;
	margin: 50px 0;
}

/* Numeroitu sivutus */
body.search .numbers-pagination {
	display: flex !important;
	justify-content: center !important;
	align-items: center !important;
	flex-wrap: wrap !important;
	gap: 4px !important;
	margin: 45px 0 !important;
}

body.search .numbers-pagination .page-numbers {
	display: inline-flex !important;
	justify-content: center !important;
	align-items: center !important;
	min-width: 34px !important;
	height: 34px !important;
	padding: 0 8px !important;
	background: #f5f7fb !important;
	border: 2px solid #d8dce6 !important;
	border-radius: 8px !important;
	color: #101a3b !important;
	font-size: 14px !important;
	font-weight: 600 !important;
	line-height: 1 !important;
	text-decoration: none !important;
	transition: all .2s ease !important;
}

body.search .numbers-pagination .page-numbers:hover {
	border-color: #101a3b !important;
	background: #eef2f8 !important;
	transform: translateY(-2px);
}

body.search .numbers-pagination .page-numbers.current {
	background: #101a3b !important;
	border-color: #101a3b !important;
	color: #fff !important;
}

body.search .numbers-pagination .page-numbers.dots {
	background: transparent !important;
	border: none !important;
	min-width: auto !important;
	padding: 0 6px !important;
}

/* Hakusanan korostus */
.search-highlight {
	background: #dbe8ff;
	color: #101a3b;
	padding: 0 2px;
	border-radius: 3px;
	font-weight: 700;
}

/* Mobiili */
@media (max-width: 900px) {
	.search-results-wrapper {
		flex-direction: column;
	}

	.search-results-sidebar {
		flex: 1 1 100%;
		width: 100%;
	}
}

@media (max-width: 768px) {
	.search-card {
		display: block;
	}

	.search-image {
		width: 100%;
		margin-bottom: 20px;
	}

	.search-image img {
		height: auto;
	}

	body.search .page-header h1 {
		font-size: 34px;
	}

	.search-content h2 {
		font-size: 26px;
	}

	.read-more {
		width: 100%;
		text-align: center;
		box-sizing: border-box;
	}
}

/* Kategoria-badge (iso nostoartikkeli, etusivu) */
.post-category-badge {
	display: inline-block;
	width: fit-content;
	padding: 4px 10px;
	border-radius: 20px;
	background: #2563eb;
	color: #fff;
	font-size: 12px;
	font-weight: 600;
	line-height: 1;
}

.elementor-widget-wordpress-popular-posts-ewidget,
.wpp-shortcode,
.popular-posts-sr {
	width: 100% !important;
	max-width: 100% !important;
}