/* ==========================================================================
   Roxy — Main Stylesheet
   Digital newspaper WordPress theme
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. CSS Custom Properties (tokens)
   -------------------------------------------------------------------------- */
:root {
	--roxy-accent:    #e8202a;
	--roxy-nav-bg:    #111111;
	--roxy-nav-text:  #ffffff;
	--roxy-container: 1200px;

	--roxy-text:      #1a1a1a;
	--roxy-text-muted:#666666;
	--roxy-border:    #e5e5e5;
	--roxy-bg:        #ffffff;
	--roxy-bg-alt:    #f7f7f7;

	--roxy-font-heading: 'Merriweather', 'Georgia', 'Times New Roman', serif;
	--roxy-font-body:    'Source Sans 3', 'Helvetica Neue', Arial, sans-serif;

	--roxy-radius: 3px;
	--roxy-shadow: 0 1px 4px rgba(0,0,0,.08);
}

/* --------------------------------------------------------------------------
   2. Reset / Base
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
	margin: 0;
	font-family: var(--roxy-font-body);
	font-size: 1rem;
	line-height: 1.65;
	color: var(--roxy-text);
	background: var(--roxy-bg);
}

img, video { max-width: 100%; height: auto; display: block; }
a { color: var(--roxy-accent); text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3, h4, h5, h6 {
	font-family: var(--roxy-font-heading);
	line-height: 1.2;
	margin: 0 0 .5em;
	color: var(--roxy-text);
}

p { margin: 0 0 1em; }
ul, ol { padding-left: 1.5em; margin: 0 0 1em; }
figure { margin: 0; }
.screen-reader-text { position: absolute; clip: rect(0,0,0,0); overflow: hidden; }
.skip-link { position: absolute; top: -100%; left: 0; padding: .5rem 1rem; background: var(--roxy-accent); color: #fff; z-index: 9999; }
.skip-link:focus { top: 0; }

/* --------------------------------------------------------------------------
   3. Layout — Container & Grid
   -------------------------------------------------------------------------- */
.roxy-container {
	max-width: var(--roxy-container);
	margin: 0 auto;
	padding: 0 1.25rem;
}
.roxy-container--narrow { max-width: 780px; }

.roxy-layout {
	display: grid;
	gap: 2.5rem;
}
.roxy-layout--right  { grid-template-columns: 1fr 300px; }
.roxy-layout--left   { grid-template-columns: 300px 1fr; }
.roxy-layout--full   { grid-template-columns: 1fr; }

@media (max-width: 900px) {
	.roxy-layout--right,
	.roxy-layout--left { grid-template-columns: 1fr; }
}


/* --------------------------------------------------------------------------
   Layout main column wrapper (single article)
   -------------------------------------------------------------------------- */
.roxy-layout__main { min-width: 0; }
/* --------------------------------------------------------------------------
   4. Top Bar
   -------------------------------------------------------------------------- */
.site-header__topbar {
	background: var(--roxy-bg-alt);
	border-bottom: 1px solid var(--roxy-border);
	padding: .25rem 0;
}
.site-header__topbar .roxy-container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
}
.topbar-nav__menu {
	display: flex;
	gap: 1rem;
	list-style: none;
	margin: 0;
	padding: 0;
}
.topbar-nav__menu a { font-size: .8125rem; color: var(--roxy-text-muted); }
.topbar-nav__menu a:hover { color: var(--roxy-accent); text-decoration: none; }
.topbar-date { font-size: .8125rem; color: var(--roxy-text-muted); white-space: nowrap; }

/* --------------------------------------------------------------------------
   5. Site Header — Branding
   -------------------------------------------------------------------------- */
.site-header__main { padding: 1rem 0; border-bottom: 3px solid var(--roxy-accent); }
.site-header__inner { display: flex; align-items: center; justify-content: space-between; }
.site-branding__name { font-family: var(--roxy-font-heading); font-size: 2rem; font-weight: 900; color: var(--roxy-text); text-decoration: none; letter-spacing: -.025em; }
.site-branding__name:hover { text-decoration: none; color: var(--roxy-accent); }
.site-branding__tagline { font-size: .8125rem; color: var(--roxy-text-muted); margin: .125rem 0 0; }
.site-branding img { max-height: 60px; width: auto; }

/* --------------------------------------------------------------------------
   6. Primary Navigation
   -------------------------------------------------------------------------- */
.site-nav {
	background: var(--roxy-nav-bg);
	position: relative;
	z-index: 100;
}
.site-nav .roxy-container { position: relative; }
.site-nav__menu {
	display: flex;
	flex-wrap: wrap;
	gap: 0;
	list-style: none;
	margin: 0;
	padding: 0;
}
.site-nav__menu > li > a {
	display: block;
	padding: .7rem 1rem;
	color: var(--roxy-nav-text);
	font-size: .875rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: .03em;
	white-space: nowrap;
	transition: background .15s;
}
.site-nav__menu > li > a:hover,
.site-nav__menu > li.current-menu-item > a {
	background: var(--roxy-accent);
	text-decoration: none;
}

/* Sub-menus */
.site-nav__menu .sub-menu {
	display: none;
	position: absolute;
	top: 100%;
	min-width: 200px;
	background: #222;
	list-style: none;
	margin: 0;
	padding: .25rem 0;
	box-shadow: 0 4px 12px rgba(0,0,0,.3);
	z-index: 200;
}
.site-nav__menu li:hover > .sub-menu,
.site-nav__menu li.focus > .sub-menu { display: block; }
.site-nav__menu .sub-menu a { display: block; padding: .55rem 1.25rem; color: #ddd; font-size: .8125rem; white-space: nowrap; }
.site-nav__menu .sub-menu a:hover { background: var(--roxy-accent); color: #fff; text-decoration: none; }

/* Hamburger */
.site-nav__toggle {
	display: none;
	background: transparent;
	border: 1.5px solid rgba(255,255,255,.5);
	border-radius: var(--roxy-radius);
	padding: .35rem .55rem;
	cursor: pointer;
	align-items: center;
	justify-content: center;
}
.site-nav__toggle-icon,
.site-nav__toggle-icon::before,
.site-nav__toggle-icon::after {
	display: block;
	width: 22px;
	height: 2px;
	background: var(--roxy-nav-text);
	transition: .2s;
}
.site-nav__toggle-icon { position: relative; }
.site-nav__toggle-icon::before,
.site-nav__toggle-icon::after { content: ''; position: absolute; }
.site-nav__toggle-icon::before { top: -6px; }
.site-nav__toggle-icon::after  { top:  6px; }

@media (max-width: 900px) {
	.site-nav__toggle { display: flex; }
	.site-nav__menu {
		display: none;
		flex-direction: column;
		gap: 0;
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		background: var(--roxy-nav-bg);
		border-top: 1px solid rgba(255,255,255,.1);
		box-shadow: 0 6px 20px rgba(0,0,0,.25);
		padding: .5rem 0;
		z-index: 200;
	}
	.site-nav__menu.is-open { display: flex; }
	.site-nav__menu .sub-menu { position: static; box-shadow: none; background: rgba(255,255,255,.05); }
}

/* --------------------------------------------------------------------------
   7. Breaking News Ticker
   -------------------------------------------------------------------------- */
.roxy-ticker {
	background: var(--roxy-accent);
	color: #fff;
	overflow: hidden;
	padding: .35rem 0;
}
.roxy-ticker .roxy-container { display: flex; align-items: center; gap: .75rem; overflow: hidden; }
.roxy-ticker__label {
	flex-shrink: 0;
	font-size: .75rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .06em;
	background: rgba(0,0,0,.25);
	padding: .15rem .6rem;
	border-radius: 2px;
}
.roxy-ticker__track { overflow: hidden; flex: 1; }
.roxy-ticker__list {
	display: flex;
	gap: 3rem;
	list-style: none;
	margin: 0;
	padding: 0;
	animation: roxy-ticker-scroll 30s linear infinite;
	white-space: nowrap;
}
.roxy-ticker__list:hover { animation-play-state: paused; }
.roxy-ticker__item a { color: #fff; font-size: .875rem; font-weight: 500; }
.roxy-ticker__item a:hover { text-decoration: underline; }

@keyframes roxy-ticker-scroll {
	from { transform: translateX(0); }
	to   { transform: translateX(-50%); }
}

/* --------------------------------------------------------------------------
   8. Category Badge
   -------------------------------------------------------------------------- */
.roxy-cat-badge {
	display: inline-block;
	padding: .15rem .55rem;
	font-size: .7rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .05em;
	background: var(--roxy-cat-color, var(--roxy-accent));
	color: #fff;
	border-radius: 2px;
	margin-bottom: .4rem;
	text-decoration: none;
}
.roxy-cat-badge:hover { filter: brightness(.9); text-decoration: none; color: #fff; }

/* Nav dot next to category items */
.roxy-nav-dot {
	display: inline-block;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--roxy-cat-color, var(--roxy-accent));
	margin-right: .35rem;
	vertical-align: middle;
}

/* --------------------------------------------------------------------------
   8b. Breadcrumbs
   -------------------------------------------------------------------------- */
.roxy-breadcrumbs {
	background: var(--roxy-bg-alt);
	border-bottom: 1px solid var(--roxy-border);
	padding: .5rem 1.25rem;
	font-size: .75rem;
}
.roxy-breadcrumbs__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: .25rem .35rem;
	align-items: center;
}
.roxy-breadcrumbs__item { display: flex; align-items: center; }
.roxy-breadcrumbs__item a { color: var(--roxy-text-muted); text-decoration: none; }
.roxy-breadcrumbs__item a:hover { color: var(--roxy-accent); text-decoration: underline; }
.roxy-breadcrumbs__item--current { color: var(--roxy-text); font-weight: 500; }
.roxy-breadcrumbs__item:not(:last-child)::after {
	content: '/';
	margin-left: .35rem;
	color: var(--roxy-border);
}

/* --------------------------------------------------------------------------
   9. Post Meta
   -------------------------------------------------------------------------- */
.roxy-meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: .25rem .75rem;
	font-size: .8125rem;
	color: var(--roxy-text-muted);
	margin: .4rem 0 .75rem;
}
.roxy-meta a { color: var(--roxy-text-muted); }
.roxy-meta a:hover { color: var(--roxy-accent); text-decoration: none; }
.roxy-meta__date::after,
.roxy-meta__author::after { content: '·'; margin-left: .75rem; }
.roxy-meta__reading::before { content: '·'; margin-right: .75rem; }

/* --------------------------------------------------------------------------
   10. Cards
   -------------------------------------------------------------------------- */
.roxy-card {
	background: var(--roxy-bg);
	border-radius: var(--roxy-radius);
	overflow: hidden;
	box-shadow: var(--roxy-shadow);
	transition: box-shadow .2s;
}
.roxy-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,.12); }
.roxy-card__img-link img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.roxy-card__body { padding: .875rem 1rem 1rem; }
.roxy-card__title { font-size: 1rem; font-weight: 700; line-height: 1.3; margin: 0 0 .35rem; }
.roxy-card__title a { color: var(--roxy-text); }
.roxy-card__title a:hover { color: var(--roxy-accent); text-decoration: none; }
.roxy-card__excerpt { font-size: .875rem; color: var(--roxy-text-muted); margin: .35rem 0 0; line-height: 1.5; }

.roxy-card--large .roxy-card__title { font-size: 1.35rem; }
.roxy-card--large .roxy-card__img-link img { aspect-ratio: 16/9; }

/* --------------------------------------------------------------------------
   11. Grid
   -------------------------------------------------------------------------- */
.roxy-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
	gap: 1.5rem;
}

@media (max-width: 600px) {
	.roxy-grid { grid-template-columns: 1fr; }
}

/* --------------------------------------------------------------------------
   12. List
   -------------------------------------------------------------------------- */
.roxy-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 1.125rem;
}
.roxy-list__item {
	display: flex;
	gap: .875rem;
	align-items: flex-start;
}
.roxy-list__thumb-link { flex-shrink: 0; }
.roxy-list__thumb-link img { width: 110px; height: 72px; object-fit: cover; border-radius: var(--roxy-radius); }
.roxy-list__title { font-size: .9375rem; font-weight: 700; line-height: 1.35; margin: 0 0 .25rem; }
.roxy-list__title a { color: var(--roxy-text); }
.roxy-list__title a:hover { color: var(--roxy-accent); text-decoration: none; }

/* --------------------------------------------------------------------------
   13. Home Sections
   -------------------------------------------------------------------------- */
.roxy-home { padding: 1.5rem 0 3rem; }
.home-top-widgets { margin-bottom: 1.5rem; }

.roxy-home-section { margin-bottom: 2.5rem; }

.roxy-home-section--list .roxy-list {
	border-top: 1px solid var(--roxy-border);
	padding-top: 1rem;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1.125rem 2rem;
}
@media (max-width: 600px) {
	.roxy-home-section--list .roxy-list { grid-template-columns: 1fr; }
}

.roxy-section-title {
	font-size: 1.0625rem;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: .04em;
	border-bottom: 3px solid var(--roxy-accent);
	padding-bottom: .4rem;
	margin-bottom: 1.125rem;
	display: flex;
	align-items: baseline;
	justify-content: space-between;
}
.roxy-section-title a { color: var(--roxy-text); text-decoration: none; }
.roxy-section-title a:hover { color: var(--roxy-accent); }
.roxy-section-title--small { font-size: .875rem; border-bottom-width: 2px; }
.roxy-section-title__more a { font-size: .75rem; font-weight: 600; color: var(--roxy-text-muted); text-transform: none; letter-spacing: 0; }
.roxy-section-title__more a:hover { color: var(--roxy-accent); }

/* Featured + list */
.roxy-section-featured {
	display: grid;
	grid-template-columns: 1.6fr 1fr;
	gap: 1.5rem;
	align-items: start;
}
.roxy-section-featured__list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 0; }
.roxy-section-featured__item { padding: .625rem 0; border-bottom: 1px solid var(--roxy-border); }
.roxy-section-featured__item:last-child { border-bottom: none; }
.roxy-section-featured__title { font-size: .9rem; font-weight: 700; color: var(--roxy-text); line-height: 1.3; }
.roxy-section-featured__title:hover { color: var(--roxy-accent); text-decoration: none; }
.roxy-section-featured__item time { display: block; font-size: .75rem; color: var(--roxy-text-muted); margin-top: .2rem; }

@media (max-width: 700px) {
	.roxy-section-featured { grid-template-columns: 1fr; }
}

/* --------------------------------------------------------------------------
   14. Home — Magazine Hero
   -------------------------------------------------------------------------- */
