/**
 * Blog & Production Journal Stylesheet
 *
 * Luxury dark aesthetic matching Hire Fixer Nepal design system.
 *
 * @package HireFixerNepal
 */

/* -------------------------------------------------------------------------- */
/* 1. Blog Hero & Header                                                      */
/* -------------------------------------------------------------------------- */

.hfn-blog-hero {
	position: relative;
	padding: clamp(60px, 8vw, 100px) clamp(20px, 5vw, 60px) clamp(40px, 5vw, 60px);
	background: radial-gradient(circle at 50% 10%, rgba(229, 169, 60, 0.08) 0%, rgba(11, 12, 14, 0) 70%), #0b0c0e;
	border-bottom: 1px solid rgba(255, 255, 255, 0.06);
	overflow: hidden;
	text-align: center;
}

.hfn-blog-hero__inner {
	max-width: 900px;
	margin: 0 auto;
	position: relative;
	z-index: 2;
}

.hfn-blog-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 6px 16px;
	background: rgba(229, 169, 60, 0.1);
	border: 1px solid rgba(229, 169, 60, 0.25);
	border-radius: 999px;
	color: #e5a93c;
	font-family: 'Outfit', sans-serif;
	font-size: 11.5px;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	margin-bottom: 20px;
}

.hfn-blog-badge-dot {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: #e5a93c;
	box-shadow: 0 0 10px #e5a93c;
	animation: hfn-pulse 2s infinite ease-in-out;
}

@keyframes hfn-pulse {
	0%, 100% { opacity: 1; transform: scale(1); }
	50% { opacity: 0.4; transform: scale(0.85); }
}

.hfn-blog-hero h1 {
	font-family: 'Outfit', sans-serif;
	font-size: clamp(34px, 5vw, 54px);
	font-weight: 800;
	line-height: 1.12;
	color: #ffffff;
	letter-spacing: -0.02em;
	margin: 0 0 16px;
}

.hfn-blog-hero h1 span {
	font-family: 'Instrument Serif', serif;
	font-style: italic;
	font-weight: 400;
	color: #e5a93c;
}

.hfn-blog-hero__lead {
	font-size: clamp(15px, 1.8vw, 17px);
	line-height: 1.65;
	color: #a0a2ab;
	max-width: 680px;
	margin: 0 auto 36px;
}

/* -------------------------------------------------------------------------- */
/* 2. Interactive Search & Filters Bar                                       */
/* -------------------------------------------------------------------------- */

.hfn-blog-controls {
	max-width: 820px;
	margin: 0 auto;
}

.hfn-blog-search-wrap {
	position: relative;
	display: flex;
	align-items: center;
	background: rgba(22, 24, 30, 0.95);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 999px;
	padding: 6px 10px 6px 20px;
	box-shadow: 0 12px 36px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.05);
	transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.hfn-blog-search-wrap:focus-within {
	border-color: rgba(229, 169, 60, 0.6);
	box-shadow: 0 14px 40px rgba(0, 0, 0, 0.6), 0 0 0 3px rgba(229, 169, 60, 0.2);
}

.hfn-blog-search-icon {
	color: #e5a93c;
	margin-right: 12px;
	flex-shrink: 0;
	display: flex;
	align-items: center;
}

.hfn-blog-search-input {
	flex: 1;
	background: transparent;
	border: none;
	outline: none;
	color: #ffffff;
	font-family: inherit;
	font-size: 15px;
	padding: 8px 0;
}

.hfn-blog-search-input::placeholder {
	color: #6c707d;
	font-size: 14.5px;
}

.hfn-blog-search-clear {
	background: rgba(255, 255, 255, 0.08);
	border: none;
	color: #a0a2ab;
	width: 28px;
	height: 28px;
	border-radius: 50%;
	display: none;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	margin-right: 6px;
	transition: background-color 0.2s, color 0.2s;
}

.hfn-blog-search-clear:hover {
	background: rgba(255, 255, 255, 0.16);
	color: #ffffff;
}

