/* ==========================================================================
   HOY MÉXICO — Sistema de diseño editorial
   Paleta: negro tinta / blanco / naranja agencia
   ========================================================================== */

:root {
	--hm-orange: #f7941d;
	--hm-orange-dark: #d97c0e;
	--hm-ink: #101010;
	--hm-ink-2: #1c1c1c;
	--hm-bg: #efefef;
	--hm-card: #ffffff;
	--hm-text: #161616;
	--hm-muted: #6e6e6e;
	--hm-line: #e2e2e2;
	--hm-radius: 6px;
	--hm-font: "Archivo", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	--hm-shadow: 0 1px 3px rgba(0, 0, 0, .08);
	--hm-shadow-lg: 0 8px 30px rgba(0, 0, 0, .18);
}

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
	margin: 0;
	font-family: var(--hm-font);
	background: var(--hm-bg);
	color: var(--hm-text);
	font-size: 16px;
	line-height: 1.55;
}

img { max-width: 100%; height: auto; display: block; }

a { color: inherit; text-decoration: none; }
a:hover { color: var(--hm-orange-dark); }

h1, h2, h3, h4 { margin: 0 0 .5em; line-height: 1.15; font-weight: 800; letter-spacing: -.01em; }

.hm-container {
	max-width: 1240px;
	margin: 0 auto;
	padding: 0 16px;
}

.hm-skip {
	position: absolute;
	left: -9999px;
	top: 0;
	background: var(--hm-orange);
	color: #111;
	padding: 10px 16px;
	font-weight: 700;
	z-index: 999;
}
.hm-skip:focus { left: 8px; top: 8px; }

svg { width: 1.25em; height: 1.25em; vertical-align: middle; }