.roxy-hero {
	margin: 1.5rem auto 2.5rem;
}
.roxy-hero__article {
	display: grid;
	grid-template-columns: 1.75fr 1fr;
	gap: 2rem;
	align-items: center;
	background: var(--roxy-bg);
}
.roxy-hero__img-link img { width: 100%; aspect-ratio: 16/9; object-fit: cover; border-radius: var(--roxy-radius); }
.roxy-hero__title { font-size: 2rem; font-weight: 900; line-height: 1.15; margin-bottom: .5rem; }
.roxy-hero__title a { color: var(--roxy-text); }
.roxy-hero__title a:hover { color: var(--roxy-accent); text-decoration: none; }
.roxy-hero__excerpt { font-size: 1rem; color: var(--roxy-text-muted); line-height: 1.6; margin-bottom: .5rem; }

@media (max-width: 700px) {
	.roxy-hero__article { grid-template-columns: 1fr; }
	.roxy-hero__title { font-size: 1.5rem; }
}

/* ── Multi-hero row (2–4 posts) ── */
.roxy-hero-row {
	display: grid;
	gap: 1.5rem;
	margin: 1.5rem auto 2.5rem;
}
.roxy-hero-row--2 { grid-template-columns: repeat(2, 1fr); }
.roxy-hero-row--3 { grid-template-columns: repeat(3, 1fr); }
.roxy-hero-row--4 { grid-template-columns: repeat(4, 1fr); }
.roxy-hero-row__card .roxy-card__img-link img { aspect-ratio: 16/9; object-fit: cover; width: 100%; display: block; }
@media (max-width: 700px) {
	.roxy-hero-row--2,
	.roxy-hero-row--3,
	.roxy-hero-row--4 { grid-template-columns: 1fr; }
}

/* --------------------------------------------------------------------------
   15. Home — Breaking Layout
   -------------------------------------------------------------------------- */
.roxy-breaking-layout {
	display: grid;
	grid-template-columns: 1fr 320px;
	gap: 2.5rem;
	align-items: start;
	padding: 1.5rem 1.25rem 3rem;
}
.roxy-breaking-layout__featured { margin-bottom: 1.25rem; }
.roxy-breaking-layout__featured .roxy-breaking-layout__img-link img { width: 100%; aspect-ratio: 16/9; object-fit: cover; border-radius: var(--roxy-radius); margin-bottom: .75rem; }
.roxy-breaking-layout__title { font-size: 1.5rem; font-weight: 900; margin-bottom: .35rem; }
.roxy-breaking-layout__title a { color: var(--roxy-text); }
.roxy-breaking-layout__title a:hover { color: var(--roxy-accent); text-decoration: none; }
.roxy-breaking-layout__excerpt { font-size: .9rem; color: var(--roxy-text-muted); }
.roxy-breaking-layout__list { list-style: none; margin: 0; padding: 0; }
.roxy-breaking-layout__list-item { display: flex; justify-content: space-between; align-items: baseline; gap: .5rem; padding: .55rem 0; border-top: 1px solid var(--roxy-border); }
.roxy-breaking-layout__list-title { font-size: .9rem; font-weight: 700; color: var(--roxy-text); flex: 1; }
.roxy-breaking-layout__list-title:hover { color: var(--roxy-accent); text-decoration: none; }
.roxy-breaking-layout__list-date { font-size: .75rem; color: var(--roxy-text-muted); white-space: nowrap; }

.roxy-breaking-sidebar-section { margin-bottom: 1.75rem; }
.roxy-breaking-sidebar-list { list-style: none; margin: 0; padding: 0; }
.roxy-breaking-sidebar-list__item { display: flex; gap: .6rem; align-items: flex-start; padding: .5rem 0; border-bottom: 1px solid var(--roxy-border); }
.roxy-breaking-sidebar-list__thumb img { width: 70px; height: 50px; object-fit: cover; border-radius: var(--roxy-radius); flex-shrink: 0; }
.roxy-breaking-sidebar-list__title { font-size: .85rem; font-weight: 700; color: var(--roxy-text); line-height: 1.3; display: block; }
.roxy-breaking-sidebar-list__title:hover { color: var(--roxy-accent); text-decoration: none; }
.roxy-breaking-sidebar-list__body time { font-size: .75rem; color: var(--roxy-text-muted); }

@media (max-width: 900px) {
	.roxy-breaking-layout { grid-template-columns: 1fr; }
}

/* --------------------------------------------------------------------------
   16. Single Article
   -------------------------------------------------------------------------- */
.roxy-article { padding: 2rem 0; }
.roxy-article__title { font-size: 2rem; font-weight: 900; line-height: 1.15; margin-bottom: .5rem; }
.roxy-article__thumbnail { margin: 1rem 0 1.5rem; }
.roxy-article__thumbnail img { width: 100%; border-radius: var(--roxy-radius); }
.roxy-article__thumbnail--wide { margin-left: calc(-1 * ((780px - 100%) / 2)); margin-right: calc(-1 * ((780px - 100%) / 2)); max-width: 780px; }
.roxy-article__caption { font-size: .8125rem; color: var(--roxy-text-muted); text-align: center; margin-top: .5rem; }

.roxy-article__content { font-size: 1.0625rem; line-height: 1.75; }
.roxy-article__content h2 { font-size: 1.5rem; margin-top: 2rem; }
.roxy-article__content h3 { font-size: 1.25rem; margin-top: 1.75rem; }
.roxy-article__content p { margin-bottom: 1.25em; }
.roxy-article__content blockquote { border-left: 4px solid var(--roxy-accent); margin: 1.5rem 0; padding: .75rem 1.25rem; background: var(--roxy-bg-alt); font-style: italic; }
.roxy-article__content img { margin: 1.25rem auto; border-radius: var(--roxy-radius); }
.roxy-article__content a { text-decoration: underline; }

.roxy-article__tags { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1.5rem; }
.roxy-article__tags a { padding: .25rem .65rem; border: 1.5px solid var(--roxy-border); border-radius: 2px; font-size: .8125rem; color: var(--roxy-text-muted); }
.roxy-article__tags a:hover { border-color: var(--roxy-accent); color: var(--roxy-accent); text-decoration: none; }

.roxy-article--photo-feature .roxy-article__content,
.roxy-article--minimal .roxy-article__content { font-size: 1.125rem; }

/* --------------------------------------------------------------------------
   17. Photo Feature Hero
   -------------------------------------------------------------------------- */