.hfn-blog-search-btn {
	background: linear-gradient(180deg, #ffd369 0%, #e5a93c 100%);
	color: #0b0c0e;
	border: none;
	border-radius: 999px;
	padding: 10px 22px;
	font-family: 'Outfit', sans-serif;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.04em;
	cursor: pointer;
	display: flex;
	align-items: center;
	gap: 6px;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
	flex-shrink: 0;
}

.hfn-blog-search-btn:hover {
	transform: translateY(-1px);
	box-shadow: 0 6px 18px rgba(229, 169, 60, 0.35);
}

/* Category Filter Chips */
.hfn-blog-categories {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	justify-content: center;
	margin-top: 24px;
}

.hfn-blog-cat-btn {
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 999px;
	padding: 7px 18px;
	color: #9295a0;
	font-family: 'Outfit', sans-serif;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.02em;
	cursor: pointer;
	transition: all 0.22s ease;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	text-decoration: none;
}

.hfn-blog-cat-btn:hover {
	background: rgba(255, 255, 255, 0.09);
	color: #ffffff;
	border-color: rgba(255, 255, 255, 0.2);
}

.hfn-blog-cat-btn.active {
	background: #e5a93c;
	color: #0b0c0e;
	border-color: #e5a93c;
	font-weight: 700;
	box-shadow: 0 4px 14px rgba(229, 169, 60, 0.3);
}

.hfn-blog-cat-btn .hfn-cat-count {
	font-size: 11px;
	opacity: 0.75;
	padding: 1px 6px;
	background: rgba(0, 0, 0, 0.18);
	border-radius: 999px;
}

.hfn-blog-cat-btn.active .hfn-cat-count {
	background: rgba(0, 0, 0, 0.15);
	color: #0b0c0e;
}

/* -------------------------------------------------------------------------- */
/* 3. Main Content Container & Results Header                                */
/* -------------------------------------------------------------------------- */

.hfn-blog-body {
	max-width: 1280px;
	margin: 0 auto;
	padding: 48px 24px 80px;
}

.hfn-blog-status-bar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 32px;
	padding-bottom: 16px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.06);
	color: #8c8f9c;
	font-size: 13.5px;
}

.hfn-blog-count-badge {
	color: #ffffff;
	font-weight: 600;
}

.hfn-blog-filter-clear {
	color: #e5a93c;
	text-decoration: none;
	font-size: 13px;
	font-weight: 600;
	cursor: pointer;
	display: none;
}

.hfn-blog-filter-clear:hover {
	text-decoration: underline;
}

/* -------------------------------------------------------------------------- */
/* 4. Featured Story Spotlight                                               */
/* -------------------------------------------------------------------------- */

.hfn-blog-featured-card {
	display: grid;
	grid-template-columns: 1.1fr 1fr;
	background: #111318;
	border: 1px solid rgba(229, 169, 60, 0.3);
	border-radius: 20px;
	overflow: hidden;
	margin-bottom: 56px;
	box-shadow: 0 20px 48px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.08);
	transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
	position: relative;
	min-height: 340px;
	max-height: 400px;
	align-items: stretch;
}

.hfn-blog-featured-card:hover {
	border-color: rgba(229, 169, 60, 0.6);
	transform: translateY(-3px);
	box-shadow: 0 26px 56px rgba(0, 0, 0, 0.65), 0 0 28px rgba(229, 169, 60, 0.18);
}

.hfn-blog-featured-media {
	position: relative;
	height: 100%;
	min-height: 340px;
	max-height: 400px;
	overflow: hidden;
	background: #15171d;
}

.hfn-blog-featured-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center 30%;
	transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
	display: block;
}

.hfn-blog-featured-card:hover .hfn-blog-featured-media img {
	transform: scale(1.04);
}

.hfn-blog-featured-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgba(17, 19, 24, 0) 35%, rgba(17, 19, 24, 0.65) 75%, rgba(17, 19, 24, 1) 100%);
	pointer-events: none;
}