.hm-btn {
	display: inline-block;
	background: var(--hm-orange);
	color: #141414 !important;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: .04em;
	font-size: 13px;
	padding: 12px 22px;
	border: 0;
	border-radius: 4px;
	cursor: pointer;
}
.hm-btn:hover { background: var(--hm-orange-dark); color: #fff !important; }

/* --------------------------------------------------------------------------
   Header
   -------------------------------------------------------------------------- */

.hm-header { background: var(--hm-ink); position: relative; z-index: 60; }

.hm-header__bar { background: var(--hm-ink); color: #fff; }

.hm-header__inner {
	display: flex;
	align-items: center;
	gap: 20px;
	height: 64px;
}

.hm-logo { display: flex; flex-direction: column; line-height: 1; color: #fff; }
.hm-logo:hover { color: #fff; }
.hm-logo__word { font-size: 26px; font-weight: 900; letter-spacing: -.02em; display: flex; align-items: baseline; gap: 7px; }
.hm-logo__hoy { color: #fff; }
.hm-logo__mx { color: var(--hm-orange); }
.hm-logo__tag {
	font-size: 10px;
	font-weight: 600;
	letter-spacing: .18em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, .55);
	margin-top: 4px;
}
.hm-logo img { max-height: 48px; width: auto; }

.hm-header__date {
	margin-left: auto;
	font-size: 12px;
	font-weight: 500;
	color: rgba(255, 255, 255, .55);
	text-transform: capitalize;
	white-space: nowrap;
}

.hm-header__actions { display: flex; align-items: center; gap: 14px; margin-left: auto; }
.hm-header__date + .hm-header__actions { margin-left: 0; }

.hm-searchbtn, .hm-burger {
	background: transparent;
	border: 0;
	color: #fff;
	cursor: pointer;
	padding: 6px;
	display: inline-flex;
	border-radius: 4px;
}
.hm-searchbtn:hover, .hm-burger:hover { color: var(--hm-orange); }
.hm-searchbtn svg, .hm-burger svg { width: 20px; height: 20px; }

.hm-burger { display: none; }

/* Pestañas naranja de secciones */

.hm-tabs { background: var(--hm-bg); border-bottom: 1px solid var(--hm-line); }

.hm-tabs__list {
	display: flex;
	gap: 8px;
	list-style: none;
	margin: 0;
	padding: 12px 0;
	overflow-x: auto;
	scrollbar-width: thin;
}

.hm-tabs__list li { flex: 0 0 auto; }

.hm-tabs__list a {
	display: block;
	background: var(--hm-orange);
	color: #161616;
	font-size: 12px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: .05em;
	padding: 8px 16px;
	border-radius: 4px;
	transition: background .15s ease, color .15s ease;
	white-space: nowrap;
}
.hm-tabs__list a:hover,
.hm-tabs__list .current-menu-item > a,
.hm-tabs__list .current-category-ancestor > a {
	background: var(--hm-ink);
	color: #fff;
}

/* Buscador desplegable */

.hm-searchbar { background: var(--hm-ink-2); padding: 14px 0; border-top: 1px solid rgba(255, 255, 255, .08); }

.hm-searchform { display: flex; gap: 8px; max-width: 640px; margin: 0 auto; }

.hm-searchform__input {
	flex: 1;
	padding: 12px 16px;
	font-size: 15px;
	font-family: var(--hm-font);
	border: 1px solid var(--hm-line);
	border-radius: 4px;
	background: #fff;
	color: var(--hm-text);
}

.hm-searchform__btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: var(--hm-orange);
	color: #141414;
	font-weight: 800;
	font-size: 13px;
	text-transform: uppercase;
	border: 0;
	border-radius: 4px;
	padding: 0 18px;
	cursor: pointer;
}
.hm-searchform__btn:hover { background: var(--hm-orange-dark); color: #fff; }

/* --------------------------------------------------------------------------
   Kicker
   -------------------------------------------------------------------------- */

.hm-kicker {
	display: inline-block;
	color: var(--hm-orange);
	font-size: 12px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: .06em;
	margin-bottom: 6px;
}
a.hm-kicker:hover { color: var(--hm-orange-dark); }

.hm-overlay .hm-kicker { text-shadow: 0 1px 5px rgba(0, 0, 0, .65); }

/* --------------------------------------------------------------------------
   HERO — mosaico
   -------------------------------------------------------------------------- */

.hm-hero { margin: 16px 0 0; }

.hm-hero__grid {
	display: grid;
	grid-template-columns: 1.25fr 1fr;
	gap: 6px;
	height: 540px;
}

.hm-hero__stack {
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-template-rows: 1fr 1fr;
	gap: 6px;
	min-height: 0;
}

.hm-overlay { position: relative; overflow: hidden; border-radius: var(--hm-radius); background: var(--hm-ink); min-height: 0; }

.hm-overlay__link { position: absolute; inset: 0; display: block; color: #fff; }
.hm-overlay__link:hover { color: #fff; }

.hm-overlay__img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .5s ease;
}
.hm-overlay:hover .hm-overlay__img { transform: scale(1.04); }

.hm-overlay__link::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(0, 0, 0, .12) 25%, rgba(0, 0, 0, .88) 100%);
}

.hm-overlay__body {
	position: absolute;
	left: 0; right: 0; bottom: 0;
	padding: 18px;
	z-index: 2;
	display: block;
}

.hm-overlay__title {
	color: #fff;
	margin: 0;
	font-weight: 800;
	text-wrap: balance;
	text-shadow: 0 1px 6px rgba(0, 0, 0, .55);
}

.hm-overlay--hero-lg .hm-overlay__title { font-size: clamp(22px, 2.6vw, 34px); }
.hm-overlay--hero-lg .hm-overlay__body { padding: 26px; }
.hm-overlay--hero-sm .hm-overlay__title { font-size: 15.5px; line-height: 1.3; }

.hm-overlay__meta {
	display: block;
	margin-top: 8px;
	font-size: 12px;
	font-weight: 500;
	color: rgba(255, 255, 255, .65);
}

.hm-overlay--banner {
	height: 340px;
	margin: 28px 0;
}
.hm-overlay--banner .hm-overlay__title { font-size: clamp(22px, 3vw, 36px); max-width: 820px; }
.hm-overlay--banner .hm-overlay__body { padding: 30px; }

/* --------------------------------------------------------------------------
   LO ÚLTIMO — tira
   -------------------------------------------------------------------------- */

.hm-lateststrip {
	display: flex;
	align-items: center;
	gap: 22px;
	background: var(--hm-card);
	border-radius: var(--hm-radius);
	box-shadow: var(--hm-shadow);
	padding: 14px 18px;
	margin: 16px 0 0;
	overflow: hidden;
}

.hm-lateststrip__label {
	flex: 0 0 auto;
	font-size: 14px;
	font-weight: 900;
	letter-spacing: .02em;
	border-left: 4px solid var(--hm-orange);
	padding-left: 10px;
}

.hm-lateststrip__list {
	display: flex;
	gap: 28px;
	list-style: none;
	margin: 0;
	padding: 0;
	overflow-x: auto;
	scrollbar-width: none;
}
.hm-lateststrip__list::-webkit-scrollbar { display: none; }

.hm-lateststrip__list li {
	display: flex;
	align-items: baseline;
	gap: 8px;
	flex: 0 0 auto;
	max-width: 420px;
	white-space: nowrap;
}

.hm-lateststrip__list time {
	flex: 0 0 auto;
	font-size: 12px;
	font-weight: 700;
	color: var(--hm-orange-dark);
}

.hm-lateststrip__list a {
	font-size: 14px;
	font-weight: 600;
	overflow: hidden;
	text-overflow: ellipsis;
}

/* --------------------------------------------------------------------------
   Layout principal portada / archivo
   -------------------------------------------------------------------------- */

.hm-frontlayout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 320px;
	gap: 26px;
	margin-top: 24px;
	padding-bottom: 40px;
}

/* Feed denso (texto + thumb) */

.hm-feed__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 14px;
}

.hm-rowcard {
	display: flex;
	justify-content: space-between;
	gap: 16px;
	background: var(--hm-card);
	border-radius: var(--hm-radius);
	box-shadow: var(--hm-shadow);
	padding: 18px;
	transition: box-shadow .2s ease;
}
.hm-rowcard:hover { box-shadow: var(--hm-shadow-lg); }

.hm-rowcard__title {
	font-size: 17px;
	font-weight: 700;
	line-height: 1.35;
	margin: 0 0 10px;
}

.hm-rowcard__media {
	flex: 0 0 168px;
	border-radius: 4px;
	overflow: hidden;
	background: linear-gradient(135deg, #191919 0%, #2b2b2b 60%, #3a2a15 100%);
}
.hm-rowcard__img, .hm-rowcard__media .hm-noimg {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 4px;
}

.hm-rowcard__meta, .hm-card__meta {
	display: flex;
	gap: 10px;
	font-size: 12px;
	color: var(--hm-muted);
}
.hm-card__author a { font-weight: 700; color: var(--hm-text); }

/* --------------------------------------------------------------------------
   Bloques por sección
   -------------------------------------------------------------------------- */

.hm-block { margin-top: 34px; }

.hm-block__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	border-bottom: 2px solid var(--hm-ink);
	margin-bottom: 16px;
	padding-bottom: 8px;
}

.hm-block__title {
	font-size: 22px;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: .01em;
	margin: 0;
	padding-left: 12px;
	border-left: 5px solid var(--hm-orange);
}

.hm-block__more {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 12px;
	font-weight: 800;
	text-transform: uppercase;
	color: var(--hm-orange-dark);
}
.hm-block__more svg { width: 14px; height: 14px; }

.hm-block__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 16px;
}
.hm-block__grid--3 { grid-template-columns: repeat(3, 1fr); }

