/* ============================================================
 * Blog y Post Single Premium · v4.9.0
 * Layout luxury editorial magazine boutique
 * ============================================================ */

/* ════════════════════════════════════════════════════════════
 * BLOG · HERO LUXURY
 * ════════════════════════════════════════════════════════════ */
.sm-blog-hero--luxury {
	position: relative;
	min-height: 50vh;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	padding: 100px 0 80px;
}

.sm-blog-hero--luxury .sm-blog-hero__bg {
	position: absolute;
	inset: 0;
	z-index: 0;
}

.sm-blog-hero--luxury .sm-blog-hero__bg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.sm-blog-hero--luxury .sm-blog-hero__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg,
		rgba(0, 7, 90, 0.55) 0%,
		rgba(0, 7, 90, 0.5) 50%,
		rgba(0, 7, 90, 0.7) 100%);
	z-index: 1;
}

.sm-blog-hero--luxury .sm-blog-hero__content {
	position: relative;
	z-index: 2;
	max-width: 880px;
	width: 100%;
	padding: 0 32px;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 18px;
}

.sm-blog-hero__eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 14px;
	font-family: 'Inter', system-ui, sans-serif;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.42em;
	text-transform: uppercase;
	color: #C9A44A;
	text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}

.sm-blog-hero__eyebrow-line {
	display: inline-block;
	width: 36px;
	height: 1px;
	background: #C9A44A;
	opacity: 0.7;
}

.sm-blog-hero--luxury .sm-blog-hero__title {
	font-family: 'Cormorant Garamond', Georgia, serif !important;
	font-size: clamp(44px, 6.5vw, 84px) !important;
	font-weight: 400 !important;
	line-height: 1.02 !important;
	color: #ffffff !important;
	margin: 0 !important;
	letter-spacing: -0.005em !important;
	text-shadow: 0 4px 28px rgba(0, 0, 0, 0.4);
}

.sm-blog-hero--luxury .sm-blog-hero__title em {
	font-style: italic;
	color: #C9A44A;
	font-weight: 400;
}

.sm-blog-hero__ornament {
	display: inline-flex;
	align-items: center;
	gap: 14px;
	margin: 4px 0;
}

.sm-blog-hero__ornament-line {
	display: inline-block;
	width: 56px;
	height: 1px;
	background: rgba(201, 164, 74, 0.6);
}

.sm-blog-hero__ornament-diamond {
	color: #C9A44A;
	font-size: 9px;
}

.sm-blog-hero--luxury .sm-blog-hero__sub {
	font-family: 'Cormorant Garamond', Georgia, serif !important;
	font-size: 20px !important;
	font-style: italic !important;
	color: rgba(255, 255, 255, 0.92) !important;
	line-height: 1.5 !important;
	max-width: 640px !important;
	margin: 0 !important;
	text-shadow: 0 2px 14px rgba(0, 0, 0, 0.45);
}

/* ════════════════════════════════════════════════════════════
 * BLOG · LISTADO con SIDEBAR
 * ════════════════════════════════════════════════════════════ */
.sm-blog-list {
	padding: 88px 0 110px;
	background: linear-gradient(180deg, #F8F5F2 0%, #F1EDE8 100%);
}

.sm-blog-list__inner {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 50px;
}

.sm-blog-list__layout {
	display: grid;
	grid-template-columns: 1fr 340px;
	gap: 64px;
	align-items: start;
}

/* ─── ENTRADA del blog (una bajo la otra) ─── */
.sm-blog-entry {
	background: #ffffff;
	border-radius: 4px;
	overflow: hidden;
	margin-bottom: 32px;
	box-shadow:
		0 2px 8px rgba(0, 7, 90, 0.05),
		0 16px 40px rgba(0, 7, 90, 0.08);
	transition: all 0.5s cubic-bezier(0.22, 0.61, 0.36, 1);
	position: relative;
}

.sm-blog-entry::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 2px;
	background: linear-gradient(90deg, transparent 0%, #C9A44A 50%, transparent 100%);
	transform: scaleX(0);
	transform-origin: center;
	transition: transform 0.5s cubic-bezier(0.22, 0.61, 0.36, 1);
	z-index: 3;
}

.sm-blog-entry:hover {
	transform: translateY(-4px);
	box-shadow:
		0 4px 12px rgba(0, 7, 90, 0.08),
		0 28px 64px rgba(0, 7, 90, 0.18),
		0 0 0 1px rgba(201, 164, 74, 0.25);
}

.sm-blog-entry:hover::before {
	transform: scaleX(1);
}

.sm-blog-entry__image {
	position: relative;
	display: block;
	aspect-ratio: 16 / 9;
	overflow: hidden;
	background: #F1EDE8;
}

.sm-blog-entry__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 1.4s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.sm-blog-entry:hover .sm-blog-entry__image img {
	transform: scale(1.06);
}

.sm-blog-entry__image-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, transparent 50%, rgba(0, 7, 90, 0.25) 100%);
	pointer-events: none;
}