.hfn-blog-featured-content {
	padding: clamp(24px, 3.2vw, 40px);
	display: flex;
	flex-direction: column;
	justify-content: center;
	background: #111318;
	z-index: 2;
}

.hfn-blog-featured-tag-row {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 16px;
}

.hfn-blog-pill-featured {
	background: #e5a93c;
	color: #0b0c0e;
	font-family: 'Outfit', sans-serif;
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	padding: 4px 10px;
	border-radius: 999px;
}

.hfn-blog-pill-cat {
	background: rgba(255, 255, 255, 0.08);
	color: #cfd2dc;
	font-size: 11.5px;
	font-weight: 600;
	padding: 4px 12px;
	border-radius: 999px;
}

.hfn-blog-featured-content h2 {
	font-family: 'Outfit', sans-serif;
	font-size: clamp(22px, 2.5vw, 30px);
	font-weight: 700;
	line-height: 1.25;
	color: #ffffff;
	margin: 0 0 16px;
}

.hfn-blog-featured-content h2 a {
	color: #ffffff;
	text-decoration: none;
	transition: color 0.2s;
}

.hfn-blog-featured-content h2 a:hover {
	color: #e5a93c;
}

.hfn-blog-featured-content p {
	font-size: 15px;
	line-height: 1.65;
	color: #a4a7b4;
	margin: 0 0 24px;
}

.hfn-blog-meta-row {
	display: flex;
	align-items: center;
	gap: 16px;
	font-size: 12.5px;
	color: #8c8f9c;
	margin-bottom: 28px;
}

.hfn-blog-meta-author {
	color: #ffffff;
	font-weight: 600;
}

.hfn-blog-meta-dot {
	width: 4px;
	height: 4px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.3);
}

.hfn-blog-featured-action {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: #e5a93c;
	font-family: 'Outfit', sans-serif;
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0.02em;
	text-decoration: none;
	transition: gap 0.2s ease, color 0.2s ease;
}

.hfn-blog-featured-action:hover {
	gap: 12px;
	color: #ffd369;
}

/* -------------------------------------------------------------------------- */
/* 5. Blog Grid & Cards                                                      */
/* -------------------------------------------------------------------------- */

.hfn-blog-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
	gap: 32px;
}

.hfn-blog-card {
	background: rgba(20, 22, 28, 0.85);
	border: 1px solid rgba(255, 255, 255, 0.07);
	border-radius: 16px;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease, box-shadow 0.3s ease;
	position: relative;
}

.hfn-blog-card:hover {
	transform: translateY(-4px);
	border-color: rgba(229, 169, 60, 0.35);
	box-shadow: 0 16px 36px rgba(0, 0, 0, 0.5), 0 0 20px rgba(229, 169, 60, 0.08);
}

.hfn-blog-card-thumb {
	position: relative;
	aspect-ratio: 16 / 10;
	overflow: hidden;
	background: #121318;
}

.hfn-blog-card-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
	display: block;
}

.hfn-blog-card:hover .hfn-blog-card-thumb img {
	transform: scale(1.05);
}

.hfn-blog-card-badge {
	position: absolute;
	top: 14px;
	left: 14px;
	background: rgba(11, 12, 14, 0.85);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	color: #e5a93c;
	border: 1px solid rgba(229, 169, 60, 0.3);
	font-family: 'Outfit', sans-serif;
	font-size: 11px;
	font-weight: 700;
	padding: 4px 10px;
	border-radius: 999px;
	letter-spacing: 0.04em;
}

.hfn-blog-card-readtime {
	position: absolute;
	bottom: 12px;
	right: 12px;
	background: rgba(11, 12, 14, 0.8);
	backdrop-filter: blur(6px);
	color: #cfd2dc;
	font-size: 11px;
	padding: 3px 8px;
	border-radius: 6px;
}

.hfn-blog-card-body {
	padding: 24px;
	display: flex;
	flex-direction: column;
	flex: 1;
}