.hm-card {
	background: var(--hm-card);
	border-radius: var(--hm-radius);
	overflow: hidden;
	box-shadow: var(--hm-shadow);
	display: flex;
	flex-direction: column;
	transition: transform .2s ease, box-shadow .2s ease;
}
.hm-card:hover { transform: translateY(-3px); box-shadow: var(--hm-shadow-lg); }

.hm-card__media {
	display: block;
	aspect-ratio: 3 / 2;
	overflow: hidden;
	background: linear-gradient(135deg, #191919 0%, #2b2b2b 60%, #3a2a15 100%);
}
.hm-card__img, .hm-card__media .hm-noimg {
	width: 100%;
	height: 100%;
	aspect-ratio: 3 / 2;
	object-fit: cover;
}

.hm-card__body { padding: 14px 16px 16px; display: flex; flex-direction: column; flex: 1; }

.hm-card__title {
	font-size: 16.5px;
	font-weight: 700;
	line-height: 1.32;
	margin: 0 0 8px;
}

.hm-card__excerpt {
	font-size: 13.5px;
	color: var(--hm-muted);
	margin: 0 0 12px;
}

.hm-card__meta { margin-top: auto; }

/* --------------------------------------------------------------------------
   Sidebar
   -------------------------------------------------------------------------- */

.hm-sidebar > * + * { margin-top: 22px; }

.hm-sidebar__title {
	font-size: 16px;
	font-weight: 900;
	text-transform: uppercase;
	padding-left: 10px;
	border-left: 5px solid var(--hm-orange);
	margin-bottom: 14px;
}

.hm-popular, .hm-follow, .hm-sidebar .widget {
	background: var(--hm-card);
	border-radius: var(--hm-radius);
	box-shadow: var(--hm-shadow);
	padding: 18px;
}

.hm-list { list-style: none; margin: 0; padding: 0; }

.hm-list--numbered .hm-list__item {
	display: grid;
	grid-template-columns: 34px 1fr;
	gap: 10px;
	align-items: start;
	padding: 10px 0;
	border-bottom: 1px solid var(--hm-line);
}
.hm-list--numbered .hm-list__item:last-child { border-bottom: 0; }

.hm-list__num {
	font-size: 26px;
	font-weight: 900;
	color: var(--hm-orange);
	line-height: 1;
}

.hm-list__title { font-size: 14.5px; font-weight: 600; line-height: 1.35; }

.hm-list__time { display: block; font-size: 11.5px; color: var(--hm-muted); margin-top: 3px; }

/* Redes */

.hm-social { display: flex; flex-wrap: wrap; gap: 8px; }

.hm-social__link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	border-radius: 50%;
	background: var(--hm-ink);
	color: #fff;
	transition: background .15s ease, transform .15s ease;
}
.hm-social__link:hover { background: var(--hm-orange); color: #141414; transform: translateY(-2px); }
.hm-social__link svg { width: 17px; height: 17px; }

.hm-social--header .hm-social__link { width: 30px; height: 30px; background: rgba(255, 255, 255, .1); }
.hm-social--header .hm-social__link:hover { background: var(--hm-orange); color: #141414; }

/* --------------------------------------------------------------------------
   Anuncios
   -------------------------------------------------------------------------- */

.hm-ad { display: flex; justify-content: center; margin: 16px 0; }
.hm-ad--leader { margin: 16px 0 0; }
.hm-ad--mid { margin: 28px 0 0; }

.hm-ad--placeholder a {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 4px;
	width: 100%;
	min-height: 110px;
	border: 2px dashed #c9c9c9;
	border-radius: var(--hm-radius);
	background: #f7f7f7;
	color: var(--hm-muted);
	text-transform: uppercase;
	letter-spacing: .08em;
	font-size: 12px;
}
.hm-ad--placeholder strong { font-size: 16px; color: var(--hm-ink); }
.hm-ad--box .hm-ad--placeholder a { min-height: 250px; }

/* --------------------------------------------------------------------------
   Nota individual
   -------------------------------------------------------------------------- */

.hm-article-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 320px;
	gap: 26px;
	padding: 24px 0 48px;
}

.hm-article {
	background: var(--hm-card);
	border-radius: var(--hm-radius);
	box-shadow: var(--hm-shadow);
	padding: clamp(18px, 3.5vw, 44px);
}

.hm-breadcrumb {
	font-size: 12.5px;
	font-weight: 600;
	color: var(--hm-muted);
	margin-bottom: 18px;
	display: flex;
	gap: 8px;
}
.hm-breadcrumb a { color: var(--hm-orange-dark); }

.hm-article__title {
	font-size: clamp(26px, 4vw, 42px);
	font-weight: 900;
	letter-spacing: -.02em;
	margin: 4px 0 14px;
	text-wrap: balance;
}

.hm-article__lead {
	font-size: 18.5px;
	line-height: 1.5;
	color: #3d3d3d;
	font-weight: 500;
	margin: 0 0 20px;
}

.hm-article__meta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 14px;
	border-top: 1px solid var(--hm-line);
	border-bottom: 1px solid var(--hm-line);
	padding: 14px 0;
	margin-bottom: 22px;
}

