/**
 * Umuda Vuslat — Blog (home + single + search) Minimalist Butik.
 */

/* ============ ARCHIVE: HERO ============ */
.uv-blog-archive__hero {
	position: relative;
	background: linear-gradient(135deg, #0e2a25 0%, #017564 100%);
	color: #fff;
	padding: clamp(72px, 9vh, 120px) 0;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: clamp(360px, 48vh, 520px);
}
.uv-blog-archive__hero-overlay {
	position: absolute; inset: 0; pointer-events: none;
	background:
		radial-gradient(circle at 80% 25%, rgba(193,158,97,0.22) 0%, transparent 40%),
		radial-gradient(circle at 20% 75%, rgba(193,158,97,0.12) 0%, transparent 50%);
}
.uv-blog-archive__hero.has-image {
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}
.uv-blog-archive__hero.has-image::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(14,42,37,0.55) 0%, rgba(1,117,100,0.45) 100%);
	pointer-events: none;
	z-index: 1;
}
.uv-blog-archive__hero.has-image .uv-blog-archive__hero-overlay {
	background: rgba(1, 17, 15, 0.4);
	z-index: 1;
}
.uv-blog-archive__hero.has-bg-color:not(.has-image) {
	background-image: none;
}
.uv-blog-archive__hero .uv-container {
	position: relative;
	z-index: 2;
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}
.uv-blog-archive__hero-inner {
	max-width: 880px;
	margin: 0 auto;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}