.hfn-blog-card-title {
	font-family: 'Outfit', sans-serif;
	font-size: 19px;
	font-weight: 700;
	line-height: 1.35;
	margin: 0 0 12px;
	color: #ffffff;
}

.hfn-blog-card-title a {
	color: #ffffff;
	text-decoration: none;
	transition: color 0.2s;
}

.hfn-blog-card-title a:hover {
	color: #e5a93c;
}

.hfn-blog-card-excerpt {
	font-size: 14px;
	line-height: 1.6;
	color: #9295a0;
	margin: 0 0 20px;
	flex: 1;
}

.hfn-blog-card-footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-top: 16px;
	border-top: 1px solid rgba(255, 255, 255, 0.06);
	font-size: 12.5px;
	color: #7b7e8c;
}

.hfn-blog-card-author {
	display: flex;
	align-items: center;
	gap: 8px;
}

.hfn-blog-card-author-avatar {
	width: 24px;
	height: 24px;
	border-radius: 50%;
	background: #e5a93c;
	color: #0b0c0e;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 10px;
	font-weight: 800;
}

.hfn-blog-card-link {
	color: #e5a93c;
	font-family: 'Outfit', sans-serif;
	font-weight: 700;
	font-size: 13px;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 4px;
	transition: gap 0.2s ease, color 0.2s ease;
}

.hfn-blog-card-link:hover {
	gap: 8px;
	color: #ffd369;
}

/* -------------------------------------------------------------------------- */
/* 6. Empty State / No Results UI                                            */
/* -------------------------------------------------------------------------- */

.hfn-blog-empty {
	grid-column: 1 / -1;
	text-align: center;
	padding: 72px 24px;
	background: rgba(20, 22, 28, 0.6);
	border: 1px dashed rgba(255, 255, 255, 0.12);
	border-radius: 18px;
	display: none;
}

.hfn-blog-empty-icon {
	width: 56px;
	height: 56px;
	margin: 0 auto 16px;
	color: #e5a93c;
	opacity: 0.8;
}

.hfn-blog-empty h3 {
	font-family: 'Outfit', sans-serif;
	font-size: 22px;
	font-weight: 700;
	color: #ffffff;
	margin: 0 0 8px;
}

.hfn-blog-empty p {
	font-size: 14.5px;
	color: #8c8f9c;
	max-width: 440px;
	margin: 0 auto 20px;
}