.hm-article__author { display: flex; align-items: center; gap: 12px; }
.hm-article__avatar { border-radius: 50%; width: 44px; height: 44px; }
.hm-article__author strong { display: block; font-size: 14.5px; }
.hm-article__author time { font-size: 12.5px; color: var(--hm-muted); }

.hm-share { display: flex; gap: 8px; }

.hm-share__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: #f0f0f0;
	color: var(--hm-ink);
	transition: background .15s ease, color .15s ease;
}
.hm-share__btn svg { width: 16px; height: 16px; }
.hm-share__btn:hover { background: var(--hm-orange); color: #141414; }

.hm-article__figure { margin: 0 0 24px; }
.hm-article__img { width: 100%; border-radius: var(--hm-radius); }
.hm-article__figure figcaption {
	font-size: 12.5px;
	color: var(--hm-muted);
	padding-top: 8px;
	border-bottom: 1px solid var(--hm-line);
	padding-bottom: 8px;
}

.hm-article__content {
	font-size: 17.5px;
	line-height: 1.75;
	color: #222;
}

.hm-article__content p { margin: 0 0 1.3em; }

.hm-article__content h2 {
	font-size: 24px;
	font-weight: 800;
	margin: 1.6em 0 .6em;
	padding-left: 12px;
	border-left: 5px solid var(--hm-orange);
}
.hm-article__content h3 { font-size: 20px; margin: 1.5em 0 .5em; }

.hm-article__content a { color: var(--hm-orange-dark); text-decoration: underline; text-underline-offset: 3px; }

.hm-article__content blockquote {
	margin: 1.6em 0;
	padding: 6px 0 6px 22px;
	border-left: 5px solid var(--hm-orange);
	font-size: 20px;
	font-weight: 600;
	font-style: italic;
	color: var(--hm-ink);
}

.hm-article__content ul, .hm-article__content ol { margin: 0 0 1.3em; padding-left: 1.4em; }
.hm-article__content li { margin-bottom: .45em; }

.hm-article__content figure { margin: 1.6em 0; }
.hm-article__content img { border-radius: var(--hm-radius); }

.hm-tags { display: flex; flex-wrap: wrap; gap: 8px; margin: 26px 0 0; }

.hm-tag {
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	background: #f0f0f0;
	border-radius: 4px;
	padding: 6px 12px;
}
.hm-tag:hover { background: var(--hm-orange); color: #141414; }

/* Caja de autor */

.hm-authorbox {
	display: flex;
	gap: 18px;
	background: #f7f7f7;
	border: 1px solid var(--hm-line);
	border-radius: var(--hm-radius);
	padding: 20px;
	margin-top: 30px;
}
.hm-authorbox__avatar { border-radius: 50%; width: 88px; height: 88px; flex: 0 0 auto; }
.hm-authorbox__label {
	font-size: 11px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: .08em;
	color: var(--hm-orange-dark);
}
.hm-authorbox__name { font-size: 18px; margin: 2px 0 6px; }
.hm-authorbox__bio { font-size: 14px; color: var(--hm-muted); margin: 0; }

/* Relacionadas */

.hm-related { margin-top: 36px; }
.hm-related .hm-block__title { border-left: 5px solid var(--hm-orange); margin-bottom: 16px; }

/* --------------------------------------------------------------------------
   Comentarios
   -------------------------------------------------------------------------- */

.hm-comments { margin-top: 36px; }

.hm-comments__list { list-style: none; margin: 0 0 24px; padding: 0; }
.hm-comments__list .comment { border-bottom: 1px solid var(--hm-line); padding: 16px 0; }
.hm-comments__list .comment-author { display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 14px; }
.hm-comments__list .avatar { border-radius: 50%; }
.hm-comments__list .comment-metadata { font-size: 12px; color: var(--hm-muted); }
.hm-comments__list .comment-body p { font-size: 14.5px; }
.hm-comments__list .reply { font-size: 12.5px; }
.hm-comments__list .children { list-style: none; padding-left: 28px; }

.comment-form { display: grid; gap: 12px; }
.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
	width: 100%;
	padding: 12px 14px;
	border: 1px solid var(--hm-line);
	border-radius: 4px;
	font-family: var(--hm-font);
	font-size: 14.5px;
	background: #fff;
}
.comment-form .submit { justify-self: start; }

/* --------------------------------------------------------------------------
   Cabecera de sección / archivo
   -------------------------------------------------------------------------- */

.hm-sectionhead { padding: 26px 0 6px; }

.hm-sectionhead__title {
	font-size: clamp(28px, 4vw, 40px);
	font-weight: 900;
	text-transform: uppercase;
	padding-left: 14px;
	border-left: 6px solid var(--hm-orange);
	margin: 0;
}
.hm-sectionhead__title span { color: var(--hm-orange-dark); }

.hm-sectionhead__desc { color: var(--hm-muted); font-size: 15px; margin: 10px 0 0; }

.hm-sectionhead__featured { margin-bottom: 16px; }
.hm-sectionhead__featured .hm-card__title { font-size: 22px; }

/* --------------------------------------------------------------------------
   Paginación
   -------------------------------------------------------------------------- */

.hm-pagination { margin: 30px 0 10px; }
.hm-pagination .nav-links { display: flex; flex-wrap: wrap; gap: 6px; }

.hm-pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 38px;
	height: 38px;
	padding: 0 12px;
	background: var(--hm-card);
	border-radius: 4px;
	font-size: 13.5px;
	font-weight: 700;
	box-shadow: var(--hm-shadow);
}
.hm-pagination .page-numbers.current {
	background: var(--hm-ink);
	color: #fff;
}
.hm-pagination .page-numbers:hover:not(.current) { background: var(--hm-orange); color: #141414; }

/* --------------------------------------------------------------------------
   Empty / 404
   -------------------------------------------------------------------------- */

.hm-empty {
	background: var(--hm-card);
	border-radius: var(--hm-radius);
	box-shadow: var(--hm-shadow);
	padding: 48px 24px;
	text-align: center;
	display: grid;
	gap: 14px;
	justify-items: center;
}
.hm-empty h2, .hm-empty h1 { margin: 0; }
.hm-empty p { color: var(--hm-muted); margin: 0; }

.hm-empty__code {
	font-size: clamp(70px, 14vw, 130px);
	font-weight: 900;
	line-height: 1;
	color: var(--hm-orange);
	letter-spacing: -.04em;
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */

.hm-footer {
	background: var(--hm-ink);
	color: rgba(255, 255, 255, .75);
	margin-top: 30px;
}

.hm-footer__grid {
	display: grid;
	grid-template-columns: 1.4fr 1fr 1fr;
	gap: 36px;
	padding: 44px 16px 34px;
}

.hm-logo--footer { color: #fff; margin-bottom: 10px; }
.hm-footer__tag {
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .16em;
	color: var(--hm-orange);
	margin: 0 0 12px;
}
.hm-footer__desc { font-size: 14px; line-height: 1.6; margin: 0 0 18px; }

.hm-footer__title {
	color: #fff;
	font-size: 14px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: .06em;
	padding-left: 10px;
	border-left: 4px solid var(--hm-orange);
	margin-bottom: 16px;
}

.hm-footer__menu { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.hm-footer__menu a { font-size: 14px; font-weight: 600; }
.hm-footer__menu a:hover { color: var(--hm-orange); }

.hm-footer__mail {
	display: inline-block;
	font-size: 14px;
	font-weight: 700;
	color: var(--hm-orange);
	margin-bottom: 16px;
}

.hm-footer__legal { border-top: 1px solid rgba(255, 255, 255, .1); }

.hm-footer__legal-inner {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 10px;
	padding: 16px;
	font-size: 12.5px;
	color: rgba(255, 255, 255, .45);
}

.hm-footer__credit a { color: var(--hm-orange); font-weight: 700; }

/* --------------------------------------------------------------------------
   Barra fija LO ÚLTIMO
   -------------------------------------------------------------------------- */

.hm-latest {
	position: fixed;
	left: 0; right: 0; bottom: 0;
	background: rgba(255, 255, 255, .98);
	border-top: 3px solid var(--hm-orange);
	box-shadow: 0 -4px 18px rgba(0, 0, 0, .12);
	z-index: 70;
}

.hm-latest__inner {
	display: flex;
	align-items: center;
	gap: 20px;
	height: 52px;
}

.hm-latest__label { font-size: 13px; font-weight: 900; flex: 0 0 auto; }

.hm-latest__list {
	display: flex;
	gap: 26px;
	list-style: none;
	margin: 0;
	padding: 0;
	overflow: hidden;
}

.hm-latest__list li {
	display: flex;
	align-items: baseline;
	gap: 8px;
	white-space: nowrap;
	min-width: 0;
}

.hm-latest__list time { font-size: 11.5px; font-weight: 700; color: var(--hm-orange-dark); flex: 0 0 auto; }

.hm-latest__list a {
	font-size: 13px;
	font-weight: 600;
	overflow: hidden;
	text-overflow: ellipsis;
}

.hm-latest__close {
	margin-left: auto;
	flex: 0 0 auto;
	background: transparent;
	border: 0;
	cursor: pointer;
	color: var(--hm-muted);
	padding: 4px;
}
.hm-latest__close:hover { color: var(--hm-ink); }
.hm-latest__close svg { width: 16px; height: 16px; }

body.hm-has-latest { padding-bottom: 58px; }

/* Volver arriba */

.hm-totop {
	position: fixed;
	right: 18px;
	bottom: 70px;
	width: 44px;
	height: 44px;
	border: 0;
	border-radius: 50%;
	background: var(--hm-orange);
	color: #141414;
	cursor: pointer;
	box-shadow: var(--hm-shadow-lg);
	z-index: 71;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}
.hm-totop:hover { background: var(--hm-orange-dark); color: #fff; }
.hm-totop svg { width: 20px; height: 20px; }

/* --------------------------------------------------------------------------
   Fallback sin imagen
   -------------------------------------------------------------------------- */

.hm-noimg {
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, #191919 0%, #2b2b2b 60%, #3a2a15 100%);
	color: rgba(255, 255, 255, .35);
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: .1em;
	font-size: 12px;
	text-align: center;
}
.hm-overlay .hm-noimg { font-size: 14px; }

/* Widgets genéricos */

.widget-title {
	font-size: 15px;
	font-weight: 900;
	text-transform: uppercase;
	padding-left: 10px;
	border-left: 5px solid var(--hm-orange);
	margin-bottom: 12px;
}
.widget ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; font-size: 14px; }
.widget a { font-weight: 600; }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

@media (max-width: 1100px) {
	.hm-frontlayout, .hm-article-layout { grid-template-columns: minmax(0, 1fr) 280px; }
	.hm-block__grid { grid-template-columns: repeat(3, 1fr); }
	.hm-header__date { display: none; }
}

@media (max-width: 900px) {
	.hm-hero__grid { grid-template-columns: 1fr; height: auto; }
	.hm-overlay--hero-lg { height: 380px; }
	.hm-hero__stack { grid-template-rows: none; grid-auto-rows: 220px; }

	.hm-frontlayout, .hm-article-layout { grid-template-columns: 1fr; }
	.hm-sidebar { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; align-items: start; }
	.hm-sidebar > * + * { margin-top: 0; }

	.hm-lateststrip__list li:nth-child(n+3) { display: none; }
	.hm-latest__list li:nth-child(n+2) { display: none; }

	.hm-footer__grid { grid-template-columns: 1fr 1fr; }
	.hm-footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 720px) {
	.hm-burger { display: inline-flex; }

	.hm-header__inner { gap: 12px; height: 58px; }
	.hm-logo__word { font-size: 21px; }
	.hm-logo__tag { display: none; }
	.hm-social--header { display: none; }

	/* Pestañas como panel desplegable */
	.hm-tabs {
		display: none;
		position: absolute;
		top: 100%;
		left: 0; right: 0;
		background: var(--hm-ink-2);
		border-bottom: 3px solid var(--hm-orange);
	}
	.hm-header.hm-menu-open .hm-tabs { display: block; }
	.hm-tabs__list { flex-direction: column; gap: 2px; padding: 10px 0; overflow: visible; }
	.hm-tabs__list a { border-radius: 0; padding: 12px 16px; }

	.hm-feed__grid { grid-template-columns: 1fr; }
	.hm-block__grid, .hm-block__grid--3 { grid-template-columns: 1fr 1fr; }
	.hm-overlay--banner { height: 260px; }

	.hm-article__meta { flex-direction: column; align-items: flex-start; }
	.hm-authorbox { flex-direction: column; }

	.hm-sidebar { grid-template-columns: 1fr; }
	.hm-footer__grid { grid-template-columns: 1fr; gap: 26px; }

	.hm-latest__inner { gap: 12px; }
	.hm-totop { bottom: 76px; }
}

@media (max-width: 480px) {
	.hm-hero__stack { grid-template-columns: 1fr; grid-auto-rows: 200px; }
	.hm-overlay--hero-lg { height: 300px; }
	.hm-block__grid, .hm-block__grid--3 { grid-template-columns: 1fr; }
	.hm-rowcard__media { flex-basis: 120px; }
	.hm-lateststrip { gap: 12px; padding: 12px 14px; }
}
