/* ==========================================================================
   Strainatate Press — News Layout (v2 — design ziar premium)
   ========================================================================== */

:root {
	--sp-primary: #c1121f;
	--sp-primary-dark: #8a0c16;
	--sp-accent: #003366;
	--sp-bg: #eef1f4;
	--sp-card-bg: #ffffff;
	--sp-text: #14171c;
	--sp-muted: #6b7280;
	--sp-border: #e3e6ea;
	--sp-radius: 4px;
	--sp-font: "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

/* ---------- Generale ---------- */
body {
	background: var(--sp-bg);
	font-family: var(--sp-font);
	color: var(--sp-text);
}
.entry-content p { line-height: 1.75; }
a { color: var(--sp-accent); }

/* ==========================================================================
   FLAG BADGE
   ========================================================================== */
.flag-badge {
	font-size: 0.85em;
	margin-right: 4px;
	vertical-align: baseline;
	display: inline-block;
	line-height: 1;
	filter: drop-shadow(0 1px 1px rgba(0,0,0,0.15));
}

/* Badge de tara (categoria) — vechi, pe lista GP */
.sp-cat-badge {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	background: var(--sp-primary);
	color: #fff;
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	padding: 3px 9px;
	border-radius: 3px;
	text-decoration: none;
	line-height: 1.2;
	margin-bottom: 6px;
}
.sp-cat-badge:hover { background: var(--sp-primary-dark); color: #fff; }
.sp-cat-badge .flag-badge { font-size: 13px; }

/* ==========================================================================
   GRID ARTICOLE — Arhiva / Categorie / Cautare (loop GeneratePress)
   ========================================================================== */
.generate-columns-container {
	display: grid !important;
	grid-template-columns: repeat(3, 1fr);
	gap: 22px;
	align-items: stretch;
}
@media (max-width: 1024px) { .generate-columns-container { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  { .generate-columns-container { grid-template-columns: 1fr; } }

.generate-columns-container article,
.inside-article {
	background: var(--sp-card-bg);
	border: 1px solid var(--sp-border);
	border-radius: var(--sp-radius);
	box-shadow: 0 1px 3px rgba(0,0,0,0.04);
	transition: box-shadow 0.18s ease, transform 0.18s ease;
	display: flex;
	flex-direction: column;
	height: 100%;
}
.generate-columns-container article:hover,
.inside-article:hover {
	box-shadow: 0 6px 18px rgba(0,0,0,0.10);
	transform: translateY(-2px);
}
.post-image img,
.entry-summary img {
	width: 100%;
	height: 190px;
	object-fit: cover;
	display: block;
}

/* ==========================================================================
   HOMEPAGE — LAYOUT ZIAR PREMIUM
   ========================================================================== */

/* ---------- Ticker ---------- */
.sp-ticker-home {
	display: flex;
	align-items: center;
	background: var(--sp-primary);
	color: #fff;
	margin: 0 0 12px;
	border-radius: var(--sp-radius);
	overflow: hidden;
	box-shadow: 0 2px 8px rgba(193,18,31,0.25);
}
.sp-ticker-home .sp-ticker-label {
	flex: 0 0 auto;
	background: var(--sp-primary-dark);
	color: #fff;
	font-weight: 800;
	font-size: 13px;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	padding: 9px 14px;
	white-space: nowrap;
}
.sp-ticker-home .sp-ticker-track {
	flex: 1 1 auto;
	overflow: hidden;
	white-space: nowrap;
	padding: 9px 0;
}
.sp-ticker-home .sp-ticker-track a {
	color: #fff;
	font-size: 13.5px;
	font-weight: 500;
	margin-right: 26px;
	text-decoration: none;
}
.sp-ticker-home .sp-ticker-track a:hover { text-decoration: underline; }

/* ---------- Bara de tari pe home ---------- */
.sp-home-countries {
	margin-bottom: 18px;
	background: #fff;
	border: 1px solid var(--sp-border);
	border-radius: var(--sp-radius);
	padding: 6px 8px;
}
.sp-home-countries .sp-countries-bar ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 2px;
}
.sp-home-countries .sp-countries-bar li a {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	padding: 6px 10px;
	font-size: 13px;
	font-weight: 600;
	color: var(--sp-text);
	text-decoration: none;
	border-radius: 3px;
	transition: background 0.15s, color 0.15s;
}
.sp-home-countries .sp-countries-bar li a:hover {
	background: var(--sp-primary);
	color: #fff;
}

/* ---------- Layout principal 2 coloane ---------- */
.sp-home-layout {
	display: grid;
	grid-template-columns: 1fr 320px;
	gap: 24px;
	align-items: start;
}
/* (Breakpoint-ul pentru stivuire pe mobil/tableta e in sectiunea RESPONSIVE COMPLET) */
.sp-home-main { min-width: 0; }

/* ---------- HERO ---------- */
.sp-hero {
	display: grid;
	grid-template-columns: 1.7fr 1fr;
	gap: 16px;
	margin-bottom: 26px;
}
/* (Breakpoint-ul pentru hero pe 1 coloana e in sectiunea RESPONSIVE COMPLET) */
.sp-hero-side { display: flex; }
.sp-hero-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 14px;
	width: 100%;
}

/* ---------- CARDURI (varianta premium) ---------- */
.sp-card {
	background: var(--sp-card-bg);
	border: 1px solid var(--sp-border);
	border-radius: var(--sp-radius);
	overflow: hidden;
	display: flex;
	flex-direction: column;
	transition: box-shadow 0.18s ease, transform 0.18s ease;
	height: 100%;
}
.sp-card:hover { box-shadow: 0 8px 22px rgba(0,0,0,0.12); transform: translateY(-2px); }

.sp-card-imgwrap {
	display: block;
	position: relative;
	overflow: hidden;
	background: #eef1f4;
}
.sp-card-imgwrap img { width: 100%; height: 200px; object-fit: cover; display: block; transition: transform 0.3s; }
.sp-card:hover .sp-card-imgwrap img { transform: scale(1.04); }

.sp-card-body { padding: 12px 14px 14px; display: flex; flex-direction: column; gap: 6px; }
.sp-card-cat {
	align-self: flex-start;
	display: inline-flex;
	align-items: center;
	gap: 4px;
	color: #fff;
	font-size: 10.5px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	padding: 3px 8px;
	border-radius: 3px;
	text-decoration: none;
}
.sp-card-cat:hover { filter: brightness(1.15); color: #fff; }
.sp-card-cat .flag-badge { font-size: 12px; }
.sp-card-title { font-size: 16px; line-height: 1.3; margin: 2px 0; font-weight: 700; }
.sp-card-title a { color: var(--sp-text); text-decoration: none; }
.sp-card-title a:hover { color: var(--sp-primary); }
.sp-card-meta { font-size: 12px; color: var(--sp-muted); }
.sp-card-excerpt { font-size: 14px; color: #445; line-height: 1.5; margin: 0; }

/* Card HERO (mare cu overlay) */
.sp-card-hero { position: relative; height: 100%; }
.sp-card-hero .sp-card-imgwrap img { height: 420px; }
.sp-card-hero .sp-card-imgwrap::after {
	content: "";
	position: absolute; inset: 0;
	background: linear-gradient(to top, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.25) 45%, rgba(0,0,0,0) 70%);
}
.sp-card-hero .sp-card-overlay { display: none; }
.sp-card-hero-body {
	position: absolute;
	left: 0; right: 0; bottom: 0;
	padding: 20px 22px 22px;
	background: none;
}
.sp-card-title-hero { font-size: 26px; line-height: 1.18; }
.sp-card-title-hero a { color: #fff; text-shadow: 0 1px 3px rgba(0,0,0,0.5); }
.sp-card-title-hero a:hover { color: #ffd; }
.sp-card-hero .sp-card-excerpt { color: #e8eaed; margin-top: 4px; }
.sp-card-hero .sp-card-meta { color: #cdd2d8; }

/* Card LG */
.sp-card-lg .sp-card-imgwrap img { height: 230px; }
.sp-card-lg .sp-card-title { font-size: 19px; }

/* Card SM (mini, in lista) */
.sp-card-sm {
	list-style: none;
	display: flex;
	gap: 10px;
	align-items: flex-start;
	background: var(--sp-card-bg);
	border: 1px solid var(--sp-border);
	border-radius: var(--sp-radius);
	padding: 10px;
	transition: box-shadow 0.18s;
}
.sp-card-sm:hover { box-shadow: 0 4px 12px rgba(0,0,0,0.10); }
.sp-card-sm-img { flex: 0 0 auto; display: block; }
.sp-card-sm-img img { width: 110px; height: 80px; object-fit: cover; border-radius: 3px; display: block; }
.sp-card-sm-body { display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.sp-card-sm-cat {
	font-size: 10px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	text-decoration: none;
}
.sp-card-sm-cat:hover { text-decoration: underline; }
.sp-card-sm-title {
	font-size: 14px;
	font-weight: 600;
	line-height: 1.3;
	color: var(--sp-text);
	text-decoration: none;
}
.sp-card-sm-title:hover { color: var(--sp-primary); }

/* ==========================================================================
   SECTIUNI
   ========================================================================== */
.sp-latest, .sp-country-section { margin-bottom: 30px; }

.sp-section-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	border-bottom: 3px solid #b00000;
	margin-bottom: 14px;
	gap: 10px;
}
.sp-section-title-cn {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	color: #fff;
	font-size: 17px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.03em;
	padding: 7px 16px 7px 14px;
	margin: 0;
	position: relative;
	top: 3px;
}
.sp-section-more {
	font-size: 12.5px;
	font-weight: 700;
	color: var(--sp-primary);
	text-decoration: none;
	text-transform: uppercase;
	letter-spacing: 0.03em;
}
.sp-section-more:hover { text-decoration: underline; }

.sp-latest-grid, .sp-country-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 16px;
}
/* (Breakpoints pentru griduri sunt definite in sectiunea RESPONSIVE COMPLET) */

/* ==========================================================================
   SIDEBAR HOMEPAGE
   ========================================================================== */
.sp-home-sidebar { min-width: 0; }
.sp-widget {
	background: #fff;
	border: 1px solid var(--sp-border);
	border-radius: var(--sp-radius);
	padding: 14px 16px 16px;
	margin-bottom: 18px;
}
.sp-widget-title {
	font-size: 15px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.03em;
	color: var(--sp-text);
	border-bottom: 2px solid var(--sp-primary);
	padding-bottom: 8px;
	margin: 0 0 12px;
}

/* Widget: tari */
.sp-widget-countries .sp-country-list { list-style: none; margin: 0; padding: 0; }
.sp-widget-countries .sp-country-list li {
	display: flex;
	align-items: center;
	gap: 6px;
	padding: 7px 0;
	border-bottom: 1px dashed var(--sp-border);
	font-size: 14px;
}
.sp-widget-countries .sp-country-list li:last-child { border-bottom: none; }
.sp-widget-countries .sp-country-list a { color: var(--sp-text); text-decoration: none; font-weight: 600; flex: 1; }
.sp-widget-countries .sp-country-list a:hover { color: var(--sp-primary); }
.sp-widget-countries .sp-count {
	font-size: 12px;
	font-weight: 700;
	color: #fff;
	background: var(--sp-primary);
	border-radius: 10px;
	padding: 1px 8px;
}

/* Widget: recente */
.sp-widget-recent .sp-recent-posts { list-style: none; margin: 0; padding: 0; }
.sp-widget-recent .sp-recent-posts li {
	display: flex;
	gap: 10px;
	align-items: flex-start;
	padding: 9px 0;
	border-bottom: 1px solid var(--sp-border);
}
.sp-widget-recent .sp-recent-posts li:last-child { border-bottom: none; }
.sp-widget-recent .sp-recent-posts img {
	width: 64px; height: 48px; object-fit: cover; border-radius: 3px; display: block;
}
.sp-rp-title a { font-size: 13.5px; font-weight: 600; color: var(--sp-text); text-decoration: none; line-height: 1.3; }
.sp-rp-title a:hover { color: var(--sp-primary); }
.sp-rp-meta { font-size: 11px; color: var(--sp-muted); margin-top: 2px; }

/* Widget: cautare */
.sp-widget-search .sp-search-form { display: flex; }
.sp-widget-search input[type="search"] {
	flex: 1; border: 1px solid var(--sp-border); border-right: none;
	padding: 9px 11px; font-size: 14px; border-radius: 3px 0 0 3px; outline: none;
}
.sp-widget-search button {
	background: var(--sp-primary); color: #fff; border: none;
	padding: 9px 16px; font-weight: 700; cursor: pointer; border-radius: 0 3px 3px 0;
	font-size: 13px;
}
.sp-widget-search button:hover { background: var(--sp-primary-dark); }

/* ==========================================================================
   TICKER — varianta clasica (pt header pe celelalte pagini)
   ========================================================================== */
.sp-ticker {
	display: flex;
	align-items: center;
	background: var(--sp-primary);
	color: #fff;
	margin: 0 0 12px;
	border-radius: var(--sp-radius);
	overflow: hidden;
}
.sp-ticker .sp-ticker-label {
	flex: 0 0 auto;
	background: var(--sp-primary-dark);
	color: #fff;
	font-weight: 800;
	font-size: 12px;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	padding: 8px 12px;
}
.sp-ticker .sp-ticker-track {
	flex: 1; overflow: hidden; white-space: nowrap; padding: 8px 0;
}
.sp-ticker .sp-ticker-track a {
	color: #fff; font-size: 13px; font-weight: 500; margin-right: 24px; text-decoration: none;
}
.sp-ticker .sp-ticker-track a:hover { text-decoration: underline; }

/* Animatie scroll ticker */
@keyframes sp-ticker-scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.sp-ticker-home .sp-ticker-track { animation: sp-ticker-scroll 38s linear infinite; }
.sp-ticker-home:hover .sp-ticker-track { animation-play-state: paused; }

/* ==========================================================================
   SINGLE — articol
   ========================================================================== */
.single .inside-article { max-width: 100%; }
.single .entry-title { font-size: 30px; line-height: 1.2; }
/* (Breakpoints pentru carduri/hero sunt definite in sectiunea RESPONSIVE COMPLET de mai jos) */

/* ==========================================================================
   LARGIRE CONTAINER — aspect ziar (1440px)
   GeneratePress default = 1200px; il fortam la 1440px pentru a arata ca un
   adevarat site de stiri, cu mai multe coloane vizibile simultan.
   Doar pe ecrane mari; pe mobil/tableta containerul e 100% (fluid).
   ========================================================================== */
@media ( min-width: 1100px ) {
	.site-header .inside-header,
	.grid-container,
	.site-footer .footer-widgets-container,
	.site-info.grid-container {
		max-width: 1440px;
	}
}
/* Containerul de continut de pe home = latime intreaga (fara reducere GP) */
.sp-ticker-home,
.sp-home-countries {
	max-width: 1440px;
	margin-left: auto;
	margin-right: auto;
	padding-left: 20px;
	padding-right: 20px;
}

/* Content layout fara sidebar GP pe home */
.home .site-content,
.home #primary,
.blog .site-content,
.blog #primary {
	max-width: 100%;
}

/* ==========================================================================
   ASCUNDERE SIDEBAR GP pe HOME (folosim sidebar custom sp-home-sidebar)
   ========================================================================== */
body.home #right-sidebar,
body.home .widget-area,
body.home #secondary,
body.blog #right-sidebar,
body.blog .widget-area,
body.blog #secondary {
	display: none !important;
}
body.home #primary,
body.blog #primary {
	width: 100% !important;
	float: none !important;
}

/* ==========================================================================
   RESPONSIVE COMPLET — TELEFON (prioritate maxima)
   Strategie mobile-first: totul stivuit si lizibil pe telefon, apoi se
   largeste progresiv pe tableta (768px) si desktop (1100px+).
   ========================================================================== */

/* --- MOBIL (< 768px): totul pe 1 coloana, lizibil, tap-friendly --- */
@media (max-width: 767px) {
	/* Ticker */
	.sp-ticker-home { font-size: 13px; }
	.sp-ticker-home .sp-ticker-label { font-size: 11px; padding: 7px 9px; letter-spacing: 0.03em; }

	/* Bara de tari: scroll orizontal pe mobil */
	.sp-home-countries .sp-countries-bar {
		flex-wrap: nowrap;
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
		padding-bottom: 8px;
		scrollbar-width: thin;
	}
	.sp-home-countries .sp-countries-bar li { flex: 0 0 auto; }

	/* HERO: totul stivuit */
	.sp-hero { grid-template-columns: 1fr; gap: 14px; margin-bottom: 18px; }
	.sp-card-hero .sp-card-imgwrap img { height: 240px; }
	.sp-card-title-hero { font-size: 20px; line-height: 1.2; }
	.sp-card-hero-body { padding: 14px 14px 16px; }
	.sp-card-hero .sp-card-excerpt { font-size: 13.5px; -webkit-line-clamp: 2; }

	/* Mini-cards in lista hero */
	.sp-card-sm-img img { width: 96px; height: 72px; }
	.sp-card-sm-title { font-size: 13.5px; }
	.sp-card-sm-cat { font-size: 9.5px; }

	/* Griduri: 1 coloana pe mobil */
	.sp-latest-grid, .sp-country-grid { grid-template-columns: 1fr; gap: 14px; }

	/* Carduri standard */
	.sp-card-imgwrap img { height: 190px; }
	.sp-card-title { font-size: 16px; }
	.sp-card-body { padding: 10px 12px 12px; }

	/* Headere sectiuni */
	.sp-section-title-cn { font-size: 14.5px; padding: 6px 12px 6px 11px; }
	.sp-section-more { font-size: 11px; }

	/* Layout principal: stivuit, sidebar la final */
	.sp-home-layout { grid-template-columns: 1fr; gap: 24px; }

	/* Sidebar widgets */
	.sp-widget { padding: 12px 13px 14px; }

	/* Tapa mai mari pentru butoane/linkuri pe telefon */
	.sp-countries-bar li a,
	.sp-section-more,
	.sp-card-cat { min-height: 40px; }
}

/* --- TABLETA MICA (< 480px): phone landscape / phablet --- */
@media (max-width: 480px) {
	.sp-card-hero .sp-card-imgwrap img { height: 200px; }
	.sp-card-title-hero { font-size: 18px; }
	.sp-card-imgwrap img { height: 170px; }
	.sp-card-title { font-size: 15px; }
	.sp-card-sm-img img { width: 84px; height: 64px; }
	.sp-card-sm-title { font-size: 13px; }
}

/* --- TABLETA (768px - 1099px): 2 coloane --- */
@media (min-width: 768px) and (max-width: 1099px) {
	.sp-latest-grid { grid-template-columns: repeat(2, 1fr); }
	.sp-country-grid { grid-template-columns: repeat(2, 1fr); }
	.sp-home-layout { grid-template-columns: 1fr; }
	.sp-home-sidebar { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
}

/* --- DESKTOP MIC (1100px - 1299px) --- */
@media (min-width: 1100px) and (max-width: 1299px) {
	.sp-country-grid { grid-template-columns: repeat(4, 1fr); }
	.sp-latest-grid { grid-template-columns: repeat(3, 1fr); }
}

/* --- DESKTOP (>= 1300px): 4 coloane, layout ziar complet --- */
@media (min-width: 1300px) {
	.sp-country-grid { grid-template-columns: repeat(4, 1fr); }
	.sp-latest-grid { grid-template-columns: repeat(3, 1fr); }
	/* Hero mare pe desktop larg */
	.sp-card-hero .sp-card-imgwrap img { height: 460px; }
	.sp-card-title-hero { font-size: 28px; }
}

/* ==========================================================================
   SINGLE POST — layout ziar premium
   ========================================================================== */

/* Breadcrumb vizibil */
.sp-breadcrumb {
	font-size: 13px;
	color: #6b7280;
	margin: 0 0 18px;
	padding: 0;
	line-height: 1.5;
}
.sp-breadcrumb a {
	color: #6b7280;
	text-decoration: none;
	transition: color .15s;
}
.sp-breadcrumb a:hover { color: #b00000; }
.sp-breadcrumb-sep { margin: 0 8px; opacity: .6; }
.sp-breadcrumb-current {
	color: #1f2937;
	max-width: 100%;
	display: inline-block;
	vertical-align: bottom;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	max-width: 380px;
}

/* Badge țară mare deasupra titlului */
.sp-single-country {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: #fff !important;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: .5px;
	padding: 7px 16px;
	border-radius: 4px;
	margin-bottom: 16px;
	text-decoration: none;
	text-transform: uppercase;
}
.sp-single-country .flag-badge { font-size: 18px; }
.sp-single-country:hover { opacity: .9; color: #fff !important; }

.sp-single-header { margin-bottom: 8px; }
.sp-single-title {
	font-size: clamp( 28px, 4vw, 42px ) !important;
	line-height: 1.15 !important;
	font-weight: 800 !important;
	color: #111827 !important;
	margin: 0 0 18px !important;
	letter-spacing: -.5px;
}

/* Meta bar */
.sp-single-meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px 22px;
	font-size: 14px;
	color: #4b5563;
	margin-bottom: 18px;
	padding-bottom: 18px;
	border-bottom: 1px solid #e5e7eb;
}
.sp-meta-item { display: inline-flex; align-items: center; gap: 7px; }
.sp-meta-item svg { opacity: .7; flex-shrink: 0; }

/* Share buttons */
.sp-share {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
	margin-bottom: 26px;
}
.sp-share-label {
	font-size: 13px;
	font-weight: 700;
	color: #6b7280;
	text-transform: uppercase;
	letter-spacing: .5px;
	margin-right: 4px;
}
.sp-share-btn {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 13px;
	font-weight: 600;
	padding: 8px 13px;
	border-radius: 6px;
	border: 1px solid #e5e7eb;
	background: #fff;
	color: #374151;
	text-decoration: none;
	cursor: pointer;
	transition: all .15s;
	font-family: inherit;
}
.sp-share-btn:hover { transform: translateY(-1px); box-shadow: 0 2px 6px rgba(0,0,0,.1); }
.sp-share-fb:hover { background: #1877f2; color: #fff; border-color: #1877f2; }
.sp-share-tw:hover { background: #000; color: #fff; border-color: #000; }
.sp-share-wa:hover { background: #25d366; color: #fff; border-color: #25d366; }
.sp-share-tg:hover { background: #0088cc; color: #fff; border-color: #0088cc; }
.sp-share-copy:hover { background: #b00000; color: #fff; border-color: #b00000; }
.sp-share-copy.is-copied { background: #16a34a; color: #fff; border-color: #16a34a; }
.sp-share-copy-ok { font-weight: 700; }

/* Layout 2 coloane: continut + sidebar */
.sp-single-layout {
	display: grid;
	grid-template-columns: 1fr;
	gap: 36px;
	margin-top: 6px;
}
@media ( min-width: 1025px ) {
	.sp-single-layout { grid-template-columns: minmax(0, 1fr) 320px; }
	.sp-single-sidebar { position: sticky; top: 20px; align-self: start; max-height: calc(100vh - 40px); overflow-y: auto; }
}

/* Imagine featured */
.sp-single-featured {
	margin: 0 0 28px;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 4px 16px rgba(0,0,0,.08);
}
.sp-single-featured-img { width: 100%; height: auto; display: block; }
.sp-single-caption {
	font-size: 12px;
	color: #6b7280;
	padding: 8px 14px;
	background: #f3f4f6;
	text-align: center;
}

/* Continut */
.sp-single-content {
	font-size: 18px;
	line-height: 1.8;
	color: #1f2937;
}
.sp-single-content > p:first-of-type {
	font-size: 20px;
	font-weight: 500;
	color: #111827;
}
.sp-single-content > p:first-of-type::first-letter {
	font-size: 3.2em;
	font-weight: 800;
	float: left;
	line-height: .85;
	padding: 6px 10px 0 0;
	color: #b00000;
}
.sp-single-content h2 {
	font-size: 26px;
	font-weight: 800;
	color: #111827;
	margin: 34px 0 14px;
	line-height: 1.25;
}
.sp-single-content h3 {
	font-size: 21px;
	font-weight: 700;
	color: #111827;
	margin: 28px 0 12px;
}
.sp-single-content a { color: #b00000; text-decoration: underline; text-underline-offset: 2px; }
.sp-single-content img { border-radius: 6px; height: auto; }
.sp-single-content blockquote {
	border-left: 4px solid #b00000;
	margin: 24px 0;
	padding: 8px 22px;
	font-style: italic;
	color: #374151;
	background: #fafafa;
	border-radius: 0 6px 6px 0;
}
.sp-single-content ul, .sp-single-content ol { padding-left: 22px; margin: 16px 0; }
.sp-single-content li { margin-bottom: 6px; }

/* Footer articol (taguri/categorie) */
.sp-single-footer {
	margin: 32px 0 8px;
	padding-top: 22px;
	border-top: 1px solid #e5e7eb;
}
.sp-single-tags-label {
	font-size: 13px;
	font-weight: 700;
	color: #6b7280;
	text-transform: uppercase;
	letter-spacing: .5px;
	margin-right: 8px;
}
.sp-single-tag {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 14px;
	font-weight: 600;
	padding: 6px 14px;
	border-radius: 20px;
	background: #f3f4f6;
	color: #1f2937;
	text-decoration: none;
	transition: background .15s;
}
.sp-single-tag:hover { background: #e5e7eb; }
.sp-single-tag .flag-badge { font-size: 16px; }

/* Articole similare */
.sp-related {
	margin: 40px 0 10px;
	padding: 28px;
	background: #f9fafb;
	border-radius: 10px;
	border: 1px solid #e5e7eb;
}
.sp-related-head { margin-bottom: 20px; }
.sp-related-title {
	font-size: 22px !important;
	font-weight: 800 !important;
	color: #111827 !important;
	margin: 0 !important;
	display: flex;
	align-items: center;
	gap: 8px;
}
.sp-related-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 18px;
}

/* Navigare articole */
.sp-single-nav {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
	margin: 34px 0 10px;
}
.sp-nav-link {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 16px 18px;
	border: 1px solid #e5e7eb;
	border-radius: 8px;
	text-decoration: none;
	color: #1f2937;
	background: #fff;
	transition: all .15s;
}
.sp-nav-link:hover { border-color: #b00000; box-shadow: 0 2px 8px rgba(176,0,0,.12); }
.sp-nav-next { justify-content: flex-end; text-align: right; }
.sp-nav-arrow { font-size: 22px; color: #b00000; font-weight: 700; }
.sp-nav-text { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.sp-nav-dir { font-size: 11px; text-transform: uppercase; letter-spacing: .5px; color: #9ca3af; font-weight: 700; }
.sp-nav-title {
	font-size: 14px;
	font-weight: 600;
	color: #1f2937;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

/* Sidebar single */
.sp-single-sidebar .sp-widget {
	margin-bottom: 26px;
	padding: 0;
}

/* Responsive single */
@media ( max-width: 1024px ) {
	.sp-single-layout { grid-template-columns: 1fr; }
	.sp-related-grid { grid-template-columns: repeat(2, 1fr); }
}
@media ( max-width: 768px ) {
	.sp-single-nav { grid-template-columns: 1fr; }
	.sp-single-content { font-size: 17px; }
	.sp-single-title { font-size: 26px !important; }
}
@media ( max-width: 600px ) {
	.sp-related-grid { grid-template-columns: 1fr; }
	.sp-share { gap: 6px; }
	.sp-share-btn { padding: 7px 10px; font-size: 12px; }
	.sp-share-label { width: 100%; margin-bottom: 4px; }
	.sp-single-meta { gap: 6px 16px; font-size: 13px; }
	.sp-related { padding: 18px; }
}