.hfn-blog-empty-reset {
	background: linear-gradient(180deg, #ffd369 0%, #e5a93c 100%);
	color: #0b0c0e;
	border: none;
	border-radius: 999px;
	padding: 10px 24px;
	font-family: 'Outfit', sans-serif;
	font-size: 13.5px;
	font-weight: 700;
	cursor: pointer;
}

/* -------------------------------------------------------------------------- */
/* 7. Single Blog Article Complete Luxury Styling                            */
/* -------------------------------------------------------------------------- */

.hfn-single-blog-container {
	background-color: #0b0c0e;
	color: #ffffff;
}

.hfn-single-blog-hero {
	padding: clamp(56px, 7vw, 96px) clamp(20px, 4vw, 40px) 0;
	background: radial-gradient(circle at 50% 0%, rgba(229, 169, 60, 0.08) 0%, rgba(11, 12, 14, 0) 65%), #0b0c0e;
}

.hfn-single-blog-hero__inner {
	max-width: 1180px;
	margin: 0 auto;
}

/* Breadcrumb Navigation */
.hfn-blog-breadcrumbs {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 8px;
	font-size: 13px;
	color: #7b7e8c;
	margin-bottom: 24px;
	line-height: 1.4;
}

.hfn-blog-breadcrumbs a {
	color: #9da0ae !important;
	text-decoration: none !important;
	transition: color 0.2s ease;
}

.hfn-blog-breadcrumbs a:hover {
	color: #e5a93c !important;
	text-decoration: none !important;
}

.hfn-blog-breadcrumbs .hfn-bc-sep {
	opacity: 0.45;
	font-size: 11px;
	color: #7b7e8c;
}

.hfn-blog-breadcrumbs .hfn-bc-current {
	color: #e4e6ef;
	font-weight: 500;
}

.hfn-single-blog-badge-row {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 20px;
}

.hfn-blog-pill-cat {
	background: rgba(229, 169, 60, 0.12) !important;
	color: #e5a93c !important;
	font-family: 'Outfit', sans-serif;
	font-size: 11.5px;
	font-weight: 700;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	padding: 5px 14px;
	border-radius: 999px;
	border: 1px solid rgba(229, 169, 60, 0.3) !important;
	text-decoration: none !important;
	display: inline-flex;
	align-items: center;
	transition: all 0.2s ease;
}

.hfn-blog-pill-cat:hover {
	background: rgba(229, 169, 60, 0.2) !important;
	border-color: rgba(229, 169, 60, 0.5) !important;
	color: #ffd369 !important;
	text-decoration: none !important;
}

.hfn-single-blog-pill-time {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	color: #9da0ae;
	font-size: 12.5px;
	background: rgba(255, 255, 255, 0.05);
	padding: 4px 12px;
	border-radius: 999px;
	border: 1px solid rgba(255, 255, 255, 0.08);
}

.hfn-single-blog-title {
	font-family: 'Outfit', sans-serif;
	font-size: clamp(30px, 4.5vw, 48px);
	font-weight: 800;
	line-height: 1.18;
	color: #ffffff;
	letter-spacing: -0.02em;
	margin: 0 0 28px;
}

.hfn-single-blog-author-bar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 20px;
	padding-bottom: 28px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	margin-bottom: 36px;
}

.hfn-single-blog-author-info {
	display: flex;
	align-items: center;
	gap: 14px;
}

.hfn-single-blog-author-img {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: linear-gradient(135deg, #ffd369 0%, #e5a93c 100%);
	color: #0b0c0e;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: 'Outfit', sans-serif;
	font-size: 17px;
	font-weight: 800;
	box-shadow: 0 4px 14px rgba(229, 169, 60, 0.25);
}

.hfn-single-blog-author-name {
	font-size: 14.5px;
	color: #e4e6ef;
}

.hfn-single-blog-author-name strong {
	color: #ffffff;
}

.hfn-single-blog-meta-date {
	font-size: 12.5px;
	color: #838694;
	margin-top: 2px;
}

.hfn-single-blog-share {
	display: flex;
	align-items: center;
	gap: 8px;
}

.hfn-share-lbl {
	font-size: 12.5px;
	color: #838694;
	font-weight: 600;
	margin-right: 4px;
}

.hfn-share-btn {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.1);
	color: #cfd2dc;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	text-decoration: none;
	transition: all 0.2s ease;
}

.hfn-share-btn:hover {
	background: #e5a93c;
	color: #0b0c0e;
	border-color: #e5a93c;
	transform: translateY(-2px);
}

.hfn-single-blog-hero-image {
	border-radius: 20px;
	overflow: hidden;
	background: #15171d;
	border: 1px solid rgba(255, 255, 255, 0.08);
	box-shadow: 0 24px 60px rgba(0, 0, 0, 0.6);
	aspect-ratio: 16 / 9;
}

.hfn-single-blog-hero-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.hfn-single-blog-content-wrap {
	max-width: 1080px;
	margin: 0 auto;
	padding: 64px 24px 96px;
}

.hfn-single-blog-article {
	font-size: 17px;
	line-height: 1.85;
	color: #c0c3cf;
}

.hfn-single-blog-article h2 {
	font-family: 'Outfit', sans-serif;
	font-size: clamp(24px, 3vw, 32px);
	font-weight: 700;
	color: #ffffff;
	margin: 48px 0 20px;
	letter-spacing: -0.01em;
}