.uv-blog-archive__hero .uv-breadcrumbs,
.uv-blog-archive__hero .uv-breadcrumb {
	justify-content: center;
	text-align: center;
	margin: 0 auto 18px;
	width: 100%;
}
.uv-blog-archive__eyebrow {
	display: inline-block;
	font-size: 11px;
	letter-spacing: 0.34em;
	text-transform: uppercase;
	color: #c19e61;
	padding: 6px 16px;
	border: 1px solid rgba(193,158,97,0.6);
	border-radius: 999px;
	background: rgba(0,0,0,0.18);
	margin-bottom: 24px;
}
.uv-blog-archive__title {
	font-family: var(--uv-font-heading, 'Playfair Display', serif);
	font-size: clamp(2.2rem, 4.8vw, 3.6rem);
	font-weight: 600;
	line-height: 1.18;
	margin: 0 0 18px;
	letter-spacing: -0.005em;
}
.uv-blog-archive__title em { font-style: italic; font-weight: 500; color: #c19e61; }
.uv-blog-archive__subtitle {
	font-size: 1.04rem;
	line-height: 1.7;
	color: rgba(255,255,255,0.85);
	max-width: 660px;
	margin: 0 auto;
}

/* ============ FEATURED ============ */
.uv-blog-featured {
	background: linear-gradient(180deg, #fbfaf6 0%, #fff 100%);
	padding: clamp(40px, 5vw, 64px) 0 clamp(20px, 3vw, 32px);
}
.uv-blog-featured__card {
	display: grid;
	grid-template-columns: 1.2fr 1fr;
	background: #fff;
	border: 1px solid #ece6d6;
	border-radius: 22px;
	overflow: hidden;
	text-decoration: none;
	color: inherit;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	box-shadow: 0 30px 60px -30px rgba(14, 42, 37, 0.18);
}
.uv-blog-featured__card:hover {
	transform: translateY(-4px);
	border-color: #c19e61;
	box-shadow: 0 40px 80px -30px rgba(14, 42, 37, 0.25);
}
.uv-blog-featured__media {
	position: relative;
	margin: 0;
	overflow: hidden;
	background: #fbfaf6;
	min-height: 320px;
}
.uv-blog-featured__media img {
	width: 100%; height: 100%;
	object-fit: cover;
	transition: transform 1s cubic-bezier(0.4, 0, 0.2, 1);
}
.uv-blog-featured__card:hover .uv-blog-featured__media img { transform: scale(1.05); }
.uv-blog-featured__tag {
	position: absolute;
	top: 18px; left: 18px;
	padding: 6px 14px;
	border-radius: 999px;
	background: #c19e61;
	color: #fff;
	font-size: 11px;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	font-weight: 700;
	box-shadow: 0 8px 18px -6px rgba(193, 158, 97, 0.5);
}
.uv-blog-featured__body {
	padding: clamp(28px, 4vw, 44px);
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.uv-blog-featured__meta {
	display: flex;
	gap: 14px;
	align-items: center;
	margin-bottom: 16px;
	font-size: 11px;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	font-weight: 600;
}
.uv-blog-featured__cat { color: #c19e61; }
.uv-blog-featured__date { color: #999; }
.uv-blog-featured__title {
	font-family: var(--uv-font-heading, 'Playfair Display', serif);
	font-size: clamp(1.5rem, 2.6vw, 2rem);
	font-weight: 600;
	color: #1a1a1a;
	margin: 0 0 14px;
	line-height: 1.2;
	letter-spacing: -0.005em;
}
.uv-blog-featured__card:hover .uv-blog-featured__title { color: #017564; }
.uv-blog-featured__excerpt {
	font-size: 0.98rem;
	line-height: 1.7;
	color: #555;
	margin: 0 0 22px;
}
.uv-blog-featured__cta {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 12.5px;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	font-weight: 600;
	color: #017564;
	transition: gap 0.3s ease, color 0.3s ease;
}
.uv-blog-featured__card:hover .uv-blog-featured__cta { gap: 14px; color: #c19e61; }

/* ============ ARCHIVE: BODY ============ */
.uv-blog-archive__body { padding: clamp(40px, 6vw, 80px) 0 clamp(60px, 7vw, 96px); background: #fff; }

/* ============ ARCHIVE: FILTER ============ */
.uv-blog-archive__filter {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 8px;
	margin: 0 auto clamp(36px, 4vw, 56px);
}
.uv-blog-archive__pill {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 9px 20px;
	border: 1px solid #ece6d6;
	border-radius: 999px;
	background: #fff;
	font-size: 13.5px;
	font-weight: 600;
	color: #555;
	letter-spacing: 0.04em;
	text-decoration: none;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.uv-blog-archive__pill:hover { border-color: #c19e61; color: #c19e61; }
.uv-blog-archive__pill.is-active {
	background: #017564;
	border-color: #017564;
	color: #fff;
	box-shadow: 0 10px 24px -10px rgba(1,117,100,0.4);
}
.uv-blog-archive__pill > span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 22px;
	height: 22px;
	padding: 0 6px;
	border-radius: 999px;
	background: rgba(0,0,0,0.06);
	font-size: 11px;
	font-weight: 700;
}
.uv-blog-archive__pill.is-active > span { background: rgba(255,255,255,0.22); }

/* ============ ARCHIVE: GRID ============ */
.uv-blog-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 28px;
}

/* ============ POST CARD ============ */
.uv-blog-card {
	display: flex;
	flex-direction: column;
}
.uv-blog-card__link {
	display: flex;
	flex-direction: column;
	background: #fff;
	border: 1px solid #ece6d6;
	border-radius: 18px;
	overflow: hidden;
	text-decoration: none;
	color: inherit;
	height: 100%;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.uv-blog-card__link:hover {
	transform: translateY(-4px);
	border-color: #c19e61;
	box-shadow: 0 28px 56px -28px rgba(14, 42, 37, 0.22);
}
.uv-blog-card__media {
	margin: 0;
	aspect-ratio: 16/10;
	overflow: hidden;
	background: #fbfaf6;
}
.uv-blog-card__media img {
	width: 100%; height: 100%;
	object-fit: cover;
	transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.uv-blog-card__link:hover .uv-blog-card__media img { transform: scale(1.05); }
.uv-blog-card__body {
	padding: 22px 24px 22px;
	flex: 1;
	display: flex;
	flex-direction: column;
}
.uv-blog-card__meta {
	display: flex;
	gap: 12px;
	align-items: center;
	margin-bottom: 12px;
	font-size: 11px;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	font-weight: 600;
}
.uv-blog-card__cat { color: #c19e61; }
.uv-blog-card__date { color: #999; }
.uv-blog-card__title {
	font-family: var(--uv-font-heading, 'Playfair Display', serif);
	font-size: 1.25rem;
	font-weight: 600;
	color: #1a1a1a;
	margin: 0 0 12px;
	line-height: 1.3;
	letter-spacing: -0.005em;
}
.uv-blog-card__link:hover .uv-blog-card__title { color: #017564; }
.uv-blog-card__excerpt {
	font-size: 0.95rem;
	line-height: 1.7;
	color: #555;
	margin: 0 0 18px;
}
.uv-blog-card__bottom {
	margin-top: auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-top: 14px;
	border-top: 1px solid #f0ebd9;
	font-size: 12px;
	color: #777;
	flex-wrap: wrap;
	gap: 8px;
}
.uv-blog-card__author strong { color: #1a1a1a; font-weight: 600; }
.uv-blog-card__time {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	color: #c19e61;
	font-weight: 600;
}

/* ============ ARCHIVE: PAGINATION + EMPTY ============ */
.uv-blog-archive__pagination {
	margin-top: clamp(40px, 5vw, 64px);
	display: flex;
	justify-content: center;
}
.uv-blog-archive__empty {
	text-align: center;
	padding: clamp(40px, 6vw, 72px) 24px;
	max-width: 520px;
	margin: 0 auto;
}
.uv-blog-archive__empty-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 84px; height: 84px;
	border-radius: 50%;
	background: rgba(193,158,97,0.1);
	color: #c19e61;
	font-size: 32px;
	margin-bottom: 24px;
}
.uv-blog-archive__empty h2 {
	font-family: var(--uv-font-heading, 'Playfair Display', serif);
	font-size: 1.5rem;
	font-weight: 600;
	color: #1a1a1a;
	margin: 0 0 12px;
}
.uv-blog-archive__empty p {
	color: #555;
	line-height: 1.7;
	margin: 0 0 24px;
}

/* ============ SEARCH FORM ============ */
.uv-search-form-min {
	display: flex;
	align-items: center;
	gap: 4px;
	max-width: 520px;
	margin: 32px auto 0;
	background: rgba(255,255,255,0.08);
	border: 1px solid rgba(255,255,255,0.18);
	border-radius: 999px;
	padding: 6px 6px 6px 18px;
	backdrop-filter: blur(8px);
	transition: all 0.3s ease;
}
.uv-search-form-min:focus-within {
	background: rgba(255,255,255,0.12);
	border-color: rgba(193,158,97,0.6);
}
.uv-search-form-min svg { color: #c19e61; flex-shrink: 0; }
.uv-search-form-min input {
	flex: 1;
	background: transparent;
	border: 0;
	color: #fff;
	font-family: inherit;
	font-size: 14.5px;
	padding: 10px 8px;
	min-width: 0;
}
.uv-search-form-min input::placeholder { color: rgba(255,255,255,0.55); }
.uv-search-form-min input:focus { outline: none; }
.uv-search-form-min button {
	padding: 10px 22px;
	border: 0;
	border-radius: 999px;
	background: #c19e61;
	color: #fff;
	font-family: inherit;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	cursor: pointer;
	transition: background 0.3s ease;
}
.uv-search-form-min button:hover { background: #a8884f; }

/* ============ READING PROGRESS ============ */
.uv-blog-progress {
	position: fixed;
	top: 0; left: 0; right: 0;
	height: 3px;
	background: rgba(193,158,97,0.12);
	z-index: 999;
	pointer-events: none;
}
.uv-blog-progress__bar {
	display: block;
	height: 100%;
	width: 0;
	background: linear-gradient(90deg, #c19e61, #017564);
	transition: width 0.1s linear;
}

/* ============ SINGLE: HERO ============ */
.uv-blog-hero {
	position: relative;
	min-height: clamp(440px, 60vh, 600px);
	display: flex;
	align-items: flex-end;
	color: #fff;
	background-color: #0e2a25;
	background-size: cover;
	background-position: center;
	padding: clamp(80px, 10vh, 120px) 0 clamp(48px, 7vh, 80px);
	overflow: hidden;
}
.uv-blog-hero__overlay {
	position: absolute; inset: 0; z-index: 1;
	background:
		radial-gradient(ellipse at 30% 30%, rgba(0,0,0,0.30) 0%, transparent 60%),
		linear-gradient(180deg, rgba(14,42,37,0.10) 0%, rgba(14,42,37,0.92) 100%);
}
.uv-blog-hero .uv-container { position: relative; z-index: 2; }
.uv-blog-hero__inner { max-width: 880px; }
.uv-blog-hero__cat {
	display: inline-flex;
	align-items: center;
	padding: 6px 16px;
	font-size: 11px;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	font-weight: 700;
	background: rgba(193,158,97,0.16);
	border: 1px solid rgba(193,158,97,0.5);
	color: #c19e61;
	border-radius: 999px;
	text-decoration: none;
	margin-bottom: 18px;
	transition: all 0.2s ease;
}
.uv-blog-hero__cat:hover { background: #c19e61; color: #fff; }
.uv-blog-hero__title {
	font-family: var(--uv-font-heading, 'Playfair Display', serif);
	font-size: clamp(2.1rem, 4.6vw, 3.4rem);
	font-weight: 600;
	line-height: 1.18;
	margin: 0 0 18px;
	letter-spacing: -0.005em;
}
.uv-blog-hero__lead {
	font-size: clamp(1rem, 1.4vw, 1.12rem);
	line-height: 1.7;
	color: rgba(255,255,255,0.86);
	max-width: 720px;
	margin: 0 0 22px;
}
.uv-blog-hero__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	align-items: center;
	font-size: 13px;
	color: rgba(255,255,255,0.86);
}
.uv-blog-hero__meta-item {
	display: inline-flex;
	align-items: center;
	gap: 8px;
}
.uv-blog-hero__meta-item svg { color: #c19e61; }
.uv-blog-hero__meta-item strong { color: #fff; font-weight: 600; }
.uv-blog-hero__avatar {
	border-radius: 50%;
	border: 2px solid rgba(255,255,255,0.15);
}
.uv-blog-hero__meta-sep {
	color: rgba(255,255,255,0.4);
}

/* ============ SINGLE: BODY (2 KOLON) ============ */
.uv-blog-body {
	background: #fff;
	padding: clamp(48px, 6vw, 80px) 0;
}
.uv-blog-body__grid {
	display: grid;
	grid-template-columns: 220px minmax(0, 1fr);
	gap: clamp(32px, 5vw, 72px);
	align-items: start;
}
.uv-blog-body__sticky {
	position: sticky;
	top: 100px;
	display: flex;
	flex-direction: column;
	gap: 28px;
	max-height: calc(100vh - 130px);
	overflow-y: auto;
	padding-right: 8px;
}

/* Share */
.uv-blog-body__share {
	padding-bottom: 24px;
	border-bottom: 1px solid #ece6d6;
}
.uv-blog-body__share-label {
	display: block;
	font-size: 11px;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: #c19e61;
	font-weight: 700;
	margin-bottom: 12px;
}

/* TOC */
.uv-blog-body__toc { font-size: 13.5px; }
.uv-blog-body__toc-label {
	display: block;
	font-size: 11px;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: #c19e61;
	font-weight: 700;
	margin-bottom: 14px;
	padding-bottom: 12px;
	border-bottom: 1px solid #ece6d6;
}
.uv-blog-body__toc-list {
	list-style: none;
	margin: 0;
	padding: 0;
	counter-reset: uv-blog-toc;
	display: flex;
	flex-direction: column;
	gap: 4px;
}
.uv-blog-body__toc-empty {
	color: #999;
	font-size: 12.5px;
	font-style: italic;
}
.uv-blog-body__toc-list li { counter-increment: uv-blog-toc; }
.uv-blog-body__toc-list a {
	display: flex;
	gap: 8px;
	padding: 6px 10px;
	color: #555;
	text-decoration: none;
	border-radius: 6px;
	transition: all 0.2s ease;
	font-size: 13px;
	line-height: 1.5;
}
.uv-blog-body__toc-list a:hover { background: #fbfaf6; color: #017564; }
.uv-blog-body__toc-list a.is-active { background: #017564; color: #fff; }
.uv-blog-body__toc-item--h3 a { padding-left: 22px; font-size: 12.5px; color: #777; }
.uv-blog-body__toc-item--h3 a::before {
	content: "—";
	color: #c19e61;
	margin-right: 4px;
}

/* PROSE */
.uv-blog-body__main { min-width: 0; }
.uv-blog-prose {
	font-size: 1.06rem;
	line-height: 1.9;
	color: #2c2c2c;
}
.uv-blog-prose > *:first-child { margin-top: 0; }
.uv-blog-prose > *:last-child { margin-bottom: 0; }
.uv-blog-prose p { margin: 0 0 1.2em; }
.uv-blog-prose h2 {
	font-family: var(--uv-font-heading, 'Playfair Display', serif);
	font-size: clamp(1.5rem, 2.6vw, 1.85rem);
	font-weight: 600;
	color: #1a1a1a;
	margin: 56px 0 18px;
	letter-spacing: -0.005em;
	scroll-margin-top: 100px;
	line-height: 1.25;
}
.uv-blog-prose h2:first-child { margin-top: 0; }
.uv-blog-prose h3 {
	font-family: var(--uv-font-heading, 'Playfair Display', serif);
	font-size: 1.35rem;
	font-weight: 600;
	color: #1a1a1a;
	margin: 36px 0 14px;
	letter-spacing: -0.005em;
	scroll-margin-top: 100px;
	line-height: 1.3;
}
.uv-blog-prose h2 em,
.uv-blog-prose h3 em { font-style: italic; color: #c19e61; font-weight: 500; }
.uv-blog-prose ul,
.uv-blog-prose ol { margin: 0 0 1.4em; padding-left: 1.4em; }
.uv-blog-prose ul li::marker { color: #c19e61; }
.uv-blog-prose ol li::marker { color: #c19e61; font-weight: 700; }
.uv-blog-prose ul li,
.uv-blog-prose ol li { margin-bottom: 0.5em; }
.uv-blog-prose blockquote {
	border-left: 3px solid #c19e61;
	padding: 18px 26px;
	margin: 32px 0;
	background: #fbfaf6;
	border-radius: 0 12px 12px 0;
	font-style: italic;
	color: #444;
	font-size: 1.08rem;
}
.uv-blog-prose blockquote p:last-child { margin-bottom: 0; }
.uv-blog-prose img {
	max-width: 100%;
	height: auto;
	display: block;
	border-radius: 12px;
	margin: 28px auto;
	box-shadow: 0 24px 48px -24px rgba(14, 42, 37, 0.2);
}
.uv-blog-prose figure { margin: 28px 0; }
.uv-blog-prose figure img { margin: 0 auto; }
.uv-blog-prose figcaption {
	margin-top: 12px;
	font-size: 0.88rem;
	color: #777;
	text-align: center;
	font-style: italic;
}
.uv-blog-prose a {
	color: #017564;
	text-decoration: none;
	border-bottom: 1px solid rgba(1,117,100,0.3);
	transition: all 0.2s ease;
}
.uv-blog-prose a:hover { color: #c19e61; border-bottom-color: #c19e61; }
.uv-blog-prose strong { color: #1a1a1a; }
.uv-blog-prose code {
	background: #fbfaf6;
	padding: 2px 6px;
	border-radius: 4px;
	font-size: 0.9em;
	border: 1px solid #ece6d6;
	color: #017564;
}
.uv-blog-prose pre {
	background: #0e2a25;
	color: #fff;
	padding: 22px 24px;
	border-radius: 12px;
	overflow-x: auto;
	margin: 24px 0;
	font-size: 0.92rem;
	line-height: 1.65;
}
.uv-blog-prose pre code { background: none; border: 0; color: inherit; padding: 0; }
.uv-blog-prose__page-links {
	margin-top: 32px;
	padding-top: 20px;
	border-top: 1px solid #ece6d6;
	font-size: 13px;
	color: #777;
}

/* ============ TAGS ============ */
.uv-blog-tags {
	margin-top: 48px;
	padding-top: 28px;
	border-top: 1px solid #ece6d6;
}
.uv-blog-tags__label {
	display: block;
	font-size: 11px;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: #c19e61;
	font-weight: 700;
	margin-bottom: 14px;
}
.uv-blog-tags__list {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}
.uv-blog-tag {
	display: inline-block;
	padding: 6px 14px;
	background: #fbfaf6;
	border: 1px solid #ece6d6;
	border-radius: 999px;
	color: #555;
	font-size: 12.5px;
	font-weight: 600;
	text-decoration: none;
	transition: all 0.2s ease;
}
.uv-blog-tag:hover {
	background: #017564;
	border-color: #017564;
	color: #fff;
}

/* ============ AUTHOR CARD ============ */
.uv-blog-author {
	margin-top: 56px;
	padding: clamp(28px, 4vw, 40px);
	background: #fbfaf6;
	border: 1px solid #ece6d6;
	border-radius: 18px;
	border-top: 3px solid #c19e61;
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 24px;
	align-items: start;
}
.uv-blog-author__avatar img {
	width: 96px; height: 96px;
	border-radius: 50%;
	border: 3px solid #fff;
	box-shadow: 0 12px 28px -8px rgba(14, 42, 37, 0.18);
}
.uv-blog-author__eyebrow {
	display: block;
	font-size: 11px;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: #c19e61;
	font-weight: 700;
	margin-bottom: 6px;
}
.uv-blog-author__name {
	font-family: var(--uv-font-heading, 'Playfair Display', serif);
	font-size: 1.4rem;
	font-weight: 600;
	color: #1a1a1a;
	margin: 0 0 12px;
	letter-spacing: -0.005em;
}
.uv-blog-author__bio {
	font-size: 0.96rem;
	line-height: 1.7;
	color: #555;
	margin: 0 0 16px;
}
.uv-blog-author__link {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 12.5px;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	font-weight: 600;
	color: #017564;
	text-decoration: none;
	transition: gap 0.3s ease, color 0.3s ease;
}
.uv-blog-author__link:hover { gap: 12px; color: #c19e61; }

/* ============ BLOG NAV ============ */
.uv-blog-nav-wrap { background: #fbfaf6; padding: clamp(36px, 5vw, 56px) 0; }
.uv-blog-nav {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 18px;
}
.uv-blog-nav__item {
	display: flex;
	flex-direction: column;
	gap: 6px;
	padding: 22px 26px;
	background: #fff;
	border: 1px solid #ece6d6;
	border-radius: 14px;
	text-decoration: none;
	color: inherit;
	transition: all 0.32s cubic-bezier(0.4, 0, 0.2, 1);
}
.uv-blog-nav__item:hover {
	border-color: #c19e61;
	transform: translateY(-2px);
	box-shadow: 0 24px 48px -24px rgba(14, 42, 37, 0.18);
}
.uv-blog-nav__next { text-align: right; align-items: flex-end; }
.uv-blog-nav__label {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 11px;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: #c19e61;
	font-weight: 700;
}
.uv-blog-nav__title {
	font-family: var(--uv-font-heading, 'Playfair Display', serif);
	font-size: 1.05rem;
	font-weight: 600;
	color: #1a1a1a;
	line-height: 1.35;
	letter-spacing: -0.005em;
}
.uv-blog-nav__item:hover .uv-blog-nav__title { color: #017564; }

/* ============ RELATED ============ */
.uv-blog-related { background: #fff; }

/* ============ COMMENTS ============ */
.uv-blog-comments-wrap { background: #fff; padding: clamp(48px, 6vw, 80px) 0; }
.uv-blog-comments-wrap .comment-respond,
.uv-blog-comments-wrap .comments-area {
	background: #fff;
}
.uv-blog-comments-wrap .comment-reply-title,
.uv-blog-comments-wrap .comments-title {
	font-family: var(--uv-font-heading, 'Playfair Display', serif);
	color: #1a1a1a;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
	.uv-blog-grid { grid-template-columns: repeat(2, 1fr); gap: 22px; }
	.uv-blog-featured__card { grid-template-columns: 1fr; }
	.uv-blog-featured__media { min-height: 240px; aspect-ratio: 16/9; }
	.uv-blog-body__grid { grid-template-columns: 1fr; }
	.uv-blog-body__sticky {
		position: static;
		max-height: none;
		padding-right: 0;
		flex-direction: row;
		flex-wrap: wrap;
		gap: 20px;
		padding: 18px 22px;
		background: #fbfaf6;
		border: 1px solid #ece6d6;
		border-radius: 14px;
	}
	.uv-blog-body__share { padding-bottom: 0; border-bottom: 0; flex: 0 0 auto; }
	.uv-blog-body__toc { flex: 1; min-width: 220px; }
	.uv-blog-body__toc-label { padding-bottom: 8px; margin-bottom: 8px; }
}
@media (max-width: 720px) {
	.uv-blog-grid { grid-template-columns: 1fr; }
	.uv-blog-nav { grid-template-columns: 1fr; }
	.uv-blog-author { grid-template-columns: 1fr; text-align: center; }
	.uv-blog-author__avatar { margin: 0 auto; }
	.uv-blog-author__avatar img { width: 80px; height: 80px; }
	.uv-blog-hero__meta { font-size: 12px; }
	.uv-blog-hero__meta-sep { display: none; }
	.uv-blog-prose { font-size: 1rem; line-height: 1.8; }
	.uv-search-form-min { flex-direction: column; padding: 12px; gap: 10px; align-items: stretch; }
	.uv-search-form-min svg { display: none; }
	.uv-search-form-min input { padding: 10px 14px; }
	.uv-search-form-min button { width: 100%; }
}