.roxy-photo-hero { position: relative; max-height: 540px; overflow: hidden; background: #111; }
.roxy-photo-hero img { width: 100%; max-height: 540px; object-fit: cover; opacity: .75; }
.roxy-photo-hero__overlay { position: absolute; bottom: 0; left: 0; right: 0; padding: 2.5rem 0 2rem; background: linear-gradient(to top, rgba(0,0,0,.85) 0%, transparent 100%); }
.roxy-photo-hero__title { font-size: 2.25rem; font-weight: 900; color: #fff; line-height: 1.1; margin-bottom: .5rem; }
.roxy-photo-hero .roxy-meta { color: rgba(255,255,255,.8); }
.roxy-photo-hero .roxy-meta a { color: rgba(255,255,255,.8); }
.roxy-photo-hero .roxy-cat-badge { margin-bottom: .5rem; }

/* --------------------------------------------------------------------------
   18. Author Box
   -------------------------------------------------------------------------- */
.roxy-author-box {
	display: flex;
	gap: 1rem;
	align-items: flex-start;
	padding: 1.25rem;
	background: var(--roxy-bg-alt);
	border-radius: var(--roxy-radius);
	margin: 2rem 0;
	border-left: 3px solid var(--roxy-accent);
}
.roxy-author-box__img { border-radius: 50%; }
.roxy-author-box__name { font-weight: 700; font-size: .9375rem; margin: 0 0 .35rem; }
.roxy-author-box__name a { color: var(--roxy-text); }
.roxy-author-box__name a:hover { color: var(--roxy-accent); text-decoration: none; }
.roxy-author-box__bio { font-size: .875rem; color: var(--roxy-text-muted); margin: 0; line-height: 1.5; }

/* --------------------------------------------------------------------------
   19. Related Posts
   -------------------------------------------------------------------------- */
.roxy-related { margin: 2.5rem 0; padding-top: 1.5rem; border-top: 2px solid var(--roxy-accent); }
.roxy-related__title { font-size: 1rem; font-weight: 900; text-transform: uppercase; letter-spacing: .04em; margin-bottom: 1.25rem; }
.roxy-related__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.roxy-related__item { display: flex; flex-direction: column; gap: .5rem; }
.roxy-related__img-link img { width: 100%; aspect-ratio: 16/9; object-fit: cover; border-radius: var(--roxy-radius); }
.roxy-related__post-title { font-size: .875rem; font-weight: 700; margin: 0 0 .2rem; line-height: 1.35; }
.roxy-related__post-title a { color: var(--roxy-text); }
.roxy-related__post-title a:hover { color: var(--roxy-accent); text-decoration: none; }
.roxy-related__date { font-size: .75rem; color: var(--roxy-text-muted); }

@media (max-width: 640px) {
	.roxy-related__grid { grid-template-columns: 1fr; }
}

/* --------------------------------------------------------------------------
   20. Sidebar & Widgets
   -------------------------------------------------------------------------- */
.roxy-sidebar { padding-top: .5rem; }
.widget { margin-bottom: 2rem; }
.widget-title { font-size: .9375rem; font-weight: 900; text-transform: uppercase; letter-spacing: .04em; border-bottom: 2px solid var(--roxy-accent); padding-bottom: .4rem; margin-bottom: .875rem; }

/* --------------------------------------------------------------------------
   21. Pagination
   -------------------------------------------------------------------------- */
.roxy-pagination { display: flex; flex-wrap: wrap; gap: .375rem; margin: 2.5rem 0; }
.roxy-pagination .page-numbers {
	display: inline-flex; align-items: center; justify-content: center;
	min-width: 2.25rem; height: 2.25rem; padding: 0 .75rem;
	border: 1.5px solid var(--roxy-border); border-radius: var(--roxy-radius);
	font-size: .875rem; font-weight: 600; color: var(--roxy-text);
}
.roxy-pagination .page-numbers:hover,
.roxy-pagination .page-numbers.current { background: var(--roxy-accent); border-color: var(--roxy-accent); color: #fff; text-decoration: none; }

/* --------------------------------------------------------------------------
   22. Archive
   -------------------------------------------------------------------------- */
.roxy-archive { padding: 1.75rem 0 3rem; }
.roxy-archive__header { margin-bottom: 1.5rem; }
.roxy-archive__title { font-size: 1.5rem; font-weight: 900; }
.roxy-archive__description { font-size: .9375rem; color: var(--roxy-text-muted); margin-top: .5rem; }

/* --------------------------------------------------------------------------
   23. Search Form
   -------------------------------------------------------------------------- */
.search-form { display: flex; gap: .5rem; }
.search-form input[type="search"] {
	flex: 1; padding: .55rem .875rem;
	border: 1.5px solid var(--roxy-border); border-radius: var(--roxy-radius);
	font-size: .9375rem; font-family: inherit;
}
.search-form input[type="search"]:focus { outline: none; border-color: var(--roxy-accent); }
.search-form input[type="submit"],
.search-form button {
	padding: .55rem 1.125rem;
	background: var(--roxy-accent); color: #fff;
	border: none; border-radius: var(--roxy-radius);
	font-size: .9375rem; font-weight: 600; cursor: pointer;
}

/* --------------------------------------------------------------------------
   24. Footer
   -------------------------------------------------------------------------- */
.site-footer { border-top: 3px solid var(--roxy-accent); margin-top: 2.5rem; }
.footer-widgets { background: #1a1a1a; color: #ccc; padding: 2.5rem 0; }
.footer-widgets .widget-title { color: #fff; border-bottom-color: var(--roxy-accent); }
.footer-widgets a { color: #bbb; }
.footer-widgets a:hover { color: var(--roxy-accent); }
.footer-widgets__grid { display: grid; gap: 2rem; }
.footer-widgets__grid--1col { grid-template-columns: 1fr; }
.footer-widgets__grid--2col { grid-template-columns: repeat(2, 1fr); }
.footer-widgets__grid--3col { grid-template-columns: repeat(3, 1fr); }
.footer-widgets__grid--4col { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 768px) {
	.footer-widgets__grid--3col,
	.footer-widgets__grid--4col { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
	.footer-widgets__grid--2col,
	.footer-widgets__grid--3col,
	.footer-widgets__grid--4col { grid-template-columns: 1fr; }
}

.footer-bottom { background: #111; padding: .875rem 0; }
.footer-bottom__inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: .75rem; }
.footer-bottom__credit { font-size: .8125rem; color: #888; margin: 0; }
.footer-bottom__credit a { color: #888; }
.footer-bottom__credit a:hover { color: var(--roxy-accent); }
.footer-nav__menu { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: .4rem 1.25rem; }
.footer-nav__menu a { font-size: .8125rem; color: #888; }
.footer-nav__menu a:hover { color: var(--roxy-accent); text-decoration: none; }

/* --------------------------------------------------------------------------
   25. 404 & No Results
   -------------------------------------------------------------------------- */
.roxy-404 { padding: 4rem 1.25rem; text-align: center; }
.roxy-404__title { font-size: 2.5rem; margin-bottom: .75rem; }
.roxy-404__text { color: var(--roxy-text-muted); margin-bottom: 1.5rem; }
.roxy-no-results { padding: 3rem 0; color: var(--roxy-text-muted); }

/* --------------------------------------------------------------------------
   26. Author Profile Page
   -------------------------------------------------------------------------- */
.roxy-author-profile {
	background: var(--roxy-bg-alt);
	border-bottom: 3px solid var(--roxy-accent);
	padding: 2.5rem 0;
	margin-bottom: 2.5rem;
}
.roxy-author-profile__inner {
	display: flex;
	align-items: center;
	gap: 1.5rem;
}
.roxy-author-profile__avatar {
	border-radius: 50%;
	flex-shrink: 0;
	width: 96px;
	height: 96px;
	object-fit: cover;
}
.roxy-author-profile__name { font-size: 1.75rem; font-weight: 900; margin: 0 0 .4rem; }
.roxy-author-profile__bio  { font-size: .9375rem; color: var(--roxy-text-muted); margin: 0 0 .4rem; line-height: 1.55; }
.roxy-author-profile__count { font-size: .8125rem; color: var(--roxy-text-muted); margin: 0; }
.roxy-author-articles { margin-bottom: 2.5rem; }

@media (max-width: 600px) {
	.roxy-author-profile__inner { flex-direction: column; text-align: center; }
}

/* Subtitle / deck */
.roxy-article__subtitle {
	font-size: 1.25rem;
	font-weight: 400;
	color: var(--roxy-text-muted);
	line-height: 1.45;
	margin: .25rem 0 .75rem;
	font-family: var(--roxy-font-body);
}
.roxy-photo-hero__subtitle {
	font-size: 1.125rem;
	color: rgba(255,255,255,.85);
	margin: .25rem 0 .5rem;
	line-height: 1.4;
}

/* --------------------------------------------------------------------------
   27. Advertising
   -------------------------------------------------------------------------- */
.roxy-ad {
	text-align: center;
	padding: .75rem 0;
	overflow: hidden;
}
.roxy-ad--full { width: 100%; }

/* Desktop/mobile switching — CSS only, no JS */
.roxy-ad__mobile { display: none; }
.roxy-ad__desktop { display: block; }
@media (max-width: 768px) {
	.roxy-ad__desktop { display: none; }
	.roxy-ad__mobile  { display: block; }
}

/* Zone-specific spacing */
.roxy-ad--after_header,
.roxy-ad--before_footer { background: var(--roxy-bg-alt); border-top: 1px solid var(--roxy-border); border-bottom: 1px solid var(--roxy-border); margin: 0; padding: 1rem 0; }

.roxy-ad--mid_article { margin: 1.75rem 0; }
.roxy-ad--before_article { margin-bottom: 1.5rem; }
.roxy-ad--after_article  { margin-top: 1.5rem; }
.roxy-ad--sidebar { margin-bottom: 1.5rem; }

/* --------------------------------------------------------------------------
   27. Comments
   -------------------------------------------------------------------------- */
.roxy-comments { margin-top: 3rem; padding-top: 1.5rem; border-top: 2px solid var(--roxy-border); }
.roxy-comments__title { font-size: 1.125rem; font-weight: 900; margin-bottom: 1.5rem; }
.roxy-comments__reply-title { font-size: 1.125rem; font-weight: 900; margin: 2.5rem 0 1.25rem; }
.roxy-comments__closed { font-size: .875rem; color: var(--roxy-text-muted); font-style: italic; }

.roxy-comment-list { list-style: none; margin: 0; padding: 0; }
.roxy-comment-list .children { list-style: none; padding-left: 2rem; margin: 0; border-left: 2px solid var(--roxy-border); }

.roxy-comment { padding: 1.25rem 0; border-bottom: 1px solid var(--roxy-border); }
.roxy-comment__body { display: block; }
.roxy-comment__header { display: flex; align-items: flex-start; gap: .875rem; margin-bottom: .625rem; }
.roxy-comment__avatar img { border-radius: 50%; flex-shrink: 0; }
.roxy-comment__author { font-weight: 700; font-size: .9375rem; display: block; }
.roxy-comment__author a { color: var(--roxy-text); }
.roxy-comment__date a { font-size: .8125rem; color: var(--roxy-text-muted); }
.roxy-comment__date a:hover { color: var(--roxy-accent); }
.roxy-comment__moderation { font-size: .8125rem; color: #c57a00; }
.roxy-comment__content { font-size: .9375rem; line-height: 1.65; }
.roxy-comment__content p { margin-bottom: .75em; }
.roxy-comment__actions { margin-top: .5rem; }
.roxy-comment__reply a,
.roxy-comment__edit a { font-size: .8125rem; font-weight: 600; color: var(--roxy-text-muted); margin-right: 1rem; }
.roxy-comment__reply a:hover,
.roxy-comment__edit a:hover { color: var(--roxy-accent); text-decoration: none; }

/* Comment form */
.roxy-comment-form { margin-top: 1.75rem; }
.roxy-comment-form p { margin-bottom: 1rem; }
.roxy-comment-form label { display: block; font-size: .875rem; font-weight: 600; margin-bottom: .35rem; }
.roxy-comment-form input[type="text"],
.roxy-comment-form input[type="email"],
.roxy-comment-form input[type="url"],
.roxy-comment-form textarea {
	width: 100%;
	padding: .575rem .875rem;
	border: 1.5px solid var(--roxy-border);
	border-radius: var(--roxy-radius);
	font-size: .9375rem;
	font-family: inherit;
	line-height: 1.5;
	background: var(--roxy-bg);
	color: var(--roxy-text);
}
.roxy-comment-form input:focus,
.roxy-comment-form textarea:focus { outline: none; border-color: var(--roxy-accent); box-shadow: 0 0 0 3px rgba(232,32,42,.12); }
.roxy-comment-form textarea { min-height: 140px; resize: vertical; }
.roxy-comment-form__submit {
	padding: .625rem 1.5rem;
	background: var(--roxy-accent);
	color: #fff;
	border: none;
	border-radius: var(--roxy-radius);
	font-size: 1rem;
	font-weight: 700;
	cursor: pointer;
	transition: background .15s;
}
.roxy-comment-form__submit:hover { background: #c41920; }

/* --------------------------------------------------------------------------
   28. Social Sharing
   -------------------------------------------------------------------------- */
.roxy-share {
	display: flex;
	align-items: center;
	gap: .5rem;
	margin: 1.5rem 0;
	padding: 1rem 0;
	border-top: 1px solid var(--roxy-border);
	border-bottom: 1px solid var(--roxy-border);
}
.roxy-share__label {
	font-size: .8125rem;
	font-weight: 600;
	color: var(--roxy-text-muted);
	margin-right: .25rem;
}
.roxy-share__btn {
	width: 36px;
	height: 36px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: var(--roxy-bg-alt);
	color: var(--roxy-text);
	transition: all .15s;
}
.roxy-share__btn svg { width: 18px; height: 18px; }
.roxy-share__btn:hover { transform: translateY(-2px); }
.roxy-share__btn--twitter:hover  { background: #000; color: #fff; }
.roxy-share__btn--facebook:hover { background: #1877f2; color: #fff; }
.roxy-share__btn--whatsapp:hover { background: #25d366; color: #fff; }
.roxy-share__btn--linkedin:hover { background: #0a66c2; color: #fff; }
.roxy-share__btn--email:hover    { background: var(--roxy-accent); color: #fff; }

/* --------------------------------------------------------------------------
   29. Dark Mode
   -------------------------------------------------------------------------- */
[data-theme="dark"] {
	--roxy-bg: #1a1a1a;
	--roxy-bg-alt: #252525;
	--roxy-text: #e8e8e8;
	--roxy-text-muted: #999999;
	--roxy-border: #333333;
}
[data-theme="dark"] .site-header,
[data-theme="dark"] .site-footer { background: #111; }
[data-theme="dark"] .site-header__topbar { background: #0c0c0c; border-color: #222; }
[data-theme="dark"] .roxy-ticker { background: #0f0f0f; }
[data-theme="dark"] .roxy-nav-toggle span { background: #fff; }
[data-theme="dark"] input,
[data-theme="dark"] textarea,
[data-theme="dark"] select { background: #252525; color: #e8e8e8; border-color: #333; }
[data-theme="dark"] .roxy-photo-hero__overlay { background: linear-gradient(to top, rgba(0,0,0,.95) 0%, rgba(0,0,0,.6) 50%, rgba(0,0,0,.2) 100%); }

/* Dark mode toggle button */
.roxy-dark-toggle {
	position: fixed;
	bottom: 1rem;
	right: 1rem;
	z-index: 9999;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	border: none;
	background: var(--roxy-accent);
	color: #fff;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 2px 8px rgba(0,0,0,.3);
	transition: transform .15s;
}
.roxy-dark-toggle:hover { transform: scale(1.05); }
.roxy-dark-toggle svg { width: 20px; height: 20px; }

/* Hide toggle when not enabled */
html:not([data-theme-toggle]) .roxy-dark-toggle { display: none; }

/* System preference (auto) */
@media (prefers-color-scheme: dark) {
	:root:not([data-theme]) {
		--roxy-bg: #1a1a1a;
		--roxy-bg-alt: #252525;
		--roxy-text: #e8e8e8;
		--roxy-text-muted: #999999;
		--roxy-border: #333333;
	}
	:root:not([data-theme]) .site-header,
	:root:not([data-theme]) .site-footer { background: #111; }
	:root:not([data-theme]) .site-header__topbar { background: #0c0c0c; border-color: #222; }
	:root:not([data-theme]) .roxy-ticker { background: #0f0f0f; }
}

/* Ticker dark mode */
[data-theme="dark"] .roxy-ticker { background: var(--roxy-accent); }
[data-theme="dark"] .roxy-ticker__label { background: rgba(0,0,0,.35); }
@media (prefers-color-scheme: dark) {
	:root:not([data-theme]) .roxy-ticker { background: var(--roxy-accent); }
	:root:not([data-theme]) .roxy-ticker__label { background: rgba(0,0,0,.35); }
}

/* ==========================================================================
   Section Modules (1–5)
   ========================================================================== */

/* ── Shared section wrapper ── */
.roxy-home-section {
	padding: 2rem 0 2.5rem;
	border-bottom: 1px solid var(--roxy-border);
}
.roxy-home-section:last-child { border-bottom: none; }

/* ── Section title ── */
.roxy-section-title {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	font-size: .9375rem;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: .05em;
	border-bottom: 3px solid var(--roxy-text);
	padding-bottom: .4rem;
	margin-bottom: 1.25rem;
}
.roxy-section-title a { color: var(--roxy-text); text-decoration: none; }
.roxy-section-title a:hover { color: var(--roxy-accent); }
.roxy-section-title__more a { font-size: .8rem; font-weight: 600; color: var(--roxy-text-muted); text-decoration: none; white-space: nowrap; }
.roxy-section-title__more a:hover { color: var(--roxy-accent); }

/* --------------------------------------------------------------------------
   MÓDULO 1 — Grid 4 notas
   -------------------------------------------------------------------------- */
.mod1-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1.5rem;
}
.mod1-card__img img { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; border-radius: var(--roxy-radius); }
.mod1-card__body { padding: .625rem 0 0; }
.mod1-card__title { font-size: 1rem; font-weight: 700; line-height: 1.3; margin: .35rem 0 .4rem; }
.mod1-card__title a { color: var(--roxy-text); text-decoration: none; }
.mod1-card__title a:hover { color: var(--roxy-accent); }

@media (max-width: 900px) { .mod1-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .mod1-grid { grid-template-columns: 1fr; } }

/* --------------------------------------------------------------------------
   MÓDULO 2 — Destacada grande + 3 secundarias
   -------------------------------------------------------------------------- */
.mod2-layout {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 2rem;
	align-items: start;
}
.mod2-feature { position: relative; }
.mod2-feature__img img { width: 100%; aspect-ratio: 16/10; object-fit: cover; display: block; border-radius: var(--roxy-radius); }
.mod2-feature__body { padding: .75rem 0 0; }
.mod2-feature__title { font-size: 1.5rem; font-weight: 800; line-height: 1.2; margin-bottom: .5rem; }
.mod2-feature__title a { color: var(--roxy-text); text-decoration: none; }
.mod2-feature__title a:hover { color: var(--roxy-accent); }
.mod2-feature__excerpt { font-size: .9rem; color: var(--roxy-text-muted); line-height: 1.55; margin-bottom: .4rem; }
.mod2-side { display: flex; flex-direction: column; gap: 1.25rem; }
.mod2-side-card { display: grid; grid-template-columns: 160px 1fr; gap: .875rem; align-items: start; border-bottom: 1px solid var(--roxy-border); padding-bottom: 1.1rem; }
.mod2-side-card:last-child { border-bottom: none; padding-bottom: 0; }
.mod2-side-card__img img { width: 160px; height: 100px; object-fit: cover; border-radius: var(--roxy-radius); display: block; }
.mod2-side-card__title { font-size: .9375rem; font-weight: 700; line-height: 1.3; margin: .25rem 0 .3rem; }
.mod2-side-card__title a { color: var(--roxy-text); text-decoration: none; }
.mod2-side-card__title a:hover { color: var(--roxy-accent); }

@media (max-width: 900px) {
	.mod2-layout { grid-template-columns: 1fr; }
	.mod2-side { flex-direction: row; flex-wrap: wrap; }
	.mod2-side-card { width: calc(50% - .625rem); }
}
@media (max-width: 500px) {
	.mod2-side-card { width: 100%; grid-template-columns: 100px 1fr; }
	.mod2-side-card__img img { width: 100px; height: 65px; }
}

/* --------------------------------------------------------------------------
   MÓDULO 3 — Doble lista 50/50
   -------------------------------------------------------------------------- */
.mod3-layout {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0 3rem;
}
.mod3-col__title {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	font-size: .875rem;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: .05em;
	border-bottom: 3px solid var(--roxy-text);
	padding-bottom: .4rem;
	margin-bottom: 1rem;
}
.mod3-col__title a:first-child { color: var(--roxy-text); text-decoration: none; }
.mod3-col__title a:first-child:hover { color: var(--roxy-accent); }
.mod3-col__all { font-size: .75rem; font-weight: 600; color: var(--roxy-text-muted); text-decoration: none; white-space: nowrap; }
.mod3-col__all:hover { color: var(--roxy-accent); }
.mod3-item { display: grid; grid-template-columns: 120px 1fr; gap: .75rem; align-items: start; border-bottom: 1px solid var(--roxy-border); padding: .875rem 0; }
.mod3-item:first-of-type { padding-top: 0; }
.mod3-item__img img { width: 120px; height: 80px; object-fit: cover; border-radius: var(--roxy-radius); display: block; }
.mod3-item__title { font-size: .9rem; font-weight: 700; line-height: 1.3; margin: .2rem 0 .3rem; }
.mod3-item__title a { color: var(--roxy-text); text-decoration: none; }
.mod3-item__title a:hover { color: var(--roxy-accent); }

@media (max-width: 700px) {
	.mod3-layout { grid-template-columns: 1fr; gap: 2rem 0; }
}

/* --------------------------------------------------------------------------
   MÓDULO 4 — Lead horizontal + lista
   -------------------------------------------------------------------------- */
.mod4-layout {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 2.5rem;
	align-items: start;
}
.mod4-lead__img img { width: 100%; aspect-ratio: 16/10; object-fit: cover; display: block; border-radius: var(--roxy-radius); }
.mod4-lead__body { padding: .75rem 0 0; }
.mod4-lead__title { font-size: 1.625rem; font-weight: 800; line-height: 1.2; margin-bottom: .5rem; }
.mod4-lead__title a { color: var(--roxy-text); text-decoration: none; }
.mod4-lead__title a:hover { color: var(--roxy-accent); }
.mod4-lead__excerpt { font-size: .9rem; color: var(--roxy-text-muted); line-height: 1.55; margin-bottom: .4rem; }
.mod4-list { display: flex; flex-direction: column; gap: 0; border-left: 1px solid var(--roxy-border); padding-left: 2rem; }
.mod4-list-item { display: grid; grid-template-columns: 120px 1fr; gap: .75rem; align-items: start; border-bottom: 1px solid var(--roxy-border); padding: .875rem 0; }
.mod4-list-item:first-child { padding-top: 0; }
.mod4-list-item:last-child { border-bottom: none; }
.mod4-list-item__img img { width: 120px; height: 80px; object-fit: cover; border-radius: var(--roxy-radius); display: block; }
.mod4-list-item__title { font-size: .9rem; font-weight: 700; line-height: 1.3; margin: .2rem 0 .3rem; }
.mod4-list-item__title a { color: var(--roxy-text); text-decoration: none; }
.mod4-list-item__title a:hover { color: var(--roxy-accent); }

@media (max-width: 900px) {
	.mod4-layout { grid-template-columns: 1fr; gap: 1.5rem; }
	.mod4-list { border-left: none; padding-left: 0; border-top: 1px solid var(--roxy-border); padding-top: .875rem; }
}

/* --------------------------------------------------------------------------
   MÓDULO 5 — Triple columna mixta
   -------------------------------------------------------------------------- */
.mod5-layout {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
}
.mod5-lead__img img { width: 100%; aspect-ratio: 3/2; object-fit: cover; display: block; border-radius: var(--roxy-radius); }
.mod5-lead__body { padding: .625rem 0 .5rem; }
.mod5-lead__title { font-size: 1rem; font-weight: 700; line-height: 1.3; margin: .3rem 0 .4rem; }
.mod5-lead__title a { color: var(--roxy-text); text-decoration: none; }
.mod5-lead__title a:hover { color: var(--roxy-accent); }
.mod5-bullets { list-style: none; margin: .5rem 0 0; padding: 0; }
.mod5-bullet {
	display: flex;
	flex-direction: column;
	gap: .15rem;
	border-top: 1px solid var(--roxy-border);
	padding: .625rem 0 .625rem 1rem;
	position: relative;
}
.mod5-bullet::before {
	content: '';
	position: absolute;
	left: 0; top: .875rem;
	width: 5px; height: 5px;
	border-radius: 50%;
	background: var(--roxy-accent);
}
.mod5-bullet a { font-size: .875rem; font-weight: 600; color: var(--roxy-text); text-decoration: none; line-height: 1.35; }
.mod5-bullet a:hover { color: var(--roxy-accent); }
.mod5-bullet__meta { font-size: .75rem; color: var(--roxy-text-muted); }

@media (max-width: 900px) { .mod5-layout { grid-template-columns: 1fr 1fr; } }
@media (max-width: 500px) { .mod5-layout { grid-template-columns: 1fr; } }

/* Módulo 3 — override section title (has its own title per col) */
.roxy-module-3 > .roxy-container > .roxy-section-title { display: none; }

/* ==========================================================================
   Footer Variants (1–5)
   ========================================================================== */

/* ── Shared footer base ── */
.site-footer { border-top: 3px solid var(--roxy-accent); background: var(--roxy-bg); color: var(--roxy-text); font-size: .9rem; }

/* ── Shared: brand block ── */
.roxy-footer-brand__logo { display: inline-block; text-decoration: none; margin-bottom: .75rem; }
.roxy-footer-brand__logo .custom-logo { max-height: 56px; width: auto; }
.roxy-footer-brand__name { font-family: var(--roxy-font-heading); font-size: 1.5rem; font-weight: 900; color: var(--roxy-text); }
.roxy-footer-brand__desc { font-size: .875rem; line-height: 1.6; color: var(--roxy-text-muted); margin-bottom: .5rem; }
.roxy-footer-brand__tag2 { font-size: .8rem; color: var(--roxy-text-muted); border-top: 1px solid var(--roxy-border); padding-top: .5rem; margin-top: .5rem; }

/* ── Shared: column title ── */
.roxy-footer-col-title {
	font-size: .8125rem;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: .06em;
	margin-bottom: .875rem;
	padding-bottom: .375rem;
	border-bottom: 2px solid var(--roxy-accent);
	display: inline-block;
}

/* ── Shared: nav list ── */
.roxy-footer-nav { list-style: none; margin: 0; padding: 0; }
.roxy-footer-nav li { border-bottom: 1px solid var(--roxy-border); }
.roxy-footer-nav li a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: .45rem 0;
	font-size: .875rem;
	color: var(--roxy-text);
	text-decoration: none;
}
.roxy-footer-nav li a:hover { color: var(--roxy-accent); }
.roxy-footer-nav li a::after { content: '>'; font-size: .7rem; color: var(--roxy-text-muted); }

/* ── Shared: newsletter form ── */
.roxy-footer-nl__desc { font-size: .875rem; color: var(--roxy-text-muted); margin-bottom: .75rem; line-height: 1.5; }
.roxy-footer-nl__row { display: flex; gap: 0; }
.roxy-footer-nl__input {
	flex: 1;
	padding: .55rem .75rem;
	border: 1px solid var(--roxy-border);
	border-right: none;
	border-radius: var(--roxy-radius) 0 0 var(--roxy-radius);
	font-size: .875rem;
	background: var(--roxy-bg);
	color: var(--roxy-text);
}
.roxy-footer-nl__btn {
	background: var(--roxy-accent);
	color: #fff;
	border: none;
	padding: .55rem 1.1rem;
	font-size: .875rem;
	font-weight: 700;
	cursor: pointer;
	border-radius: 0 var(--roxy-radius) var(--roxy-radius) 0;
	white-space: nowrap;
}
.roxy-footer-nl__btn:hover { opacity: .88; }

/* ── Shared: social icons ── */
.roxy-footer-social { margin-top: 1.25rem; }
.roxy-footer-social__label { font-size: .8125rem; font-weight: 900; text-transform: uppercase; letter-spacing: .06em; margin-bottom: .6rem; }
.roxy-footer-social__icons { display: flex; flex-wrap: wrap; gap: .5rem; }
.roxy-footer-social__link { display: inline-flex; align-items: center; justify-content: center; text-decoration: none; color: var(--roxy-text); transition: color .2s, background .2s; }
.roxy-footer-social__link:hover { color: var(--roxy-accent); }
/* circle style */
.roxy-footer-social__link--circle { width: 36px; height: 36px; border: 1px solid var(--roxy-border); border-radius: 50%; }
.roxy-footer-social__link--circle:hover { border-color: var(--roxy-accent); }
/* box style */
.roxy-footer-social__link--box { width: 34px; height: 34px; border: 1px solid var(--roxy-border); border-radius: 4px; }
/* box-dark style (used in dark legal bar) */
.roxy-footer-social__link--box-dark { width: 34px; height: 34px; background: rgba(255,255,255,.12); border-radius: 4px; color: #fff; }
.roxy-footer-social__link--box-dark:hover { background: var(--roxy-accent); color: #fff; }
/* inline row */
.roxy-footer-social--inline { display: flex; align-items: center; gap: .4rem; margin-top: 0; }
.roxy-footer-social__inline-label { font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; margin-right: .5rem; color: rgba(255,255,255,.7); }

/* --------------------------------------------------------------------------
   FOOTER 1 — Institucional completo
   -------------------------------------------------------------------------- */
.roxy-footer-variant-1 { border-top: 3px solid var(--roxy-accent); }
.ft1-body {
	display: grid;
	grid-template-columns: 1.2fr 1fr 1fr 1.3fr;
	gap: 2.5rem;
	padding: 3rem 0 2rem;
	border-bottom: 1px solid var(--roxy-border);
}
.ft1-legal-bar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding: 1rem 0;
	font-size: .8125rem;
}
.ft1-copyright { color: var(--roxy-text-muted); }
.ft1-legal-links { display: flex; flex-wrap: wrap; gap: .25rem .75rem; }
.ft1-legal-links a { color: var(--roxy-text-muted); text-decoration: none; }
.ft1-legal-links a:hover { color: var(--roxy-accent); }
.ft1-back-top { color: var(--roxy-accent); text-decoration: none; font-weight: 600; white-space: nowrap; }

@media (max-width: 960px) { .ft1-body { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .ft1-body { grid-template-columns: 1fr; } .ft1-legal-bar { flex-direction: column; align-items: flex-start; } }

/* --------------------------------------------------------------------------
   FOOTER 2 — Categorías + tendencia
   -------------------------------------------------------------------------- */
.ft2-trending {
	background: var(--roxy-bg);
	border-bottom: 1px solid var(--roxy-border);
	padding: .75rem 0;
}
.ft2-trending__inner { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }
.ft2-trending__label { display: flex; align-items: center; gap: .4rem; font-size: .8125rem; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; color: var(--roxy-text-muted); white-space: nowrap; }
.ft2-trending__tags { display: flex; flex-wrap: wrap; gap: .5rem; }
.ft2-tag { font-size: .8rem; font-weight: 600; color: var(--roxy-text); background: var(--roxy-bg); border: 1px solid var(--roxy-border); border-radius: 2px; padding: .2rem .6rem; text-decoration: none; }
.ft2-tag:hover { border-color: var(--roxy-accent); color: var(--roxy-accent); }
.ft2-body {
	display: grid;
	grid-template-columns: 1.2fr 1fr 1.2fr 1fr;
	gap: 2.5rem;
	padding: 2.5rem 0 2rem;
	border-bottom: 1px solid var(--roxy-border);
}
.ft2-search-row { font-size: .875rem; line-height: 1.8; color: var(--roxy-text-muted); }
.ft2-search-row a { color: var(--roxy-text); text-decoration: none; }
.ft2-search-row a:hover { color: var(--roxy-accent); }
.ft2-legal-bar { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: .875rem 0; font-size: .8125rem; flex-wrap: wrap; }
.ft2-copyright { color: var(--roxy-text-muted); }
.ft2-legal-links { display: flex; flex-wrap: wrap; gap: .25rem .75rem; }
.ft2-legal-links a { color: var(--roxy-text-muted); text-decoration: none; }
.ft2-legal-links a:hover { color: var(--roxy-accent); }

@media (max-width: 960px) { .ft2-body { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .ft2-body { grid-template-columns: 1fr; } }

/* --------------------------------------------------------------------------
   FOOTER 3 — Minimal premium
   -------------------------------------------------------------------------- */
.ft3-body {
	display: grid;
	grid-template-columns: 1.2fr 1fr 1fr 1fr;
	gap: 2.5rem;
	padding: 2.5rem 0 2rem;
	border-bottom: 1px solid var(--roxy-border);
}
.ft3-nl-bar {
	background: #f7f7f7;
	border-top: 1px solid var(--roxy-border);
	border-bottom: 1px solid var(--roxy-border);
	padding: 1.5rem 0;
}
[data-theme="dark"] .ft3-nl-bar, :root:not([data-theme]) .ft3-nl-bar { background: rgba(255,255,255,.04); }
.ft3-nl-bar__inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.ft3-nl-bar__text { display: flex; align-items: flex-start; gap: 1rem; }
.ft3-nl-bar__text strong { display: block; font-size: 1.1rem; font-weight: 800; margin-bottom: .25rem; }
.ft3-nl-bar__text p { font-size: .875rem; color: var(--roxy-text-muted); margin: 0; }
.ft3-nl-bar__form { flex: 0 0 400px; }
.ft3-nl-privacy { font-size: .75rem; color: var(--roxy-text-muted); margin-top: .4rem; }
.ft3-nl-privacy a { color: var(--roxy-accent); text-decoration: none; }
.ft3-bottom { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; padding: 1.25rem 0; flex-wrap: wrap; }
.ft3-bottom__right p { font-size: .8125rem; color: var(--roxy-text-muted); margin-bottom: .25rem; }
.ft3-bottom__right nav { display: flex; flex-wrap: wrap; gap: .25rem 1rem; font-size: .8125rem; }
.ft3-bottom__right nav a { color: var(--roxy-text-muted); text-decoration: none; }
.ft3-bottom__right nav a:hover { color: var(--roxy-accent); }

@media (max-width: 900px) { .ft3-body { grid-template-columns: 1fr 1fr; } .ft3-nl-bar__form { flex: 1 1 100%; } }
@media (max-width: 560px) { .ft3-body { grid-template-columns: 1fr; } }

/* --------------------------------------------------------------------------
   FOOTER 4 — Mapa del sitio editorial
   -------------------------------------------------------------------------- */
.ft4-body {
	display: grid;
	grid-template-columns: 1.2fr repeat(4, 1fr);
	gap: 2rem;
	padding: 2.5rem 0 2rem;
	border-bottom: 1px solid var(--roxy-border);
}
.ft4-inline-nl { margin-top: 1.25rem; padding-top: 1.25rem; border-top: 1px solid var(--roxy-border); }
.ft4-inline-nl__label { display: flex; align-items: center; gap: .4rem; font-size: .875rem; margin-bottom: .3rem; }
.ft4-inline-nl small { display: block; font-size: .8rem; color: var(--roxy-text-muted); margin-bottom: .5rem; }
.ft4-legal-bar {
	display: flex; align-items: center; flex-wrap: wrap;
	gap: .75rem 1.5rem; padding: .875rem 0;
	font-size: .8125rem; color: var(--roxy-text-muted);
}
.ft4-legal-bar p { margin: 0; }
.ft4-legal-bar a { color: var(--roxy-text-muted); text-decoration: none; }
.ft4-legal-bar a:hover { color: var(--roxy-accent); }
.ft4-location { display: flex; align-items: center; gap: .3rem; }

@media (max-width: 1100px) { .ft4-body { grid-template-columns: 1fr 1fr 1fr; } }
@media (max-width: 700px)  { .ft4-body { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px)  { .ft4-body { grid-template-columns: 1fr; } }

/* --------------------------------------------------------------------------
   FOOTER 5 — Utilidad + conversión
   -------------------------------------------------------------------------- */
.ft5-actions-bar {
	background: #f7f7f7;
	border-bottom: 1px solid var(--roxy-border);
	padding: 1.25rem 0;
}
[data-theme="dark"] .ft5-actions-bar { background: rgba(255,255,255,.04); }
.ft5-actions-bar__inner { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.ft5-action { display: flex; align-items: flex-start; gap: .875rem; }
.ft5-action__icon { flex-shrink: 0; background: rgba(var(--roxy-accent-rgb, 200,30,30),.1); border-radius: 8px; width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; }
.ft5-action strong { display: block; font-size: .875rem; font-weight: 700; margin-bottom: .2rem; }
.ft5-action p { font-size: .8rem; color: var(--roxy-text-muted); margin: 0; line-height: 1.4; }
.ft5-body {
	display: grid;
	grid-template-columns: 1.2fr 1fr 1fr 1.3fr;
	gap: 2.5rem;
	padding: 2.5rem 0 2rem;
	border-bottom: 1px solid var(--roxy-border);
}
.ft5-about-btn {
	display: inline-block;
	margin-top: .875rem;
	border: 1px solid var(--roxy-border);
	border-radius: var(--roxy-radius);
	padding: .4rem .875rem;
	font-size: .8125rem;
	font-weight: 600;
	color: var(--roxy-text);
	text-decoration: none;
}
.ft5-about-btn:hover { border-color: var(--roxy-accent); color: var(--roxy-accent); }
.ft5-legal-bar {
	background: #1a1a2e;
	color: rgba(255,255,255,.75);
}
.ft5-legal-bar__inner {
	display: flex; align-items: center; justify-content: space-between;
	flex-wrap: wrap; gap: .75rem 1.5rem;
	padding: 1rem 0;
	font-size: .8rem;
}
.ft5-legal-bar p { margin: 0; }
.ft5-legal-bar nav { display: flex; flex-wrap: wrap; gap: .25rem .75rem; }
.ft5-legal-bar nav a { color: rgba(255,255,255,.65); text-decoration: none; }
.ft5-legal-bar nav a:hover { color: #fff; }

@media (max-width: 960px) { .ft5-actions-bar__inner { grid-template-columns: 1fr 1fr; } .ft5-body { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .ft5-actions-bar__inner { grid-template-columns: 1fr; } .ft5-body { grid-template-columns: 1fr; } }

/* ==========================================================================
   Hero Variants — Headers & Heros
   ========================================================================== */

/* --------------------------------------------------------------------------
   VARIANT 1 — Logo centered, nav split, ticker bar
   -------------------------------------------------------------------------- */
.hv1-header {
	background: #fff;
	border-bottom: 1px solid var(--roxy-border);
}
.hv1-header__top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 1rem 0 .75rem;
}
.hv1-branding { text-align: center; flex: 1; }
.hv1-branding__link { text-decoration: none; display: inline-block; }
.hv1-branding__link .custom-logo { max-height: 60px; width: auto; }
.hv1-branding__name {
	display: block;
	font-family: var(--roxy-font-heading);
	font-size: 2rem;
	font-weight: 700;
	color: var(--roxy-text);
	letter-spacing: -.02em;
}
.hv1-branding__tagline { display: block; font-size: .75rem; color: var(--roxy-text-muted); }
.hv1-nav-bar {
	background: var(--roxy-nav-bg);
	border-top: 1px solid rgba(255,255,255,.1);
}
.hv1-nav-bar .roxy-container { display: flex; justify-content: center; }
.hv1-nav__menu { display: flex; gap: 0; list-style: none; margin: 0; padding: 0; }
.hv1-nav__menu li > a {
	display: block;
	padding: .6rem 1rem;
	font-size: .8125rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: .04em;
	color: var(--roxy-nav-text);
	text-decoration: none;
}
.hv1-nav__menu li > a:hover { color: var(--roxy-accent); }
.hv1-nav__menu .current-menu-item > a { color: var(--roxy-accent); }
.hv1-header__actions { display: flex; align-items: center; gap: .75rem; }
.hv1-search-btn { background: none; border: none; cursor: pointer; color: var(--roxy-text); padding: .25rem; }
.hv1-subscribe-btn {
	background: var(--roxy-nav-bg);
	color: #fff;
	font-size: .8125rem;
	font-weight: 700;
	padding: .4rem 1rem;
	border-radius: 2px;
	text-decoration: none;
	white-space: nowrap;
}
.hv1-subscribe-btn:hover { background: var(--roxy-accent); text-decoration: none; }

/* HV1 Ticker */
.hv1-ticker {
	background: var(--roxy-accent);
	color: #fff;
	padding: .3rem 0;
	overflow: hidden;
}
.hv1-ticker__inner { display: flex; align-items: center; gap: .75rem; overflow: hidden; }
.hv1-ticker__live {
	flex-shrink: 0;
	font-size: .6875rem;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: .06em;
	background: #fff;
	color: var(--roxy-accent);
	padding: .15rem .5rem;
	border-radius: 2px;
}
.hv1-ticker__label {
	flex-shrink: 0;
	font-size: .75rem;
	font-weight: 700;
	text-transform: uppercase;
	background: rgba(0,0,0,.25);
	padding: .15rem .5rem;
	border-radius: 2px;
}
.hv1-ticker__track { overflow: hidden; flex: 1; }
.hv1-ticker__list {
	display: flex;
	gap: 2.5rem;
	list-style: none;
	margin: 0;
	padding: 0;
	white-space: nowrap;
	animation: roxy-ticker-scroll 30s linear infinite;
}
.hv1-ticker__list:hover { animation-play-state: paused; }
.hv1-ticker__list .roxy-ticker__item a,
.hv1-ticker__list li a { color: #fff; font-size: .8125rem; font-weight: 500; text-decoration: none; }
.hv1-ticker__all {
	flex-shrink: 0;
	font-size: .75rem;
	font-weight: 600;
	color: #fff;
	text-decoration: none;
	white-space: nowrap;
	opacity: .85;
}
.hv1-ticker__all:hover { opacity: 1; text-decoration: underline; }

/* HV1 Hero */
.hv1-hero {
	display: grid;
	grid-template-columns: 1fr 280px;
	gap: 2rem;
	margin: 1.75rem auto 2rem;
	align-items: start;
}
.hv1-hero__main {
	display: grid;
	grid-template-columns: 1.4fr 1fr;
	gap: 1.75rem;
	align-items: start;
}
.hv1-hero__img-link img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: var(--roxy-radius); display: block; }
.hv1-hero__body { padding: .5rem 0; }
.hv1-hero__title { font-size: 1.75rem; font-weight: 800; line-height: 1.15; margin-bottom: .6rem; }
.hv1-hero__title a { color: var(--roxy-text); text-decoration: none; }
.hv1-hero__title a:hover { color: var(--roxy-accent); }
.hv1-hero__rule { width: 2.5rem; height: 3px; background: var(--roxy-accent); margin: .75rem 0; }
.hv1-hero__excerpt { font-size: .9375rem; color: var(--roxy-text-muted); line-height: 1.6; margin-bottom: .5rem; }

/* HV1 Sidebar cards */
.hv1-hero__side { display: flex; flex-direction: column; gap: 1.25rem; border-left: 1px solid var(--roxy-border); padding-left: 1.5rem; }
.hv1-side-card { display: flex; gap: .75rem; align-items: flex-start; }
.hv1-side-card__img img { width: 90px; height: 60px; object-fit: cover; border-radius: var(--roxy-radius); flex-shrink: 0; display: block; }
.hv1-side-card__title { font-size: .875rem; font-weight: 700; line-height: 1.3; margin: .25rem 0 .2rem; }
.hv1-side-card__title a { color: var(--roxy-text); text-decoration: none; }
.hv1-side-card__title a:hover { color: var(--roxy-accent); }

@media (max-width: 900px) {
	.hv1-hero { grid-template-columns: 1fr; }
	.hv1-hero__main { grid-template-columns: 1fr; }
	.hv1-hero__side { border-left: none; border-top: 1px solid var(--roxy-border); padding-left: 0; padding-top: 1rem; flex-direction: row; flex-wrap: wrap; }
}
@media (max-width: 600px) {
	.hv1-nav-bar { display: none; }
	.site-nav__toggle { display: flex; }
}

/* --------------------------------------------------------------------------
   VARIANT 2 — Logo left + initial, nav center, full-width image + overlay
   -------------------------------------------------------------------------- */
.hv2-header {
	background: #fff;
	border-bottom: 1px solid var(--roxy-border);
}
.hv2-header__inner {
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	gap: 1.5rem;
	padding: .875rem 0;
}
.hv2-branding__link { display: flex; align-items: center; gap: .625rem; text-decoration: none; }
.hv2-branding__initial {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	background: var(--roxy-text);
	color: #fff;
	font-family: var(--roxy-font-heading);
	font-size: 1.375rem;
	font-weight: 900;
	flex-shrink: 0;
	border-radius: 2px;
}
.hv2-branding__text strong { display: block; font-size: 1rem; font-weight: 800; color: var(--roxy-text); letter-spacing: .01em; }
.hv2-branding__text small { display: block; font-size: .7rem; color: var(--roxy-text-muted); }
.hv2-nav__menu {
	display: flex;
	gap: 0;
	list-style: none;
	margin: 0;
	padding: 0;
	justify-content: center;
}
.hv2-nav__menu li > a {
	display: block;
	padding: .5rem .875rem;
	font-size: .8125rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .04em;
	color: var(--roxy-text);
	text-decoration: none;
	border-bottom: 2px solid transparent;
	transition: border-color .15s, color .15s;
}
.hv2-nav__menu li > a:hover,
.hv2-nav__menu .current-menu-item > a { color: var(--roxy-accent); border-bottom-color: var(--roxy-accent); }
.hv2-header__actions { display: flex; align-items: center; gap: .75rem; }
.hv2-search-btn,
.hv2-menu-btn { background: none; border: none; cursor: pointer; color: var(--roxy-text); padding: .25rem; }
.hv2-menu-btn { border-left: 1px solid var(--roxy-border); padding-left: .75rem; }

/* HV2 Hero */
.hv2-hero {
	display: grid;
	grid-template-columns: 1.85fr 1fr;
	gap: 0 1.75rem;
	margin: 0 auto 2rem;
	align-items: start;
}
.hv2-hero__feature { position: relative; overflow: hidden; border-radius: var(--roxy-radius); }
.hv2-hero__img-link img { width: 100%; aspect-ratio: 16/10; object-fit: cover; display: block; }
.hv2-hero__card {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 65%;
	background: #fff;
	padding: 1.25rem 1.5rem 1.25rem 1.25rem;
	border-top-right-radius: var(--roxy-radius);
}
.hv2-hero__title { font-size: 1.5rem; font-weight: 800; line-height: 1.2; margin-bottom: .5rem; }
.hv2-hero__title a { color: var(--roxy-text); text-decoration: none; }
.hv2-hero__title a:hover { color: var(--roxy-accent); }
.hv2-hero__excerpt { font-size: .875rem; color: var(--roxy-text-muted); line-height: 1.55; margin-bottom: .5rem; }
.hv2-hero__side { display: flex; flex-direction: column; gap: 1.125rem; padding-top: .25rem; }
.hv2-side-card { display: grid; grid-template-columns: 1fr; gap: .5rem; border-bottom: 1px solid var(--roxy-border); padding-bottom: 1rem; }
.hv2-side-card:last-child { border-bottom: none; }
.hv2-side-card__img img { width: 100%; aspect-ratio: 16/9; object-fit: cover; border-radius: var(--roxy-radius); display: block; }
.hv2-side-card__title { font-size: .9375rem; font-weight: 700; line-height: 1.3; margin: .2rem 0; }
.hv2-side-card__title a { color: var(--roxy-text); text-decoration: none; }
.hv2-side-card__title a:hover { color: var(--roxy-accent); }

@media (max-width: 900px) {
	.hv2-nav { display: none; }
	.hv2-header__inner { grid-template-columns: 1fr auto; }
	.hv2-hero { grid-template-columns: 1fr; }
	.hv2-hero__card { position: static; width: auto; border-radius: 0 0 var(--roxy-radius) var(--roxy-radius); }
}

/* --------------------------------------------------------------------------
   VARIANT 3 — Dark topbar, logo block, nav with dropdowns, latest list
   -------------------------------------------------------------------------- */
.hv3-topbar {
	background: #1a1a1a;
	color: #ccc;
	padding: .4rem 0;
	font-size: .75rem;
}
.hv3-topbar__inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.hv3-topbar__left { display: flex; align-items: center; gap: .5rem; }
.hv3-topbar__hoy { color: var(--roxy-accent); font-weight: 700; text-transform: uppercase; letter-spacing: .05em; }
.hv3-topbar__menu { display: flex; gap: 0; list-style: none; margin: 0; padding: 0; }
.hv3-topbar__menu li > a {
	color: #ccc;
	font-size: .75rem;
	font-weight: 500;
	padding: 0 .625rem;
	border-right: 1px solid #333;
	text-decoration: none;
}
.hv3-topbar__menu li:last-child > a { border-right: none; }
.hv3-topbar__menu a:hover { color: #fff; }
.hv3-topbar__weather { display: flex; align-items: center; gap: .3rem; color: #aaa; }

.hv3-brand-nav { background: #fff; border-bottom: 1px solid var(--roxy-border); }
.hv3-brand-nav__inner { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 1.5rem; padding: .875rem 0; }
.hv3-branding__link { display: flex; align-items: center; gap: .625rem; text-decoration: none; }
.hv3-branding__icon {
	display: flex; align-items: center; justify-content: center;
	width: 44px; height: 44px;
	background: var(--roxy-accent);
	color: #fff;
	font-family: var(--roxy-font-heading);
	font-size: 1.5rem; font-weight: 900;
	border-radius: 4px;
	flex-shrink: 0;
}
.hv3-branding__text strong { display: block; font-size: 1rem; font-weight: 800; color: var(--roxy-text); }
.hv3-branding__text small { display: block; font-size: .7rem; color: var(--roxy-text-muted); }
.hv3-nav__menu { display: flex; gap: 0; list-style: none; margin: 0; padding: 0; }
.hv3-nav__menu li { position: relative; }
.hv3-nav__menu li > a {
	display: block;
	padding: .5rem .875rem;
	font-size: .8125rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .03em;
	color: var(--roxy-text);
	text-decoration: none;
}
.hv3-nav__menu li > a:hover { color: var(--roxy-accent); }
.hv3-nav__menu .sub-menu {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	background: #fff;
	border: 1px solid var(--roxy-border);
	border-top: 3px solid var(--roxy-accent);
	min-width: 200px;
	z-index: 200;
	list-style: none;
	margin: 0;
	padding: .5rem 0;
	box-shadow: 0 4px 12px rgba(0,0,0,.1);
}
.hv3-nav__menu li:hover > .sub-menu { display: block; }
.hv3-nav__menu .sub-menu li > a { font-size: .8rem; font-weight: 500; text-transform: none; padding: .4rem 1rem; }
.hv3-search-btn { background: none; border: none; cursor: pointer; color: var(--roxy-text); padding: .25rem; }
.hv3-hamburger {
	display: none;
	background: none;
	border: 1.5px solid var(--roxy-border);
	border-radius: var(--roxy-radius);
	padding: .3rem .45rem;
	cursor: pointer;
	color: var(--roxy-text);
	align-items: center;
	justify-content: center;
}

/* HV3 Hero */
.hv3-hero {
	display: grid;
	grid-template-columns: 1.5fr 1fr;
	gap: 2rem;
	margin: 1.75rem auto 0;
	align-items: start;
}
.hv3-hero__main {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1.5rem;
	align-items: start;
}
.hv3-hero__img-link img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: var(--roxy-radius); display: block; }
.hv3-hero__body { padding: .25rem 0; }
.hv3-hero__title { font-size: 1.625rem; font-weight: 800; line-height: 1.2; margin-bottom: .5rem; }
.hv3-hero__title a { color: var(--roxy-text); text-decoration: none; }
.hv3-hero__title a:hover { color: var(--roxy-accent); }
.hv3-hero__rule { width: 2.5rem; height: 3px; background: var(--roxy-accent); margin: .65rem 0; }
.hv3-hero__excerpt { font-size: .9375rem; color: var(--roxy-text-muted); line-height: 1.6; margin-bottom: .5rem; }

/* HV3 Latest sidebar */
.hv3-hero__latest { border-left: 1px solid var(--roxy-border); padding-left: 1.5rem; }
.hv3-latest__title {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: .5rem;
	font-size: .9375rem;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: .04em;
	border-bottom: 3px solid var(--roxy-text);
	padding-bottom: .4rem;
	margin-bottom: .75rem;
}
.hv3-latest__all { font-size: .75rem; font-weight: 600; color: var(--roxy-accent); text-decoration: none; white-space: nowrap; }
.hv3-latest__list { list-style: none; margin: 0; padding: 0; }
.hv3-latest__item {
	display: grid;
	grid-template-columns: 3rem 1fr;
	gap: .5rem;
	align-items: baseline;
	padding: .625rem 0;
	border-bottom: 1px solid var(--roxy-border);
}
.hv3-latest__item:last-child { border-bottom: none; }
.hv3-latest__time { font-size: .75rem; font-weight: 700; color: var(--roxy-accent); font-variant-numeric: tabular-nums; }
.hv3-latest__link { font-size: .875rem; font-weight: 600; color: var(--roxy-text); text-decoration: none; line-height: 1.35; }
.hv3-latest__link:hover { color: var(--roxy-accent); }

/* HV3 bottom row */
.hv3-bottom-row {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
	margin: 1.5rem auto 2rem;
	border-top: 1px solid var(--roxy-border);
	padding-top: 1.5rem;
}
.hv3-bottom-card__img img { width: 100%; aspect-ratio: 16/9; object-fit: cover; border-radius: var(--roxy-radius); display: block; margin-bottom: .625rem; }
.hv3-bottom-card__title { font-size: .9375rem; font-weight: 700; line-height: 1.3; margin: .25rem 0; }
.hv3-bottom-card__title a { color: var(--roxy-text); text-decoration: none; }
.hv3-bottom-card__title a:hover { color: var(--roxy-accent); }

@media (max-width: 900px) {
	.hv3-brand-nav__inner { grid-template-columns: 1fr auto; }
	.hv3-nav { display: none; }
	.hv3-hero { grid-template-columns: 1fr; }
	.hv3-hero__main { grid-template-columns: 1fr; }
	.hv3-hero__latest { border-left: none; border-top: 1px solid var(--roxy-border); padding-left: 0; padding-top: 1rem; }
	.hv3-bottom-row { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
	.hv3-bottom-row { grid-template-columns: 1fr; }
	.hv3-topbar__menu { display: none; }
}

/* ==========================================================================
   Article Styles (art1–art5)
   Shared helpers
   ========================================================================== */

/* Shared: sidebar block */
.art1-sidebar-block, .art2-sidebar-block, .art3-sidebar-block,
.art4-sidebar-block, .art5-sidebar-block {
	margin-bottom: 2rem;
}
.art1-sidebar-block__title, .art2-sidebar-block__title, .art3-sidebar-block__title,
.art4-sidebar-block__title, .art5-sidebar-block__title {
	font-size: .8rem;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: .07em;
	padding-bottom: .4rem;
	margin-bottom: .875rem;
	border-bottom: 2px solid var(--roxy-accent);
}

/* Shared: sidebar note (thumb + body) */
.art1-related-item, .art2-sidebar-related, .art3-sidebar-note,
.art4-sidebar-note, .art5-sidebar-note {
	display: grid;
	grid-template-columns: 80px 1fr;
	gap: .625rem;
	padding: .75rem 0;
	border-bottom: 1px solid var(--roxy-border);
}
.art1-related-item__img img, .art2-sidebar-related__img img, .art3-sidebar-note__img img,
.art4-sidebar-note__img img, .art5-sidebar-note__img img {
	width: 80px; height: 56px; object-fit: cover; border-radius: 2px;
}
.art1-related-item__body h4, .art2-sidebar-related__body h4, .art3-sidebar-note__body h4,
.art4-sidebar-note__body h4, .art5-sidebar-note__body h4 {
	font-size: .875rem;
	font-weight: 700;
	line-height: 1.35;
	margin: .2rem 0 0;
}
.art1-related-item__body h4 a, .art2-sidebar-related__body h4 a, .art3-sidebar-note__body h4 a,
.art4-sidebar-note__body h4 a, .art5-sidebar-note__body h4 a {
	color: var(--roxy-text);
	text-decoration: none;
}
.art1-related-item__body h4 a:hover, .art2-sidebar-related__body h4 a:hover,
.art3-sidebar-note__body h4 a:hover, .art4-sidebar-note__body h4 a:hover,
.art5-sidebar-note__body h4 a:hover { color: var(--roxy-accent); }

/* Shared: most-read list */
.art1-most-read, .art5-most-read { list-style: none; padding: 0; margin: 0; }
.art1-most-read__item, .art5-most-read__item {
	display: flex; gap: .625rem; align-items: flex-start;
	padding: .625rem 0; border-bottom: 1px solid var(--roxy-border);
	font-size: .875rem;
}
.art1-most-read__num, .art5-most-read__num {
	font-size: 1rem; font-weight: 900; color: var(--roxy-accent);
	min-width: 1.8rem; line-height: 1.35;
}
.art1-most-read__title, .art5-most-read__item a { color: var(--roxy-text); text-decoration: none; line-height: 1.4; }
.art1-most-read__title:hover, .art5-most-read__item a:hover { color: var(--roxy-accent); }

/* Shared: share buttons (small inline) */
.art1-share-btn, .art2-share-btn, .art3-share-btn, .art5-share-btn {
	display: inline-flex; align-items: center; justify-content: center;
	width: 28px; height: 28px; border-radius: 50%;
	border: 1px solid var(--roxy-border);
	color: var(--roxy-text); text-decoration: none;
	transition: background .15s, color .15s;
}
.art1-share-btn:hover, .art2-share-btn:hover, .art3-share-btn:hover,
.art5-share-btn:hover { background: var(--roxy-accent); color: #fff; border-color: var(--roxy-accent); }

/* Shared: tags pill */
.art1-tags, .art2-tags, .art3-tags, .art4-tags, .art5-tags {
	display: flex; flex-wrap: wrap; gap: .4rem; margin-top: 1.5rem;
}
.art1-tags a, .art2-tags a, .art3-tags a, .art4-tags a, .art5-tags a,
.art3-sidebar-tag, .art5-sidebar-tag {
	font-size: .8rem; font-weight: 600;
	background: var(--roxy-bg-alt);
	border: 1px solid var(--roxy-border);
	color: var(--roxy-text);
	padding: .25rem .65rem;
	border-radius: 3px;
	text-decoration: none;
}
.art1-tags a:hover, .art2-tags a:hover, .art3-tags a:hover, .art4-tags a:hover,
.art5-tags a:hover, .art3-sidebar-tag:hover, .art5-sidebar-tag:hover {
	border-color: var(--roxy-accent); color: var(--roxy-accent);
}
.art1-tags__label, .art5-tags__label { font-size: .8rem; font-weight: 700; color: var(--roxy-text-muted); }
.art3-sidebar-tags, .art5-sidebar-tags { display: flex; flex-wrap: wrap; gap: .4rem; }

/* Shared: sidebar author block */
.art3-sidebar-author__inner, .art4-sidebar-author__inner, .art5-sidebar-author__inner {
	display: flex; gap: .75rem; margin-bottom: .75rem;
}
.art3-sidebar-author__inner img, .art4-sidebar-author__inner img,
.art5-sidebar-author__inner img { border-radius: 50%; flex-shrink: 0; }
.art3-sidebar-author__inner strong, .art4-sidebar-author__inner strong,
.art5-sidebar-author__inner strong { display: block; font-weight: 700; font-size: .9rem; }
.art3-sidebar-author__inner span, .art4-sidebar-author__inner span,
.art5-sidebar-author__inner span { font-size: .8rem; color: var(--roxy-text-muted); }
.art3-sidebar-author__bio, .art4-sidebar-author__bio, .art5-sidebar-author__bio {
	font-size: .8125rem; color: var(--roxy-text-muted); line-height: 1.5; margin-bottom: .5rem;
}
.art3-sidebar-author__link, .art4-sidebar-author__link, .art5-sidebar-author__link {
	font-size: .8125rem; font-weight: 600; color: var(--roxy-accent); text-decoration: none;
}
.art5-verified { color: #1da1f2; font-size: .75rem; }

/* Shared: sidebar "more" link */
.art3-sidebar-block__more { font-size: .8125rem; font-weight: 600; color: var(--roxy-accent); text-decoration: none; display: block; margin-top: .5rem; }

/* --------------------------------------------------------------------------
   ART1 — Clásico editorial (2 cols: article | sidebar)
   -------------------------------------------------------------------------- */
.art1-layout {
	display: grid;
	grid-template-columns: 1fr 320px;
	gap: 3rem;
	padding: 1.5rem 0 3rem;
	align-items: start;
}
.art1-article__header { margin-bottom: 1.25rem; }
.art1-article__title { font-size: clamp(1.6rem, 3vw, 2.4rem); line-height: 1.2; font-weight: 900; margin: .5rem 0; }
.art1-article__lead { font-size: 1.1rem; line-height: 1.6; color: var(--roxy-text-muted); margin-bottom: .875rem; }
.art1-article__meta { display: flex; align-items: center; gap: .75rem; flex-wrap: wrap; font-size: .875rem; padding-bottom: .875rem; border-bottom: 1px solid var(--roxy-border); }
.art1-author-avatar img { border-radius: 50%; }
.art1-share-inline { display: flex; gap: .3rem; margin-left: auto; }
.art1-article__hero { margin: 1.25rem 0; }
.art1-article__hero img { width: 100%; height: auto; border-radius: 3px; }
.art1-article__caption { font-size: .8rem; color: var(--roxy-text-muted); margin-top: .4rem; }
.art1-article__body { font-size: 1.0625rem; line-height: 1.75; }
.art1-article__footer { margin-top: 1.5rem; }
.art1-author-box { display: flex; gap: 1rem; align-items: flex-start; padding: 1.25rem; background: var(--roxy-bg-alt); border-radius: 6px; margin-top: 2rem; border: 1px solid var(--roxy-border); }
.art1-author-box img { border-radius: 50%; flex-shrink: 0; }
.art1-author-box__name a { color: var(--roxy-text); text-decoration: none; font-size: 1rem; font-weight: 700; }
.art1-author-box__role { font-size: .8125rem; color: var(--roxy-text-muted); display: block; }
.art1-nav-posts { display: flex; gap: 1rem; margin-top: 2rem; border-top: 1px solid var(--roxy-border); padding-top: 1.25rem; }
.art1-nav-posts__item { flex: 1; display: flex; flex-direction: column; gap: .2rem; text-decoration: none; color: var(--roxy-text); }
.art1-nav-posts__item--next { align-items: flex-end; text-align: right; }
.art1-nav-posts__dir { font-size: .75rem; color: var(--roxy-accent); font-weight: 700; text-transform: uppercase; letter-spacing: .04em; }
.art1-nav-posts__title { font-size: .9rem; font-weight: 700; line-height: 1.35; }
.art1-nav-posts__title:hover { color: var(--roxy-accent); }
.art1-sidebar { position: sticky; top: 1.5rem; }

@media (max-width: 860px) { .art1-layout { grid-template-columns: 1fr; } .art1-sidebar { position: static; } }

/* --------------------------------------------------------------------------
   ART2 — Inmersivo con periodista destacado
   -------------------------------------------------------------------------- */
.art2-hero { position: relative; min-height: 420px; display: flex; align-items: flex-end; overflow: hidden; }
.art2-hero__img { position: absolute; inset: 0; }
.art2-hero__img img { width: 100%; height: 100%; object-fit: cover; }
.art2-hero__overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.88) 0%, rgba(0,0,0,.45) 55%, rgba(0,0,0,.1) 100%); }
.art2-hero__content { position: relative; z-index: 2; padding: 3rem 0 2rem; color: #fff; width: 100%; }
.art2-hero__content .roxy-cat-badge { margin-bottom: .5rem; }
.art2-hero__title { font-size: clamp(1.8rem, 4vw, 3rem); line-height: 1.15; font-weight: 900; margin: .5rem 0; color: #fff; }
.art2-hero__lead { font-size: 1.1rem; color: rgba(255,255,255,.85); line-height: 1.55; margin-bottom: .875rem; }
.art2-hero__meta { display: flex; align-items: center; gap: .75rem; flex-wrap: wrap; color: rgba(255,255,255,.8); font-size: .875rem; }
.art2-hero__share { display: flex; gap: .3rem; margin-left: auto; }
.art2-share-btn { width: 28px; height: 28px; border-radius: 50%; border: 1px solid rgba(255,255,255,.4); color: #fff; display: inline-flex; align-items: center; justify-content: center; text-decoration: none; }
.art2-share-btn:hover { background: var(--roxy-accent); border-color: var(--roxy-accent); }
.art2-body-layout { display: grid; grid-template-columns: 1fr 300px; gap: 3rem; padding: 2rem 0 3rem; align-items: start; }
.art2-author-card { display: flex; gap: 1rem; align-items: flex-start; padding: 1.25rem; background: var(--roxy-bg-alt); border-radius: 6px; border: 1px solid var(--roxy-border); margin-bottom: 1.75rem; }
.art2-author-card img { border-radius: 50%; flex-shrink: 0; }
.art2-author-card__body { display: flex; flex-direction: column; gap: .2rem; }
.art2-author-card__name { font-weight: 800; font-size: .975rem; }
.art2-author-card__role { font-size: .8rem; color: var(--roxy-text-muted); }
.art2-author-card__link { font-size: .8125rem; color: var(--roxy-accent); text-decoration: none; font-weight: 600; margin-top: .3rem; }
.art2-article__body { font-size: 1.0625rem; line-height: 1.75; }
.art2-article__caption { font-size: .8rem; color: var(--roxy-text-muted); margin-top: .4rem; }
.art2-related { margin-top: 2.5rem; border-top: 2px solid var(--roxy-accent); padding-top: 1.25rem; }
.art2-related__title { font-size: .9rem; font-weight: 900; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 1rem; }
.art2-related__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.art2-related__img img { width: 100%; aspect-ratio: 16/9; object-fit: cover; border-radius: 3px; }
.art2-related__body h4 { font-size: .875rem; font-weight: 700; line-height: 1.35; margin: .4rem 0 .25rem; }
.art2-related__body h4 a { color: var(--roxy-text); text-decoration: none; }
.art2-related__body h4 a:hover { color: var(--roxy-accent); }
.art2-sidebar { position: sticky; top: 1.5rem; }
.art2-progress-bar { height: 6px; background: var(--roxy-border); border-radius: 3px; overflow: hidden; margin: .5rem 0; }
.art2-progress-bar__fill { height: 100%; background: var(--roxy-accent); width: 0; transition: width .1s linear; border-radius: 3px; }
.art2-progress-text { font-size: .8rem; color: var(--roxy-text-muted); }

@media (max-width: 860px) { .art2-body-layout { grid-template-columns: 1fr; } .art2-sidebar { position: static; } .art2-related__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .art2-related__grid { grid-template-columns: 1fr; } .art2-hero { min-height: 300px; } }

/* --------------------------------------------------------------------------
   ART3 — Modular inteligente (2 cols: article | sidebar)
   -------------------------------------------------------------------------- */
.art3-layout { display: grid; grid-template-columns: 1fr 300px; gap: 3rem; padding: 1.5rem 0 3rem; align-items: start; }
.art3-article__header { margin-bottom: 1.25rem; }
.art3-article__title { font-size: clamp(1.5rem, 3vw, 2.2rem); line-height: 1.2; font-weight: 900; margin: .5rem 0; }
.art3-article__lead { font-size: 1.05rem; line-height: 1.6; color: var(--roxy-text-muted); margin-bottom: .875rem; }
.art3-article__meta { display: flex; align-items: center; gap: .5rem; flex-wrap: wrap; font-size: .875rem; padding-bottom: .875rem; border-bottom: 1px solid var(--roxy-border); }
.art3-author-inline { display: flex; align-items: center; gap: .4rem; text-decoration: none; color: var(--roxy-text); font-weight: 600; }
.art3-author-inline img { border-radius: 50%; }
.art3-share-label { font-size: .8rem; color: var(--roxy-text-muted); margin-left: auto; }
.art3-share-icons { display: flex; gap: .3rem; }
.art3-article__hero { margin: 1.25rem 0; }
.art3-article__hero img { width: 100%; border-radius: 3px; }
.art3-article__caption { font-size: .8rem; color: var(--roxy-text-muted); margin-top: .4rem; }
.art3-article__body { font-size: 1.05rem; line-height: 1.75; }
.art3-seguir-leyendo { margin-top: 2.5rem; border-top: 2px solid var(--roxy-accent); padding-top: 1.25rem; }
.art3-seguir-leyendo__title { font-size: .9rem; font-weight: 900; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 1rem; }
.art3-seguir-leyendo__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.art3-seguir-item__img img { width: 100%; aspect-ratio: 16/9; object-fit: cover; border-radius: 3px; }
.art3-seguir-item__body { margin-top: .4rem; }
.art3-seguir-item__title { font-size: .875rem; font-weight: 700; line-height: 1.35; }
.art3-seguir-item__title a { color: var(--roxy-text); text-decoration: none; }
.art3-seguir-item__title a:hover { color: var(--roxy-accent); }
.art3-sidebar { position: sticky; top: 1.5rem; }

@media (max-width: 860px) { .art3-layout { grid-template-columns: 1fr; } .art3-sidebar { position: static; } .art3-seguir-leyendo__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .art3-seguir-leyendo__grid { grid-template-columns: 1fr; } }

/* --------------------------------------------------------------------------
   ART4 — Reportaje premium (3 cols: rail | article | sidebar)
   -------------------------------------------------------------------------- */
.art4-layout { display: grid; grid-template-columns: 52px 1fr 300px; gap: 2rem; padding: 1.5rem 0 3rem; align-items: start; }
.art4-share-rail { position: sticky; top: 1.5rem; }
.art4-share-rail__inner { display: flex; flex-direction: column; align-items: center; gap: .5rem; }
.art4-share-rail__label { font-size: .65rem; text-transform: uppercase; letter-spacing: .08em; color: var(--roxy-text-muted); writing-mode: vertical-rl; margin: .25rem 0; }
.art4-share-btn { width: 36px; height: 36px; border-radius: 50%; border: 1px solid var(--roxy-border); color: var(--roxy-text); background: none; cursor: pointer; display: flex; align-items: center; justify-content: center; text-decoration: none; transition: background .15s, color .15s; padding: 0; }
.art4-share-btn:hover { background: var(--roxy-accent); color: #fff; border-color: var(--roxy-accent); }
/* Progress ring */
.art4-progress-ring { position: relative; width: 36px; height: 36px; margin-bottom: .25rem; }
.art4-progress-ring__svg { transform: rotate(-90deg); width: 36px; height: 36px; }
.art4-progress-ring__track { stroke: var(--roxy-border); }
.art4-progress-ring__fill { stroke: var(--roxy-accent); transition: stroke-dasharray .1s linear; }
.art4-progress-ring__pct { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); font-size: .55rem; font-weight: 800; color: var(--roxy-text); }
.art4-article__header { margin-bottom: 1.25rem; }
.art4-article__title { font-size: clamp(1.6rem, 3vw, 2.6rem); line-height: 1.15; font-weight: 900; margin: .5rem 0; }
.art4-article__lead { font-size: 1.1rem; line-height: 1.6; color: var(--roxy-text-muted); margin-bottom: .875rem; }
.art4-article__meta-row { display: flex; align-items: center; gap: .75rem; flex-wrap: wrap; font-size: .875rem; padding-bottom: .875rem; border-bottom: 1px solid var(--roxy-border); }
.art4-author-inline { display: flex; align-items: center; gap: .4rem; text-decoration: none; color: var(--roxy-text); }
.art4-author-inline img { border-radius: 50%; }
.art4-article__hero { margin: 1.25rem 0; }
.art4-article__hero img { width: 100%; border-radius: 3px; }
.art4-article__caption { font-size: .8rem; color: var(--roxy-text-muted); margin-top: .4rem; }
.art4-article__body { font-size: 1.0625rem; line-height: 1.75; }
.art4-nav-posts { display: flex; justify-content: space-between; gap: 1rem; margin-top: 2rem; border-top: 1px solid var(--roxy-border); padding-top: 1.25rem; }
.art4-nav-posts__item { display: flex; align-items: center; gap: .75rem; text-decoration: none; color: var(--roxy-text); max-width: 48%; }
.art4-nav-posts__item img { width: 72px; height: 48px; object-fit: cover; border-radius: 2px; flex-shrink: 0; }
.art4-nav-posts__item--next { flex-direction: row-reverse; }
.art4-nav-posts__dir { font-size: .7rem; color: var(--roxy-accent); font-weight: 700; text-transform: uppercase; }
.art4-nav-posts__title { font-size: .875rem; font-weight: 700; line-height: 1.35; display: block; }
.art4-nav-posts__title:hover { color: var(--roxy-accent); }
.art4-sidebar { position: sticky; top: 1.5rem; }

@media (max-width: 960px) { .art4-layout { grid-template-columns: 1fr 280px; } .art4-share-rail { display: none; } }
@media (max-width: 720px) { .art4-layout { grid-template-columns: 1fr; } .art4-sidebar { position: static; } }

/* --------------------------------------------------------------------------
   ART5 — Compacto funcional (2 cols: article | sidebar)
   -------------------------------------------------------------------------- */
.art5-layout { display: grid; grid-template-columns: 1fr 300px; gap: 3rem; padding: 1.5rem 0 3rem; align-items: start; }
.art5-article__header { margin-bottom: 1.25rem; }
.art5-article__title { font-size: clamp(1.4rem, 2.8vw, 2.1rem); line-height: 1.2; font-weight: 900; margin: .5rem 0; }
.art5-article__lead { font-size: 1rem; line-height: 1.6; color: var(--roxy-text-muted); margin-bottom: .875rem; }
.art5-article__meta-row { display: flex; align-items: center; gap: .625rem; flex-wrap: wrap; font-size: .875rem; padding-bottom: .875rem; border-bottom: 1px solid var(--roxy-border); }
.art5-author-inline { display: flex; align-items: center; gap: .4rem; text-decoration: none; color: var(--roxy-text); }
.art5-author-inline img { border-radius: 50%; }
.art5-share-row { display: flex; gap: .3rem; margin-left: auto; }
.art5-article__hero { margin: 1.25rem 0; }
.art5-article__hero img { width: 100%; border-radius: 3px; }
.art5-article__caption { font-size: .8rem; color: var(--roxy-text-muted); margin-top: .4rem; }
.art5-article__body { font-size: 1.0625rem; line-height: 1.75; }
.art5-related { margin-top: 2.5rem; border-top: 2px solid var(--roxy-accent); padding-top: 1.25rem; }
.art5-related__title { font-size: .9rem; font-weight: 900; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 1rem; }
.art5-related__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; position: relative; }
.art5-related__img img { width: 100%; aspect-ratio: 16/9; object-fit: cover; border-radius: 3px; }
.art5-related__body h4 { font-size: .875rem; font-weight: 700; line-height: 1.35; margin: .4rem 0; }
.art5-related__body h4 a { color: var(--roxy-text); text-decoration: none; }
.art5-related__body h4 a:hover { color: var(--roxy-accent); }
.art5-related__more { grid-column: 1 / -1; text-align: right; font-size: .8125rem; font-weight: 600; color: var(--roxy-accent); text-decoration: none; }
.art5-sidebar { position: sticky; top: 1.5rem; }

@media (max-width: 860px) { .art5-layout { grid-template-columns: 1fr; } .art5-sidebar { position: static; } .art5-related__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .art5-related__grid { grid-template-columns: 1fr; } }

/* ==========================================================================
   MOBILE OPTIMIZATION — Global pass
   Breakpoints: 768px (tablet), 480px (mobile), 375px (small)
   ========================================================================== */

/* --------------------------------------------------------------------------
   Base: container padding, font-sizes, touch targets
   -------------------------------------------------------------------------- */
@media (max-width: 768px) {
	.roxy-container { padding-left: 1rem; padding-right: 1rem; }

	/* Increase tap target size for all links/buttons */
	.site-nav__menu > li > a,
	.hv1-nav__menu li > a,
	.hv2-nav__menu li > a,
	.hv3-nav__menu li > a { min-height: 44px; display: flex; align-items: center; }

	/* Global sidebar sticky → static */
	.roxy-sidebar { position: static !important; }

	/* Breadcrumbs */
	.roxy-breadcrumbs { font-size: .8rem; white-space: normal; padding: .5rem 0; }

	/* Skip link visible on focus */
	.skip-link:focus { padding: .5rem 1rem; font-size: .875rem; }

	/* Dark mode toggle: smaller on mobile */
	.roxy-dark-toggle { width: 40px; height: 40px; bottom: .75rem; right: .75rem; }
}

@media (max-width: 480px) {
	.roxy-container { padding-left: .875rem; padding-right: .875rem; }
	body { font-size: .9375rem; }
}

/* --------------------------------------------------------------------------
   Topbar: hide secondary nav & date on small screens
   -------------------------------------------------------------------------- */
@media (max-width: 768px) {
	.site-header__topbar { display: none; }
	.hv3-topbar { display: none; }
}

/* --------------------------------------------------------------------------
   Header — Standard (site-header__main)
   -------------------------------------------------------------------------- */
@media (max-width: 768px) {
	.site-header__main { padding: .625rem 0; }
	.site-header__inner { gap: .5rem; }
	.site-branding__name { font-size: 1.4rem; }
	.site-branding img { max-height: 44px; }
}

/* --------------------------------------------------------------------------
   Nav hamburger: mobile menu full-screen overlay behaviour
   -------------------------------------------------------------------------- */
@media (max-width: 900px) {
	/* HV2: show hamburger */
	.hv2-menu-btn { display: flex; align-items: center; justify-content: center; }

	/* HV3: show hamburger, hide search btn on mobile */
	.hv3-hamburger { display: flex; }

	/* Shared mobile nav dropdown */
	.hv2-nav,
	.hv3-nav {
		display: none;
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		background: var(--roxy-nav-bg, #1a1a1a);
		z-index: 300;
		box-shadow: 0 6px 20px rgba(0,0,0,.25);
		padding: .5rem 0;
	}
	.hv2-nav.is-open,
	.hv3-nav.is-open { display: block; }

	.hv2-nav__menu,
	.hv3-nav__menu { flex-direction: column; }

	.hv2-nav__menu li > a,
	.hv3-nav__menu li > a {
		color: #eee;
		padding: .75rem 1.25rem;
		border-bottom: 1px solid rgba(255,255,255,.08);
		font-size: .9rem;
	}
	.hv3-nav__menu .sub-menu { position: static; border: none; box-shadow: none; background: rgba(255,255,255,.06); padding: 0; }
	.hv3-nav__menu .sub-menu li > a { padding: .6rem 1.75rem; font-size: .85rem; color: #ccc; }

	/* HV3 brand-nav: logo | (gap) | hamburger */
	.hv3-brand-nav__inner { grid-template-columns: 1fr auto; position: relative; }
	.hv3-brand-nav { position: relative; z-index: 200; }
	.hv3-nav { position: absolute; }
}

@media (max-width: 768px) {
	/* HV1: hide nav bar, show hamburger */
	.hv1-nav-bar { display: none; }
	.hv1-nav-bar.is-open {
		display: block;
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		background: var(--roxy-nav-bg);
		z-index: 300;
		box-shadow: 0 6px 20px rgba(0,0,0,.25);
	}
	.hv1-nav-bar.is-open .hv1-nav__menu { flex-direction: column; }
	.hv1-nav-bar.is-open .hv1-nav__menu li > a {
		color: var(--roxy-nav-text, #fff);
		padding: .75rem 1.25rem;
		border-bottom: 1px solid rgba(255,255,255,.08);
		font-size: .9rem;
	}
	.hv1-header { position: relative; }
	.hv1-header__top { padding: .625rem 0; }
	.hv1-branding__name { font-size: 1.4rem; }
	.hv1-subscribe-btn { display: none; }
	.hv1-header__actions { gap: .5rem; }

	/* HV2 header */
	.hv2-header__inner { padding: .625rem 0; gap: .5rem; }

	/* HV3 brand-nav */
	.hv3-brand-nav__inner { padding: .625rem 0; }
}

/* --------------------------------------------------------------------------
   Ticker: reduce on mobile
   -------------------------------------------------------------------------- */
@media (max-width: 480px) {
	.hv1-ticker__all { display: none; }
	.roxy-ticker__label,
	.hv1-ticker__label { font-size: .65rem; padding: .1rem .4rem; }
	.roxy-ticker__item a,
	.hv1-ticker__list li a { font-size: .8rem; }
}

/* --------------------------------------------------------------------------
   Hero Variant 1 — mobile
   -------------------------------------------------------------------------- */
@media (max-width: 768px) {
	.hv1-hero { grid-template-columns: 1fr; gap: 1.25rem; margin: 1rem auto 1.5rem; }
	.hv1-hero__main { grid-template-columns: 1fr; gap: 1rem; }
	.hv1-hero__title { font-size: 1.375rem; }
	.hv1-hero__side {
		flex-direction: row;
		flex-wrap: wrap;
		border-left: none;
		border-top: 1px solid var(--roxy-border);
		padding: .875rem 0 0;
	}
	.hv1-side-card { width: calc(50% - .375rem); }
	.hv1-side-card__img img { width: 72px; height: 48px; }
}
@media (max-width: 480px) {
	.hv1-side-card { width: 100%; }
	.hv1-hero__img-link img { aspect-ratio: 16/9; }
}

/* --------------------------------------------------------------------------
   Hero Variant 2 — mobile
   -------------------------------------------------------------------------- */
@media (max-width: 768px) {
	.hv2-hero { grid-template-columns: 1fr; gap: 1rem; margin-bottom: 1.5rem; }
	.hv2-hero__card { position: static; width: auto; border-radius: 0; padding: .875rem; background: var(--roxy-bg-alt); }
	.hv2-hero__title { font-size: 1.25rem; }
	.hv2-hero__side { gap: .875rem; }
	.hv2-side-card { grid-template-columns: 90px 1fr; gap: .625rem; }
	.hv2-side-card__img img { aspect-ratio: 4/3; width: 90px; border-radius: var(--roxy-radius); }
}
@media (max-width: 480px) {
	.hv2-side-card { grid-template-columns: 1fr; }
	.hv2-side-card__img img { width: 100%; aspect-ratio: 16/9; }
}

/* --------------------------------------------------------------------------
   Hero Variant 3 — mobile
   -------------------------------------------------------------------------- */
@media (max-width: 768px) {
	.hv3-hero { grid-template-columns: 1fr; gap: 1rem; margin: 1rem auto 0; }
	.hv3-hero__main { grid-template-columns: 1fr; gap: 1rem; }
	.hv3-hero__title { font-size: 1.375rem; }
	.hv3-hero__latest { border-left: none; border-top: 1px solid var(--roxy-border); padding-left: 0; padding-top: .875rem; }
	.hv3-bottom-row { grid-template-columns: 1fr 1fr; gap: 1rem; margin: 1rem auto 1.5rem; padding-top: 1rem; }
}
@media (max-width: 480px) {
	.hv3-bottom-row { grid-template-columns: 1fr; }
	.hv3-hero__img-link img { aspect-ratio: 16/9; }
}

/* --------------------------------------------------------------------------
   Home magazine hero (standard)
   -------------------------------------------------------------------------- */
@media (max-width: 700px) {
	.roxy-hero__article { grid-template-columns: 1fr; }
	.roxy-hero__title { font-size: 1.375rem; }
	.roxy-hero__img-link img { aspect-ratio: 16/9; }
}

/* --------------------------------------------------------------------------
   Home modules — general section title
   -------------------------------------------------------------------------- */
@media (max-width: 768px) {
	.roxy-section-title { font-size: 1rem; margin-bottom: .875rem; padding-bottom: .4rem; }
	.roxy-home-section { padding: 1.25rem 0; }
}

/* --------------------------------------------------------------------------
   Módulo 1 — grid
   -------------------------------------------------------------------------- */
@media (max-width: 768px) {
	.mod1-grid { grid-template-columns: repeat(2, 1fr); gap: .875rem; }
	.mod1-card__title { font-size: .9rem; }
}
@media (max-width: 420px) {
	.mod1-grid { grid-template-columns: 1fr; }
}

/* --------------------------------------------------------------------------
   Módulo 2 — lead + lista
   -------------------------------------------------------------------------- */
@media (max-width: 768px) {
	.mod2-layout { grid-template-columns: 1fr; gap: 1.25rem; }
	.mod2-lead__title { font-size: 1.25rem; }
	.mod2-side { flex-direction: row; flex-wrap: wrap; gap: .875rem; }
	.mod2-side-card { width: calc(50% - .4375rem); }
}
@media (max-width: 420px) {
	.mod2-side-card { width: 100%; }
}

/* --------------------------------------------------------------------------
   Módulo 3 — doble lista
   -------------------------------------------------------------------------- */
@media (max-width: 600px) {
	.mod3-layout { grid-template-columns: 1fr; gap: 1.5rem 0; }
	.mod3-col + .mod3-col { border-left: none; border-top: 1px solid var(--roxy-border); padding-left: 0; padding-top: 1.25rem; }
}

/* --------------------------------------------------------------------------
   Módulo 4 — lead horizontal + lista
   -------------------------------------------------------------------------- */
@media (max-width: 768px) {
	.mod4-layout { grid-template-columns: 1fr; gap: 1.25rem; }
	.mod4-lead__title { font-size: 1.25rem; }
	.mod4-list { border-left: none; padding-left: 0; border-top: 1px solid var(--roxy-border); padding-top: .875rem; }
}

/* --------------------------------------------------------------------------
   Módulo 5 — triple columna
   -------------------------------------------------------------------------- */
@media (max-width: 600px) {
	.mod5-layout { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 420px) {
	.mod5-layout { grid-template-columns: 1fr; }
}

/* --------------------------------------------------------------------------
   Article styles — shared mobile fixes
   -------------------------------------------------------------------------- */
@media (max-width: 768px) {
	/* Author box */
	.art1-author-box,
	.art2-author-card { flex-direction: row; gap: .75rem; padding: 1rem; }

	/* Share inline → smaller buttons */
	.art1-share-inline,
	.art2-hero__share,
	.art3-share-icons,
	.art5-share-row { gap: .25rem; }
	.art1-share-btn, .art2-share-btn, .art3-share-btn, .art5-share-btn { width: 32px; height: 32px; }

	/* Tags wrap tighter */
	.art1-tags, .art2-tags, .art3-tags, .art4-tags, .art5-tags { gap: .3rem; }

	/* Sidebar notes: smaller thumb */
	.art1-related-item, .art2-sidebar-related, .art3-sidebar-note,
	.art4-sidebar-note, .art5-sidebar-note { grid-template-columns: 64px 1fr; gap: .5rem; }
	.art1-related-item__img img, .art2-sidebar-related__img img, .art3-sidebar-note__img img,
	.art4-sidebar-note__img img, .art5-sidebar-note__img img { width: 64px; height: 44px; }

	/* Nav prev/next */
	.art1-nav-posts, .art4-nav-posts { gap: .5rem; }
	.art1-nav-posts__item { font-size: .8125rem; }
	.art4-nav-posts__item img { width: 56px; height: 38px; }
}

/* --------------------------------------------------------------------------
   Art1 — Clásico editorial mobile
   -------------------------------------------------------------------------- */
@media (max-width: 860px) {
	.art1-layout { grid-template-columns: 1fr; gap: 2rem; padding: 1rem 0 2rem; }
	.art1-sidebar { position: static; }
}
@media (max-width: 480px) {
	.art1-article__title { font-size: 1.5rem; }
	.art1-article__meta { gap: .4rem; flex-wrap: wrap; }
	.art1-nav-posts { flex-direction: column; }
	.art1-nav-posts__item--next { align-items: flex-start; text-align: left; }
}

/* --------------------------------------------------------------------------
   Art2 — Inmersivo mobile
   -------------------------------------------------------------------------- */
@media (max-width: 860px) {
	.art2-body-layout { grid-template-columns: 1fr; gap: 1.5rem; padding: 1.25rem 0 2rem; }
	.art2-sidebar { position: static; }
	.art2-related__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
	.art2-hero { min-height: 280px; }
	.art2-hero__title { font-size: 1.5rem; }
	.art2-hero__lead { font-size: .9375rem; }
	.art2-related__grid { grid-template-columns: 1fr; }
}

/* --------------------------------------------------------------------------
   Art3 — Modular inteligente mobile
   -------------------------------------------------------------------------- */
@media (max-width: 860px) {
	.art3-layout { grid-template-columns: 1fr; gap: 1.5rem; padding: 1rem 0 2rem; }
	.art3-sidebar { position: static; }
	.art3-seguir-leyendo__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
	.art3-article__title { font-size: 1.4rem; }
	.art3-article__meta { gap: .35rem; }
	.art3-seguir-leyendo__grid { grid-template-columns: 1fr; }
}

/* --------------------------------------------------------------------------
   Art4 — Reportaje premium mobile
   -------------------------------------------------------------------------- */
@media (max-width: 960px) {
	.art4-layout { grid-template-columns: 1fr 280px; gap: 1.5rem; }
	.art4-share-rail { display: none; }
}
@media (max-width: 720px) {
	.art4-layout { grid-template-columns: 1fr; gap: 1.5rem; padding: 1rem 0 2rem; }
	.art4-sidebar { position: static; }
}
@media (max-width: 480px) {
	.art4-article__title { font-size: 1.5rem; }
	.art4-nav-posts { flex-direction: column; gap: .875rem; }
	.art4-nav-posts__item { max-width: 100%; }
}

/* --------------------------------------------------------------------------
   Art5 — Compacto funcional mobile
   -------------------------------------------------------------------------- */
@media (max-width: 860px) {
	.art5-layout { grid-template-columns: 1fr; gap: 1.5rem; padding: 1rem 0 2rem; }
	.art5-sidebar { position: static; }
	.art5-related__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
	.art5-article__title { font-size: 1.4rem; }
	.art5-related__grid { grid-template-columns: 1fr; }
	.art5-article__meta-row { gap: .35rem; }
}

/* --------------------------------------------------------------------------
   Footers — mobile
   -------------------------------------------------------------------------- */
@media (max-width: 768px) {
	/* Footer 1 */
	.ft1-body { grid-template-columns: 1fr 1fr; gap: 1.5rem; padding: 2rem 0 1.5rem; }
	.ft1-legal-bar { flex-direction: column; align-items: flex-start; gap: .5rem; padding: .75rem 0; font-size: .75rem; }
	.ft1-legal-links { gap: .2rem .5rem; }

	/* Footer 2 */
	.ft2-trending__inner { gap: .5rem; }
	.ft2-body { grid-template-columns: 1fr 1fr; gap: 1.25rem; padding: 1.75rem 0 1.25rem; }
	.ft2-legal-bar { flex-direction: column; gap: .4rem; padding: .75rem 0; font-size: .75rem; }

	/* Footer 3 */
	.ft3-body { grid-template-columns: 1fr 1fr; gap: 1.25rem; padding: 1.75rem 0 1.25rem; }
	.ft3-nl-bar__inner { flex-direction: column; gap: 1rem; }
	.ft3-nl-bar__form { flex: 1 1 100%; width: 100%; }
	.ft3-bottom { flex-direction: column; gap: .875rem; }

	/* Footer 4 */
	.ft4-body { grid-template-columns: 1fr 1fr; gap: 1.25rem; padding: 1.75rem 0 1.25rem; }
	.ft4-legal-bar { gap: .4rem .875rem; font-size: .75rem; padding: .625rem 0; }

	/* Footer 5 */
	.ft5-actions-bar__inner { grid-template-columns: 1fr 1fr; gap: 1rem; }
	.ft5-body { grid-template-columns: 1fr 1fr; gap: 1.25rem; padding: 1.75rem 0 1.25rem; }
	.ft5-legal-bar__inner { flex-direction: column; gap: .4rem; padding: .75rem 0; font-size: .75rem; }

	/* All footers: newsletter form full width */
	.roxy-footer-nl__row { flex-wrap: wrap; }
	.roxy-footer-nl__input { border-right: 1px solid var(--roxy-border); border-radius: var(--roxy-radius); flex: 1 1 100%; }
	.roxy-footer-nl__btn { border-radius: var(--roxy-radius); flex: 1; }
}

@media (max-width: 480px) {
	.ft1-body, .ft2-body, .ft3-body, .ft4-body, .ft5-body { grid-template-columns: 1fr; gap: 1.25rem; padding: 1.5rem 0 1rem; }
	.ft5-actions-bar__inner { grid-template-columns: 1fr; }
	.ft5-action { gap: .625rem; }
	.ft2-trending__tags { gap: .3rem; }
	.ft2-tag { font-size: .75rem; padding: .15rem .45rem; }
}

/* --------------------------------------------------------------------------
   Related posts grid — mobile
   -------------------------------------------------------------------------- */
@media (max-width: 640px) {
	.roxy-related__grid { grid-template-columns: 1fr 1fr; gap: .875rem; }
}
@media (max-width: 420px) {
	.roxy-related__grid { grid-template-columns: 1fr; }
}

/* --------------------------------------------------------------------------
   Cards / Grid — general
   -------------------------------------------------------------------------- */
@media (max-width: 768px) {
	.roxy-card__title { font-size: .9375rem; }
	.roxy-grid { grid-template-columns: repeat(2, 1fr); gap: .875rem; }
}
@media (max-width: 420px) {
	.roxy-grid { grid-template-columns: 1fr; }
}

/* --------------------------------------------------------------------------
   Author page
   -------------------------------------------------------------------------- */
@media (max-width: 480px) {
	.roxy-author-profile__inner { flex-direction: column; text-align: center; gap: .875rem; }
	.roxy-author-profile__inner img { margin: 0 auto; }
}

/* --------------------------------------------------------------------------
   Pagination
   -------------------------------------------------------------------------- */
@media (max-width: 480px) {
	.roxy-pagination { gap: .25rem; }
	.roxy-pagination .page-numbers { min-width: 36px; height: 36px; font-size: .8125rem; }
}

/* --------------------------------------------------------------------------
   Search results
   -------------------------------------------------------------------------- */
@media (max-width: 480px) {
	.search-form { flex-direction: column; }
	.search-form input[type="search"] { border-radius: var(--roxy-radius); border-right: 1px solid var(--roxy-border); }
	.search-form button { border-radius: var(--roxy-radius); }
}

/* --------------------------------------------------------------------------
   Entry content — typography & embeds
   -------------------------------------------------------------------------- */
@media (max-width: 768px) {
	.entry-content { font-size: 1rem; line-height: 1.7; }
	.entry-content h2 { font-size: 1.3rem; }
	.entry-content h3 { font-size: 1.125rem; }
	.entry-content blockquote { margin-left: 0; padding-left: 1rem; font-size: 1rem; }
	.entry-content pre { font-size: .8125rem; overflow-x: auto; }
	.entry-content table { display: block; overflow-x: auto; -webkit-overflow-scrolling: touch; }
	.entry-content figure.wp-block-embed iframe { max-width: 100%; }
	.entry-content .wp-block-image img { max-width: 100%; height: auto; }
	.entry-content .wp-block-columns { flex-direction: column; }
	.entry-content .wp-block-column { flex-basis: 100% !important; }
}

/* --------------------------------------------------------------------------
   Comments — mobile
   -------------------------------------------------------------------------- */
@media (max-width: 480px) {
	.comment-form-author,
	.comment-form-email,
	.comment-form-url { width: 100%; }
	.comment-respond textarea { font-size: 1rem; }
	.comment-list .comment-body { padding: .75rem 0; }
}

/* --------------------------------------------------------------------------
   Category archive — mobile
   -------------------------------------------------------------------------- */
@media (max-width: 768px) {
	.roxy-archive-header { padding: 1rem 0; }
	.roxy-archive-header__title { font-size: 1.25rem; }
}

/* --------------------------------------------------------------------------
   Utility: hide on mobile / show on mobile
   -------------------------------------------------------------------------- */
@media (max-width: 768px) {
	.hide-mobile { display: none !important; }
}
@media (min-width: 769px) {
	.show-mobile { display: none !important; }
}