.hfn-single-blog-article h3 {
	font-family: 'Outfit', sans-serif;
	font-size: 22px;
	font-weight: 700;
	color: #ffffff;
	margin: 36px 0 16px;
}

.hfn-single-blog-article p {
	margin-bottom: 24px;
}

.hfn-single-blog-article ul,
.hfn-single-blog-article ol {
	margin: 0 0 28px 24px;
	padding: 0;
}

.hfn-single-blog-article li {
	margin-bottom: 12px;
}

.hfn-article-lead {
	font-size: 20px;
	line-height: 1.65;
	color: #ffffff;
	font-weight: 400;
	margin-bottom: 36px;
}

.hfn-callout-box {
	display: flex;
	gap: 20px;
	background: rgba(229, 169, 60, 0.06);
	border: 1px solid rgba(229, 169, 60, 0.25);
	border-left: 4px solid #e5a93c;
	border-radius: 14px;
	padding: 24px 28px;
	margin: 40px 0;
}

.hfn-callout-icon {
	flex-shrink: 0;
	margin-top: 2px;
}

.hfn-callout-text h4 {
	font-family: 'Outfit', sans-serif;
	font-size: 17px;
	font-weight: 700;
	color: #ffffff;
	margin: 0 0 12px;
}

.hfn-callout-text ul {
	margin: 0;
	padding-left: 20px;
}

.hfn-callout-text li {
	font-size: 14.5px;
	line-height: 1.6;
	color: #d1d4df;
	margin-bottom: 8px;
}

.hfn-checklist-card {
	background: rgba(20, 22, 28, 0.9);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 16px;
	padding: 28px;
	margin: 40px 0;
}

.hfn-checklist-card h3 {
	font-family: 'Outfit', sans-serif;
	font-size: 18px;
	font-weight: 700;
	color: #ffffff;
	margin: 0 0 20px;
}

.hfn-check-item {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	margin-bottom: 14px;
	font-size: 15px;
	color: #c0c3cf;
}

.hfn-check-box {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 22px;
	height: 22px;
	border-radius: 6px;
	background: rgba(229, 169, 60, 0.15);
	color: #e5a93c;
	font-weight: 800;
	font-size: 12px;
	flex-shrink: 0;
	margin-top: 1px;
}

.hfn-single-blog-article blockquote {
	border-left: 3px solid #e5a93c;
	background: rgba(255, 255, 255, 0.03);
	border-radius: 0 12px 12px 0;
	margin: 36px 0;
	padding: 24px 28px;
	font-family: 'Instrument Serif', serif;
	font-style: italic;
	font-size: 22px;
	line-height: 1.5;
	color: #ffffff;
}

.hfn-author-contact-btn {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	color: #e5a93c;
	font-family: 'Outfit', sans-serif;
	font-size: 13.5px;
	font-weight: 700;
	text-decoration: none;
	transition: gap 0.2s ease, color 0.2s ease;
}

.hfn-author-contact-btn:hover {
	gap: 10px;
	color: #ffd369;
}

.hfn-single-related-section {
	max-width: 1280px;
	margin: 0 auto;
	padding: 60px 24px;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* -------------------------------------------------------------------------- */
/* Embedded Component Fixes (for seeded or structured posts)                  */
/* -------------------------------------------------------------------------- */

.hfn-single-blog-article .hfn-cards,
.hfn-single-blog-content-wrap .hfn-cards {
	display: grid !important;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)) !important;
	gap: 16px !important;
	list-style: none !important;
	padding: 0 !important;
	margin: 36px 0 !important;
	width: 100% !important;
}

.hfn-single-blog-article .hfn-card,
.hfn-single-blog-content-wrap .hfn-card {
	background: rgba(20, 22, 28, 0.9) !important;
	border: 1px solid rgba(255, 255, 255, 0.08) !important;
	border-radius: 14px !important;
	padding: 20px !important;
	display: flex !important;
	flex-direction: column !important;
	min-width: 0 !important;
	box-sizing: border-box !important;
}