.sm-blog-entry__badge {
	position: absolute;
	top: 18px;
	left: 18px;
	z-index: 2;
	background: linear-gradient(135deg, #C9A44A 0%, #B08A32 100%);
	color: #ffffff;
	padding: 7px 14px;
	font-family: 'Inter', system-ui, sans-serif;
	font-size: 9.5px;
	font-weight: 600;
	letter-spacing: 0.28em;
	border-radius: 2px;
	box-shadow: 0 6px 18px rgba(201, 164, 74, 0.4);
}

.sm-blog-entry__body {
	padding: 32px 36px 36px;
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.sm-blog-entry__meta {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-family: 'Inter', system-ui, sans-serif;
	font-size: 11px;
	font-weight: 500;
	letter-spacing: 0.04em;
	color: #6B7299;
}

.sm-blog-entry__date,
.sm-blog-entry__reading {
	font-family: 'Cormorant Garamond', Georgia, serif;
	font-size: 14px;
	font-style: italic;
	color: #6B7299;
}

.sm-blog-entry__meta-sep {
	color: #C9A44A;
	opacity: 0.6;
}

.sm-blog-entry__cat-link {
	font-family: 'Inter', system-ui, sans-serif;
	font-size: 10px;
	font-weight: 600;
	letter-spacing: 0.28em;
	color: #C9A44A;
	text-decoration: none;
}

.sm-blog-entry__title {
	font-family: 'Cormorant Garamond', Georgia, serif !important;
	font-size: clamp(26px, 3vw, 34px) !important;
	font-weight: 500 !important;
	line-height: 1.18 !important;
	margin: 0 !important;
	letter-spacing: 0.005em;
}

.sm-blog-entry__title a {
	color: #00075A !important;
	text-decoration: none !important;
	transition: color 0.3s ease;
}

.sm-blog-entry__title a:hover {
	color: #C9A44A !important;
}

.sm-blog-entry__rule {
	width: 48px;
	height: 1px;
	background: #C9A44A;
	margin: 4px 0;
	opacity: 0.7;
	transition: width 0.4s ease;
}

.sm-blog-entry:hover .sm-blog-entry__rule {
	width: 80px;
}

.sm-blog-entry__excerpt {
	font-family: 'Inter', system-ui, sans-serif;
	font-size: 15px;
	line-height: 1.75;
	color: #6B7299;
	margin: 0;
}

.sm-blog-entry__cta {
	display: inline-flex !important;
	align-items: center;
	gap: 10px;
	font-family: 'Inter', system-ui, sans-serif !important;
	font-size: 11px !important;
	font-weight: 600 !important;
	letter-spacing: 0.28em !important;
	text-transform: uppercase !important;
	color: #00075A !important;
	text-decoration: none !important;
	margin-top: 6px;
	width: fit-content;
	transition: all 0.3s ease;
}

.sm-blog-entry__cta:hover {
	gap: 16px;
	color: #C9A44A !important;
}

/* ─── PAGINACIÓN luxury ─── */
.sm-blog-pagination {
	margin-top: 32px;
	display: flex;
	justify-content: center;
}

.sm-blog-pagination .nav-links,
.sm-blog-pagination {
	display: flex;
	gap: 8px;
	align-items: center;
	flex-wrap: wrap;
}

.sm-blog-pagination a,
.sm-blog-pagination span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	min-width: 40px;
	height: 40px;
	padding: 0 14px;
	font-family: 'Inter', system-ui, sans-serif;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.06em;
	color: #00075A;
	background: #ffffff;
	border: 1px solid rgba(0, 7, 90, 0.12);
	border-radius: 2px;
	text-decoration: none;
	transition: all 0.3s ease;
}

.sm-blog-pagination a:hover {
	background: #00075A;
	color: #ffffff;
	border-color: #00075A;
}

.sm-blog-pagination .current {
	background: linear-gradient(135deg, #C9A44A 0%, #B08A32 100%);
	color: #ffffff;
	border-color: #C9A44A;
	box-shadow: 0 6px 18px rgba(201, 164, 74, 0.35);
}

.sm-blog-pagination .dots {
	background: transparent;
	border: 0;
	color: #C9A44A;
}

/* ─── EMPTY state ─── */
.sm-blog-empty {
	background: #ffffff;
	padding: 80px 40px;
	text-align: center;
	border-radius: 4px;
	border: 1px solid rgba(201, 164, 74, 0.2);
}

.sm-blog-empty__title {
	font-family: 'Cormorant Garamond', Georgia, serif !important;
	font-size: 36px !important;
	font-style: italic;
	color: #00075A !important;
	margin: 0 0 12px !important;
}

.sm-blog-empty__text {
	font-family: 'Inter', system-ui, sans-serif;
	color: #6B7299;
	margin: 0;
}

/* ════════════════════════════════════════════════════════════
 * BLOG · SIDEBAR
 * ════════════════════════════════════════════════════════════ */
.sm-blog-sidebar {
	position: sticky;
	top: 24px;
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.sm-blog-widget {
	background: #ffffff;
	padding: 28px 26px 30px;
	border-radius: 4px;
	box-shadow:
		0 1px 4px rgba(0, 7, 90, 0.04),
		0 12px 32px rgba(0, 7, 90, 0.08);
	position: relative;
	border: 1px solid rgba(201, 164, 74, 0.18);
}

.sm-blog-widget__eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	font-family: 'Inter', system-ui, sans-serif;
	font-size: 10px;
	font-weight: 600;
	letter-spacing: 0.36em;
	text-transform: uppercase;
	color: #C9A44A;
}

.sm-blog-widget__eyebrow-line {
	display: inline-block;
	width: 22px;
	height: 1px;
	background: #C9A44A;
	opacity: 0.55;
}

.sm-blog-widget__title {
	font-family: 'Cormorant Garamond', Georgia, serif !important;
	font-size: 24px !important;
	font-weight: 500 !important;
	font-style: italic !important;
	color: #00075A !important;
	margin: 10px 0 0 !important;
	letter-spacing: 0.005em;
}

.sm-blog-widget__rule {
	width: 36px;
	height: 1px;
	background: #C9A44A;
	opacity: 0.6;
	margin: 12px 0 16px;
}

.sm-blog-widget__text {
	font-family: 'Inter', system-ui, sans-serif;
	font-size: 13.5px;
	line-height: 1.65;
	color: #6B7299;
	margin: 0 0 18px;
}

/* WIDGET · Habitaciones · variante azul marino */
.sm-blog-widget--rooms {
	background:
		radial-gradient(ellipse at top right, rgba(201, 164, 74, 0.12) 0%, transparent 60%),
		linear-gradient(180deg, #00075A 0%, #000741 100%);
	border-color: rgba(201, 164, 74, 0.35);
	color: #F8F5F2;
}

.sm-blog-widget--rooms .sm-blog-widget__eyebrow {
	color: #C9A44A;
}

.sm-blog-widget--rooms .sm-blog-widget__title {
	color: #ffffff !important;
}

.sm-blog-widget--rooms .sm-blog-widget__text {
	color: rgba(248, 245, 242, 0.78);
}

.sm-blog-widget__btn {
	display: inline-flex !important;
	align-items: center;
	gap: 10px;
	padding: 12px 22px !important;
	background: linear-gradient(135deg, #C9A44A 0%, #B08A32 100%) !important;
	color: #ffffff !important;
	font-family: 'Inter', system-ui, sans-serif !important;
	font-size: 10.5px !important;
	font-weight: 600 !important;
	letter-spacing: 0.28em !important;
	text-transform: uppercase !important;
	border-radius: 2px !important;
	text-decoration: none !important;
	box-shadow: 0 8px 20px rgba(201, 164, 74, 0.35);
	transition: all 0.35s ease;
	width: fit-content;
}

.sm-blog-widget__btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 12px 28px rgba(201, 164, 74, 0.5);
}

/* WIDGET · Lectura reciente */
.sm-blog-widget__recent-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.sm-blog-widget__recent-item {
	display: flex;
	gap: 14px;
	align-items: flex-start;
	text-decoration: none;
	color: inherit;
	padding-bottom: 14px;
	border-bottom: 1px solid rgba(0, 7, 90, 0.08);
}

.sm-blog-widget__recent-list li:last-child .sm-blog-widget__recent-item {
	padding-bottom: 0;
	border-bottom: 0;
}

.sm-blog-widget__recent-thumb {
	flex-shrink: 0;
	width: 72px;
	height: 72px;
	border-radius: 3px;
	overflow: hidden;
	background: #F1EDE8;
}

.sm-blog-widget__recent-thumb--placeholder {
	background: linear-gradient(135deg, rgba(201, 164, 74, 0.15) 0%, rgba(0, 7, 90, 0.08) 100%);
}

.sm-blog-widget__recent-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.8s ease;
}

.sm-blog-widget__recent-item:hover .sm-blog-widget__recent-thumb img {
	transform: scale(1.08);
}

.sm-blog-widget__recent-text {
	display: flex;
	flex-direction: column;
	gap: 4px;
	min-width: 0;
	flex: 1;
}

.sm-blog-widget__recent-date {
	font-family: 'Inter', system-ui, sans-serif;
	font-size: 9.5px;
	font-weight: 600;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: #C9A44A;
}

.sm-blog-widget__recent-title {
	font-family: 'Cormorant Garamond', Georgia, serif;
	font-size: 15px;
	line-height: 1.3;
	color: #00075A;
	font-weight: 500;
	letter-spacing: 0.005em;
	transition: color 0.3s ease;
}

.sm-blog-widget__recent-item:hover .sm-blog-widget__recent-title {
	color: #C9A44A;
}

/* WIDGET · Áreas de interés */
.sm-blog-widget__links {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.sm-blog-widget__links a {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 11px 12px;
	font-family: 'Inter', system-ui, sans-serif;
	font-size: 13px;
	font-weight: 500;
	color: #00075A;
	text-decoration: none;
	border-radius: 2px;
	transition: all 0.3s ease;
	border: 1px solid transparent;
}

.sm-blog-widget__links a > span:not(.sm-blog-widget__links-arrow) {
	flex: 1;
}

.sm-blog-widget__links a > svg:first-child {
	color: #C9A44A;
	flex-shrink: 0;
}

.sm-blog-widget__links-arrow {
	color: rgba(0, 7, 90, 0.3);
	transition: transform 0.3s ease, color 0.3s ease;
}

.sm-blog-widget__links a:hover {
	background: rgba(201, 164, 74, 0.08);
	border-color: rgba(201, 164, 74, 0.2);
	color: #C9A44A;
}

.sm-blog-widget__links a:hover .sm-blog-widget__links-arrow {
	color: #C9A44A;
	transform: translateX(4px);
}

/* WIDGET · Categorías */
.sm-blog-widget__cats {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.sm-blog-widget__cats a {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 10px 4px;
	font-family: 'Cormorant Garamond', Georgia, serif;
	font-size: 16px;
	font-style: italic;
	color: #00075A;
	text-decoration: none;
	border-bottom: 1px dashed rgba(201, 164, 74, 0.25);
	transition: all 0.3s ease;
}

.sm-blog-widget__cats li:last-child a {
	border-bottom: 0;
}

.sm-blog-widget__cats a:hover {
	color: #C9A44A;
	padding-left: 10px;
}

.sm-blog-widget__cats-count {
	font-family: 'Inter', system-ui, sans-serif;
	font-size: 10px;
	font-weight: 600;
	letter-spacing: 0.1em;
	color: #C9A44A;
	background: rgba(201, 164, 74, 0.1);
	padding: 3px 9px;
	border-radius: 100px;
	font-style: normal;
	min-width: 28px;
	text-align: center;
}

/* ════════════════════════════════════════════════════════════
 * POST SINGLE · luxury magazine layout
 * ════════════════════════════════════════════════════════════ */
.sm-post-single {
	background: var(--sm-bg, #F8F5F2);
}

/* HEADER del post · sobre fondo crema, no full-bleed */
.sm-post-single__header {
	padding: 88px 0 56px;
	background: linear-gradient(180deg, #F8F5F2 0%, #F1EDE8 100%);
	border-bottom: 1px solid rgba(201, 164, 74, 0.18);
	position: relative;
}

.sm-post-single__header::before,
.sm-post-single__header::after {
	content: '';
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	width: 80px;
	height: 1px;
	background: linear-gradient(90deg, transparent 0%, #C9A44A 50%, transparent 100%);
	opacity: 0.45;
}

.sm-post-single__header::before { top: 32px; }
.sm-post-single__header::after { bottom: 0; }

.sm-post-single__header-inner {
	max-width: 1120px;
	margin: 0 auto;
	padding: 0 50px;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 18px;
}

.sm-post-single__crumbs {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-family: 'Inter', system-ui, sans-serif;
	font-size: 10.5px;
	font-weight: 500;
	letter-spacing: 0.24em;
	text-transform: uppercase;
	color: #6B7299;
}

.sm-post-single__crumbs a {
	color: #00075A;
	text-decoration: none;
	transition: color 0.3s ease;
}

.sm-post-single__crumbs a:hover {
	color: #C9A44A;
}

.sm-post-single__crumbs span[aria-hidden] {
	color: #C9A44A;
}

.sm-post-single__category {
	display: inline-flex;
	align-items: center;
	gap: 14px;
	font-family: 'Inter', system-ui, sans-serif;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.42em;
	text-transform: uppercase;
	color: #C9A44A;
	margin-top: 8px;
}

.sm-post-single__category-line {
	display: inline-block;
	width: 32px;
	height: 1px;
	background: #C9A44A;
	opacity: 0.6;
}

.sm-post-single__title {
	font-family: 'Cormorant Garamond', Georgia, serif !important;
	font-size: clamp(38px, 5.5vw, 64px) !important;
	font-weight: 400 !important;
	line-height: 1.08 !important;
	color: #00075A !important;
	margin: 0 !important;
	letter-spacing: -0.005em !important;
	max-width: 920px;
}

.sm-post-single__excerpt {
	font-family: 'Cormorant Garamond', Georgia, serif !important;
	font-size: 22px !important;
	font-style: italic !important;
	font-weight: 400 !important;
	color: rgba(0, 7, 90, 0.7) !important;
	line-height: 1.5 !important;
	margin: 4px 0 0 !important;
	max-width: 760px;
	letter-spacing: 0.005em;
}

.sm-post-single__meta {
	display: inline-flex;
	align-items: center;
	gap: 16px;
	flex-wrap: wrap;
	justify-content: center;
	margin-top: 8px;
	padding: 14px 24px;
	background: rgba(255, 255, 255, 0.6);
	backdrop-filter: blur(8px);
	border: 1px solid rgba(201, 164, 74, 0.25);
	border-radius: 100px;
}

.sm-post-single__meta-item {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-family: 'Inter', system-ui, sans-serif;
	font-size: 13px;
	color: #1F2B6E;
}

.sm-post-single__meta-item svg {
	color: #C9A44A;
}

.sm-post-single__meta-avatar {
	display: inline-block;
	width: 28px;
	height: 28px;
	border-radius: 50%;
	overflow: hidden;
	border: 2px solid rgba(201, 164, 74, 0.4);
}

.sm-post-single__meta-avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.sm-post-single__meta-text {
	display: inline-flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 0;
	line-height: 1.1;
}

.sm-post-single__meta-label {
	font-family: 'Inter', system-ui, sans-serif;
	font-size: 8.5px;
	font-weight: 600;
	letter-spacing: 0.3em;
	text-transform: uppercase;
	color: #C9A44A;
}

.sm-post-single__meta-value {
	font-family: 'Cormorant Garamond', Georgia, serif;
	font-size: 14px;
	font-style: italic;
	color: #00075A;
}

.sm-post-single__meta-divider {
	width: 1px;
	height: 22px;
	background: rgba(201, 164, 74, 0.4);
}

/* ─── LAYOUT 2 columnas ─── */
.sm-post-single__layout {
	max-width: 1280px;
	margin: 0 auto;
	padding: 72px 50px 80px;
	display: grid;
	grid-template-columns: 1fr 380px;
	gap: 64px;
	align-items: start;
}

/* ─── COLUMNA principal · contenido ─── */
.sm-post-single__main {
	min-width: 0;
}

.sm-post-single__content {
	font-family: 'Inter', system-ui, sans-serif;
	font-size: 16.5px;
	line-height: 1.85;
	color: #1F2B6E;
}

/* Drop cap */
.sm-post-single__content > p:first-of-type::first-letter {
	font-family: 'Cormorant Garamond', Georgia, serif;
	font-size: 76px;
	font-style: italic;
	font-weight: 500;
	color: #C9A44A;
	float: left;
	line-height: 0.85;
	padding: 8px 14px 0 0;
	margin-top: 4px;
}

.sm-post-single__content p {
	margin: 0 0 22px;
	color: #1F2B6E;
}

.sm-post-single__content h2 {
	font-family: 'Cormorant Garamond', Georgia, serif !important;
	font-size: clamp(26px, 3vw, 32px) !important;
	font-weight: 500 !important;
	font-style: italic !important;
	color: #00075A !important;
	line-height: 1.2 !important;
	margin: 40px 0 16px !important;
}

.sm-post-single__content h3 {
	font-family: 'Cormorant Garamond', Georgia, serif !important;
	font-size: 22px !important;
	font-weight: 500 !important;
	color: #00075A !important;
	margin: 32px 0 12px !important;
}

.sm-post-single__content h4 {
	font-family: 'Inter', system-ui, sans-serif !important;
	font-size: 12.5px !important;
	font-weight: 600 !important;
	letter-spacing: 0.22em !important;
	text-transform: uppercase !important;
	color: #C9A44A !important;
	margin: 28px 0 10px !important;
}

.sm-post-single__content blockquote {
	font-family: 'Cormorant Garamond', Georgia, serif;
	font-size: 22px;
	font-style: italic;
	color: #00075A;
	line-height: 1.45;
	margin: 32px 0;
	padding: 26px 32px;
	border-left: 3px solid #C9A44A;
	background: linear-gradient(90deg, rgba(201, 164, 74, 0.05) 0%, transparent 100%);
	position: relative;
}

.sm-post-single__content blockquote::before {
	content: '"';
	position: absolute;
	top: 8px;
	left: 22px;
	font-family: 'Cormorant Garamond', Georgia, serif;
	font-size: 72px;
	color: rgba(201, 164, 74, 0.2);
	line-height: 0.8;
	pointer-events: none;
}

.sm-post-single__content blockquote p:last-child {
	margin-bottom: 0;
}

.sm-post-single__content a {
	color: #C9A44A;
	text-decoration: none;
	border-bottom: 1px solid rgba(201, 164, 74, 0.35);
	transition: border-color 0.3s ease;
}

.sm-post-single__content a:hover {
	border-bottom-color: #C9A44A;
}

.sm-post-single__content strong {
	color: #00075A;
	font-weight: 600;
}

.sm-post-single__content ul,
.sm-post-single__content ol {
	margin: 0 0 22px;
	padding-left: 22px;
}

.sm-post-single__content li {
	margin-bottom: 10px;
	line-height: 1.75;
}

.sm-post-single__content ul li::marker {
	color: #C9A44A;
}

.sm-post-single__content img,
.sm-post-single__content figure {
	margin: 28px 0;
	max-width: 100%;
	border-radius: 2px;
	box-shadow: 0 12px 32px rgba(0, 7, 90, 0.12);
	height: auto;
}

.sm-post-single__content figcaption {
	font-family: 'Cormorant Garamond', Georgia, serif;
	font-size: 13.5px;
	font-style: italic;
	color: #6B7299;
	text-align: center;
	margin: 10px 0 0;
}

.sm-post-single__content hr {
	border: 0;
	height: 1px;
	background: linear-gradient(90deg, transparent 0%, rgba(201, 164, 74, 0.4) 50%, transparent 100%);
	margin: 40px 0;
}

/* ═══ TAGS ═══ */
.sm-post-single__tags {
	display: flex;
	align-items: center;
	gap: 14px;
	flex-wrap: wrap;
	padding-top: 28px;
	margin-top: 40px;
	border-top: 1px solid rgba(0, 7, 90, 0.08);
}

.sm-post-single__tags-label {
	font-family: 'Inter', system-ui, sans-serif;
	font-size: 10px;
	font-weight: 600;
	letter-spacing: 0.32em;
	text-transform: uppercase;
	color: #C9A44A;
}

.sm-post-single__tags-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.sm-post-single__tags-list a {
	display: inline-flex;
	align-items: center;
	padding: 6px 13px;
	background: rgba(0, 7, 90, 0.04);
	border: 1px solid rgba(0, 7, 90, 0.1);
	color: #00075A;
	font-family: 'Inter', system-ui, sans-serif;
	font-size: 11px;
	font-weight: 500;
	text-decoration: none;
	border-radius: 100px;
	transition: all 0.3s ease;
}

.sm-post-single__tags-list a:hover {
	background: #C9A44A;
	color: #ffffff;
	border-color: #C9A44A;
}

/* ═══ COMPARTIR ═══ */
.sm-post-single__share {
	display: flex;
	align-items: center;
	gap: 18px;
	padding: 24px 0;
	margin-top: 20px;
	border-top: 1px solid rgba(0, 7, 90, 0.08);
	border-bottom: 1px solid rgba(0, 7, 90, 0.08);
}

.sm-post-single__share-label {
	font-family: 'Inter', system-ui, sans-serif;
	font-size: 10px;
	font-weight: 600;
	letter-spacing: 0.32em;
	text-transform: uppercase;
	color: #C9A44A;
}

.sm-post-single__share-line {
	flex: 1;
	height: 1px;
	background: linear-gradient(90deg, rgba(201, 164, 74, 0.3) 0%, transparent 100%);
	max-width: 80px;
}

.sm-post-single__share-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	gap: 10px;
}

.sm-post-single__share-list a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	background: transparent;
	border: 1px solid rgba(0, 7, 90, 0.16);
	color: #00075A;
	border-radius: 50%;
	text-decoration: none;
	transition: all 0.3s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.sm-post-single__share-list a:hover {
	background: #C9A44A;
	color: #ffffff;
	border-color: #C9A44A;
	transform: translateY(-2px);
	box-shadow: 0 8px 18px rgba(201, 164, 74, 0.35);
}

/* ═══ AUTOR BIO ═══ */
.sm-post-single__author {
	display: grid;
	grid-template-columns: 100px 1fr;
	gap: 24px;
	align-items: start;
	margin-top: 48px;
	padding: 32px;
	background: linear-gradient(135deg, rgba(201, 164, 74, 0.06) 0%, rgba(255, 255, 255, 0.5) 100%);
	border: 1px solid rgba(201, 164, 74, 0.22);
	border-radius: 4px;
	position: relative;
}

.sm-post-single__author::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 2px;
	background: linear-gradient(90deg, transparent 0%, #C9A44A 50%, transparent 100%);
}

.sm-post-single__author-avatar {
	width: 100px;
	height: 100px;
	border-radius: 50%;
	overflow: hidden;
	border: 2px solid rgba(201, 164, 74, 0.4);
	box-shadow: 0 8px 20px rgba(0, 7, 90, 0.1);
}

.sm-post-single__author-avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.sm-post-single__author-label {
	font-family: 'Inter', system-ui, sans-serif;
	font-size: 10px;
	font-weight: 600;
	letter-spacing: 0.32em;
	text-transform: uppercase;
	color: #C9A44A;
	display: block;
	margin-bottom: 6px;
}

.sm-post-single__author-name {
	font-family: 'Cormorant Garamond', Georgia, serif !important;
	font-size: 26px !important;
	font-weight: 500 !important;
	font-style: italic !important;
	color: #00075A !important;
	margin: 0 !important;
}

.sm-post-single__author-rule {
	width: 32px;
	height: 1px;
	background: #C9A44A;
	margin: 10px 0 12px;
	opacity: 0.7;
}

.sm-post-single__author-bio {
	font-family: 'Inter', system-ui, sans-serif;
	font-size: 13.5px;
	color: #6B7299;
	line-height: 1.7;
	margin: 0;
}

/* ─── COLUMNA DERECHA · featured image + CTA ─── */
.sm-post-single__side {
	position: sticky;
	top: 24px;
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.sm-post-single__featured {
	margin: 0;
	position: relative;
	border-radius: 4px;
	overflow: hidden;
	box-shadow:
		0 4px 16px rgba(0, 7, 90, 0.1),
		0 24px 56px rgba(0, 7, 90, 0.18);
	border: 1px solid rgba(201, 164, 74, 0.2);
}

.sm-post-single__featured img {
	width: 100%;
	height: auto;
	display: block;
}

.sm-post-single__featured-caption {
	position: absolute;
	bottom: 16px;
	left: 16px;
	background: linear-gradient(135deg, #C9A44A 0%, #B08A32 100%);
	color: #ffffff;
	padding: 7px 14px;
	font-family: 'Inter', system-ui, sans-serif;
	font-size: 9.5px;
	font-weight: 600;
	letter-spacing: 0.28em;
	border-radius: 2px;
	box-shadow: 0 6px 18px rgba(201, 164, 74, 0.4);
}

/* CTA box azul marino */
.sm-post-single__cta-box {
	background:
		radial-gradient(ellipse at top right, rgba(201, 164, 74, 0.12) 0%, transparent 60%),
		linear-gradient(180deg, #00075A 0%, #000741 100%);
	border: 1px solid rgba(201, 164, 74, 0.35);
	padding: 30px 28px;
	border-radius: 4px;
	display: flex;
	flex-direction: column;
	gap: 12px;
	color: #F8F5F2;
	position: relative;
	overflow: hidden;
}

.sm-post-single__cta-box::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 2px;
	background: linear-gradient(90deg, transparent 0%, #C9A44A 50%, transparent 100%);
}

.sm-post-single__cta-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	font-family: 'Inter', system-ui, sans-serif;
	font-size: 10px;
	font-weight: 600;
	letter-spacing: 0.36em;
	color: #C9A44A;
}

.sm-post-single__cta-eyebrow-line {
	display: inline-block;
	width: 22px;
	height: 1px;
	background: #C9A44A;
	opacity: 0.6;
}

.sm-post-single__cta-title {
	font-family: 'Cormorant Garamond', Georgia, serif !important;
	font-size: 26px !important;
	font-weight: 500 !important;
	font-style: italic !important;
	color: #ffffff !important;
	margin: 4px 0 0 !important;
}

.sm-post-single__cta-rule {
	width: 32px;
	height: 1px;
	background: #C9A44A;
	margin: 8px 0 6px;
	opacity: 0.7;
}

.sm-post-single__cta-text {
	font-family: 'Inter', system-ui, sans-serif;
	font-size: 13.5px;
	line-height: 1.7;
	color: rgba(248, 245, 242, 0.8);
	margin: 0 0 8px;
}

.sm-post-single__cta-btn {
	display: inline-flex !important;
	align-items: center;
	gap: 10px;
	padding: 13px 22px !important;
	background: linear-gradient(135deg, #C9A44A 0%, #B08A32 100%) !important;
	color: #ffffff !important;
	font-family: 'Inter', system-ui, sans-serif !important;
	font-size: 10.5px !important;
	font-weight: 600 !important;
	letter-spacing: 0.28em !important;
	text-transform: uppercase !important;
	border-radius: 2px !important;
	text-decoration: none !important;
	box-shadow: 0 8px 20px rgba(201, 164, 74, 0.4);
	transition: all 0.35s ease;
	width: fit-content;
}

.sm-post-single__cta-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 14px 30px rgba(201, 164, 74, 0.55);
}

/* ═══ RELACIONADOS ═══ */
.sm-post-single__related {
	padding: 88px 0 110px;
	background:
		radial-gradient(ellipse at top, rgba(201, 164, 74, 0.05) 0%, transparent 50%),
		linear-gradient(180deg, #F8F5F2 0%, #F1EDE8 100%);
	position: relative;
	border-top: 1px solid rgba(201, 164, 74, 0.2);
}

.sm-post-single__related::before,
.sm-post-single__related::after {
	content: '';
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	width: 80px;
	height: 1px;
	background: linear-gradient(90deg, transparent 0%, #C9A44A 50%, transparent 100%);
	opacity: 0.4;
}

.sm-post-single__related::before { top: 50px; }
.sm-post-single__related::after { bottom: 50px; }

.sm-post-single__related-inner {
	max-width: 1320px;
	margin: 0 auto;
	padding: 0 50px;
}

.sm-post-single__related-header {
	text-align: center;
	max-width: 720px;
	margin: 0 auto 56px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 18px;
}

.sm-post-single__related-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 14px;
	font-family: 'Inter', system-ui, sans-serif;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.42em;
	text-transform: uppercase;
	color: #C9A44A;
}

.sm-post-single__related-eyebrow-line {
	display: inline-block;
	width: 36px;
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(201, 164, 74, 0.7) 50%, transparent);
}

.sm-post-single__related-title {
	font-family: 'Cormorant Garamond', Georgia, serif !important;
	font-size: clamp(34px, 4.5vw, 52px) !important;
	font-weight: 400 !important;
	font-style: italic !important;
	color: #00075A !important;
	margin: 0 !important;
}

.sm-post-single__related-ornament {
	display: inline-flex;
	align-items: center;
	gap: 14px;
}

.sm-post-single__related-ornament-line {
	display: inline-block;
	width: 56px;
	height: 1px;
	background: rgba(201, 164, 74, 0.5);
}

.sm-post-single__related-ornament-diamond {
	color: #C9A44A;
	font-size: 8px;
}

.sm-post-single__related-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 28px;
}

.sm-post-related-card {
	background: #ffffff;
	border-radius: 4px;
	overflow: hidden;
	transition: all 0.55s cubic-bezier(0.22, 0.61, 0.36, 1);
	box-shadow:
		0 2px 8px rgba(0, 7, 90, 0.06),
		0 16px 40px rgba(0, 7, 90, 0.1);
	position: relative;
}

.sm-post-related-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 2px;
	background: linear-gradient(90deg, transparent 0%, #C9A44A 50%, transparent 100%);
	transform: scaleX(0);
	transform-origin: center;
	transition: transform 0.5s cubic-bezier(0.22, 0.61, 0.36, 1);
	z-index: 5;
}

.sm-post-related-card:hover {
	transform: translateY(-8px);
	box-shadow:
		0 4px 12px rgba(0, 7, 90, 0.08),
		0 32px 72px rgba(0, 7, 90, 0.2),
		0 0 0 1px rgba(201, 164, 74, 0.3);
}

.sm-post-related-card:hover::before {
	transform: scaleX(1);
}

.sm-post-related-card__link {
	display: block;
	text-decoration: none;
	color: inherit;
}

.sm-post-related-card__image {
	position: relative;
	aspect-ratio: 4 / 3;
	overflow: hidden;
	background: #F1EDE8;
}

.sm-post-related-card__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 1.4s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.sm-post-related-card:hover .sm-post-related-card__image img {
	transform: scale(1.06);
}

.sm-post-related-card__image-placeholder {
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, rgba(201, 164, 74, 0.15) 0%, rgba(0, 7, 90, 0.08) 100%);
}

.sm-post-related-card__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, transparent 50%, rgba(0, 7, 90, 0.18) 100%);
	pointer-events: none;
}

.sm-post-related-card__body {
	padding: 24px 26px 28px;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.sm-post-related-card__category {
	font-family: 'Inter', system-ui, sans-serif;
	font-size: 10px;
	font-weight: 600;
	letter-spacing: 0.32em;
	color: #C9A44A;
}

.sm-post-related-card__title {
	font-family: 'Cormorant Garamond', Georgia, serif !important;
	font-size: 22px !important;
	font-weight: 500 !important;
	color: #00075A !important;
	line-height: 1.25 !important;
	margin: 0 !important;
}

.sm-post-related-card__rule {
	width: 36px;
	height: 1px;
	background: #C9A44A;
	margin: 2px 0;
	opacity: 0.7;
	transition: width 0.4s ease;
}

.sm-post-related-card:hover .sm-post-related-card__rule {
	width: 60px;
}

.sm-post-related-card__meta {
	font-family: 'Cormorant Garamond', Georgia, serif;
	font-size: 13px;
	font-style: italic;
	color: #6B7299;
}

.sm-post-related-card__cta {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-family: 'Inter', system-ui, sans-serif;
	font-size: 10.5px;
	font-weight: 600;
	letter-spacing: 0.24em;
	text-transform: uppercase;
	color: #00075A;
	margin-top: 6px;
	transition: gap 0.3s ease, color 0.3s ease;
}

.sm-post-related-card:hover .sm-post-related-card__cta {
	color: #C9A44A;
	gap: 14px;
}

/* ════════════════════════════════════════════════════════════
 * RESPONSIVE
 * ════════════════════════════════════════════════════════════ */
@media (max-width: 1100px) {
	/* Blog */
	.sm-blog-list { padding: 64px 0 88px; }
	.sm-blog-list__inner { padding: 0 32px; }
	.sm-blog-list__layout {
		grid-template-columns: 1fr;
		gap: 48px;
	}
	.sm-blog-sidebar { position: static; }
	.sm-blog-entry__body { padding: 28px 28px 32px; }
	.sm-blog-hero--luxury { min-height: 44vh; padding: 80px 0 64px; }

	/* Post Single */
	.sm-post-single__header { padding: 64px 0 48px; }
	.sm-post-single__header-inner { padding: 0 32px; }
	.sm-post-single__layout {
		grid-template-columns: 1fr;
		gap: 40px;
		padding: 56px 32px 64px;
	}
	.sm-post-single__side {
		position: static;
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 20px;
	}
	.sm-post-single__related { padding: 72px 0 88px; }
	.sm-post-single__related-inner { padding: 0 32px; }
	.sm-post-single__related-grid {
		grid-template-columns: 1fr 1fr;
	}
	.sm-post-single__related-grid > article:nth-child(3) {
		grid-column: 1 / -1;
		max-width: 480px;
		justify-self: center;
	}
}

@media (max-width: 760px) {
	/* Blog */
	.sm-blog-hero--luxury { min-height: 38vh; padding: 60px 0 48px; }
	.sm-blog-hero--luxury .sm-blog-hero__content { padding: 0 20px; }
	.sm-blog-hero--luxury .sm-blog-hero__title { font-size: 38px !important; }
	.sm-blog-hero--luxury .sm-blog-hero__sub { font-size: 16px !important; }

	.sm-blog-list { padding: 48px 0 64px; }
	.sm-blog-list__inner { padding: 0 16px; }
	.sm-blog-list__layout { gap: 32px; }
	.sm-blog-entry { margin-bottom: 24px; }
	.sm-blog-entry__body { padding: 22px 22px 26px; gap: 10px; }
	.sm-blog-entry__title { font-size: 22px !important; }

	.sm-blog-pagination a,
	.sm-blog-pagination span {
		min-width: 36px;
		height: 36px;
		padding: 0 10px;
		font-size: 11px;
	}

	.sm-blog-widget { padding: 24px 22px; }
	.sm-blog-widget__title { font-size: 22px !important; }

	/* Post Single */
	.sm-post-single__header { padding: 48px 0 36px; }
	.sm-post-single__header-inner { padding: 0 20px; gap: 14px; }
	.sm-post-single__title { font-size: 30px !important; }
	.sm-post-single__excerpt { font-size: 17px !important; }
	.sm-post-single__crumbs { font-size: 9px; letter-spacing: 0.18em; gap: 6px; }
	.sm-post-single__meta {
		gap: 10px;
		padding: 12px 18px;
		flex-direction: column;
		border-radius: 16px;
	}
	.sm-post-single__meta-divider { display: none; }

	.sm-post-single__layout {
		padding: 40px 20px 48px;
		gap: 32px;
	}
	.sm-post-single__side {
		grid-template-columns: 1fr;
		gap: 18px;
	}
	.sm-post-single__content { font-size: 16px; line-height: 1.8; }
	.sm-post-single__content > p:first-of-type::first-letter { font-size: 56px; }
	.sm-post-single__content blockquote {
		margin: 24px 0;
		padding: 22px;
		font-size: 19px;
	}

	.sm-post-single__share { flex-wrap: wrap; gap: 12px; }
	.sm-post-single__share-line { display: none; }
	.sm-post-single__share-list a { width: 34px; height: 34px; }

	.sm-post-single__author {
		grid-template-columns: 1fr;
		gap: 16px;
		padding: 24px 20px;
		text-align: center;
		justify-items: center;
	}
	.sm-post-single__author-avatar { width: 80px; height: 80px; }
	.sm-post-single__author-rule { margin: 10px auto 12px; }
	.sm-post-single__author-name { font-size: 22px !important; }

	.sm-post-single__cta-box { padding: 24px 22px; }
	.sm-post-single__cta-title { font-size: 22px !important; }

	.sm-post-single__related { padding: 56px 0 72px; }
	.sm-post-single__related-inner { padding: 0 16px; }
	.sm-post-single__related-header { margin-bottom: 40px; }
	.sm-post-single__related-title { font-size: 28px !important; }
	.sm-post-single__related-grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}
	.sm-post-single__related-grid > article:nth-child(3) {
		grid-column: auto;
		max-width: 100%;
	}
}