.hfn-single-blog-article .hfn-card__icon,
.hfn-single-blog-content-wrap .hfn-card__icon {
	width: 38px !important;
	height: 38px !important;
	border-radius: 10px !important;
	background: rgba(229, 169, 60, 0.12) !important;
	border: 1px solid rgba(229, 169, 60, 0.3) !important;
	color: #e5a93c !important;
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	margin-bottom: 12px !important;
}

.hfn-single-blog-article .hfn-card__title,
.hfn-single-blog-content-wrap .hfn-card__title {
	font-family: 'Outfit', sans-serif !important;
	font-size: 15.5px !important;
	font-weight: 700 !important;
	color: #ffffff !important;
	margin: 0 0 8px !important;
	line-height: 1.35 !important;
	white-space: normal !important;
	word-break: normal !important;
}

.hfn-single-blog-article .hfn-card__text,
.hfn-single-blog-content-wrap .hfn-card__text {
	font-size: 13px !important;
	line-height: 1.55 !important;
	color: #9da0ae !important;
	margin: 0 !important;
	white-space: normal !important;
	word-break: normal !important;
}

.hfn-single-blog-article .hfn-statband,
.hfn-single-blog-content-wrap .hfn-statband {
	display: grid !important;
	grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)) !important;
	gap: 16px !important;
	padding: 24px !important;
	background: rgba(20, 22, 28, 0.8) !important;
	border: 1px solid rgba(255, 255, 255, 0.08) !important;
	border-radius: 16px !important;
	margin: 36px 0 !important;
}

.hfn-single-blog-article .hfn-callout,
.hfn-single-blog-content-wrap .hfn-callout {
	display: flex !important;
	gap: 16px !important;
	background: rgba(20, 22, 28, 0.9) !important;
	border: 1px solid rgba(255, 255, 255, 0.1) !important;
	border-radius: 14px !important;
	padding: 20px 24px !important;
	margin: 32px 0 !important;
}

.hfn-single-blog-article .hfn-callout__icon,
.hfn-single-blog-content-wrap .hfn-callout__icon {
	color: #e5a93c !important;
	flex-shrink: 0 !important;
	margin-top: 2px !important;
}

.hfn-single-blog-article .hfn-callout__title,
.hfn-single-blog-content-wrap .hfn-callout__title {
	font-family: 'Outfit', sans-serif !important;
	font-size: 15.5px !important;
	font-weight: 700 !important;
	color: #ffffff !important;
	margin: 0 0 6px !important;
}

.hfn-single-blog-article .hfn-callout__text,
.hfn-single-blog-content-wrap .hfn-callout__text {
	font-size: 13.5px !important;
	line-height: 1.55 !important;
	color: #9da0ae !important;
	margin: 0 !important;
}

/* -------------------------------------------------------------------------- */
/* 8. Responsive Breakpoints                                                 */
/* -------------------------------------------------------------------------- */

@media (max-width: 900px) {
	.hfn-blog-featured-card {
		grid-template-columns: 1fr;
		max-height: none;
		min-height: auto;
	}

	.hfn-blog-featured-media {
		min-height: 240px;
		max-height: 260px;
		height: 240px;
	}

	.hfn-blog-featured-overlay {
		background: linear-gradient(180deg, rgba(17, 19, 24, 0) 30%, rgba(17, 19, 24, 0.95) 100%);
	}

	.hfn-blog-grid {
		grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
		gap: 24px;
	}
}

@media (max-width: 600px) {
	.hfn-blog-search-wrap {
		border-radius: 16px;
		flex-direction: column;
		padding: 12px;
		gap: 10px;
	}

	.hfn-blog-search-btn {
		width: 100%;
		justify-content: center;
	}

	.hfn-blog-categories {
		gap: 8px;
	}

	.hfn-blog-cat-btn {
		padding: 6px 14px;
		font-size: 12px;
	}

	.hfn-blog-grid {
		grid-template-columns: 1fr;
	}
}
