/* =========================================================
   Enlace News — main stylesheet
   Editorial news layout inspired by large news portals.
   ========================================================= */

:root {
	--enlace-red: #d81e05;
	--enlace-red-dark: #a81604;
	--enlace-ink: #1a1a1a;
	--enlace-gray: #5b5b5b;
	--enlace-gray-light: #8a8a8a;
	--enlace-line: #e3e3e3;
	--enlace-bg: #ffffff;
	--enlace-bg-alt: #f6f6f6;
	--enlace-dark: #111418;
	--enlace-font-head: "Playfair Display", Georgia, "Times New Roman", serif;
	--enlace-font-body: "Libre Franklin", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
	--enlace-container: 1200px;
	--enlace-radius: 4px;
}

/* -------- Base -------- */
* { box-sizing: border-box; }

body {
	margin: 0;
	font-family: var(--enlace-font-body);
	color: var(--enlace-ink);
	background: var(--enlace-bg);
	line-height: 1.6;
	font-size: 17px;
	-webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--enlace-red); text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3, h4 {
	font-family: var(--enlace-font-head);
	line-height: 1.2;
	color: var(--enlace-ink);
	margin: 0 0 .5em;
	font-weight: 800;
}

p { margin: 0 0 1.2em; }

.container {
	width: 100%;
	max-width: var(--enlace-container);
	margin: 0 auto;
	padding: 0 20px;
}

.screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	width: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
}

.skip-link {
	position: absolute;
	left: -9999px;
	z-index: 999;
	background: var(--enlace-ink);
	color: #fff;
	padding: 10px 16px;
}
.skip-link:focus { left: 10px; top: 10px; }

.button,
button.button {
	display: inline-block;
	background: var(--enlace-red);
	color: #fff;
	padding: 10px 20px;
	border: 0;
	border-radius: var(--enlace-radius);
	font-weight: 700;
	cursor: pointer;
	text-decoration: none;
	transition: background .2s ease;
}
.button:hover { background: var(--enlace-red-dark); color: #fff; text-decoration: none; }

/* -------- Topbar -------- */
.topbar {
	background: var(--enlace-dark);
	color: #cfd3d8;
	font-size: 13px;
}
.topbar__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 38px;
	gap: 16px;
}
.topbar__date { letter-spacing: .02em; text-transform: capitalize; }
.topbar__menu {
	display: flex;
	gap: 18px;
	list-style: none;
	margin: 0;
	padding: 0;
}
.topbar__menu a { color: #cfd3d8; }
.topbar__menu a:hover { color: #fff; text-decoration: none; }
.topbar__social .social-links__menu {
	display: flex;
	gap: 12px;
	list-style: none;
	margin: 0;
	padding: 0;
}
.topbar__social a { color: #cfd3d8; }

/* -------- Header -------- */
.site-header { border-bottom: 3px solid var(--enlace-ink); background: #fff; }
.site-header__inner {
	display: flex;
	align-items: center;
	gap: 16px;
	padding: 18px 20px;
}
.site-branding { flex: 1; text-align: center; }
.site-title {
	margin: 0;
	font-size: 40px;
	font-weight: 900;
	letter-spacing: -.02em;
}
.site-title a { color: var(--enlace-ink); }
.site-title a:hover { text-decoration: none; color: var(--enlace-red); }
.site-description {
	margin: 2px 0 0;
	font-family: var(--enlace-font-body);
	font-size: 13px;
	color: var(--enlace-gray);
	text-transform: uppercase;
	letter-spacing: .12em;
}
.custom-logo { margin: 0 auto; }

.site-header__actions { display: flex; align-items: center; }
.search-toggle,
.menu-toggle {
	background: none;
	border: 0;
	cursor: pointer;
	font-size: 20px;
	line-height: 1;
	padding: 8px;
	color: var(--enlace-ink);
}
.menu-toggle { display: none; }
.menu-toggle__bar,
.menu-toggle__bar::before,
.menu-toggle__bar::after {
	display: block;
	width: 24px;
	height: 2px;
	background: var(--enlace-ink);
	position: relative;
	transition: all .25s ease;
}
.menu-toggle__bar::before,
.menu-toggle__bar::after {
	content: "";
	position: absolute;
	left: 0;
}
.menu-toggle__bar::before { top: -7px; }
.menu-toggle__bar::after { top: 7px; }

/* -------- Primary navigation -------- */
.main-navigation {
	background: var(--enlace-red);
}
.main-navigation .container { padding: 0 20px; }
.primary-menu {
	display: flex;
	flex-wrap: wrap;
	list-style: none;
	margin: 0;
	padding: 0;
}
.primary-menu li { position: relative; }
.primary-menu a {
	display: block;
	color: #fff;
	padding: 13px 16px;
	font-weight: 700;
	font-size: 14px;
	text-transform: uppercase;
	letter-spacing: .04em;
}
.primary-menu a:hover,
.primary-menu .current-menu-item > a {
	background: var(--enlace-red-dark);
	text-decoration: none;
}
/* Submenus */
.primary-menu ul.sub-menu {
	position: absolute;
	top: 100%;
	left: 0;
	min-width: 220px;
	background: #fff;
	list-style: none;
	margin: 0;
	padding: 6px 0;
	box-shadow: 0 12px 28px rgba(0,0,0,.16);
	z-index: 50;
	display: none;
}
.primary-menu li:hover > ul.sub-menu,
.primary-menu li:focus-within > ul.sub-menu { display: block; }
.primary-menu ul.sub-menu a {
	color: var(--enlace-ink);
	text-transform: none;
	letter-spacing: 0;
	padding: 9px 18px;
	font-size: 14px;
}
.primary-menu ul.sub-menu a:hover { background: var(--enlace-bg-alt); color: var(--enlace-red); }

/* -------- Header search dropdown -------- */
.header-search {
	background: var(--enlace-bg-alt);
	border-bottom: 1px solid var(--enlace-line);
	padding: 16px 0;
}
.header-search[hidden] { display: none; }

/* -------- Search form -------- */
.search-form { display: flex; max-width: 560px; }
.search-field {
	flex: 1;
	padding: 12px 14px;
	border: 1px solid var(--enlace-line);
	border-right: 0;
	font-size: 16px;
	border-radius: var(--enlace-radius) 0 0 var(--enlace-radius);
}
.search-submit {
	border: 0;
	background: var(--enlace-ink);
	color: #fff;
	padding: 0 18px;
	cursor: pointer;
	border-radius: 0 var(--enlace-radius) var(--enlace-radius) 0;
	font-size: 16px;
}

/* -------- Breaking news ticker -------- */
.breaking-news {
	background: #fff;
	border-bottom: 1px solid var(--enlace-line);
}
.breaking-news__inner {
	display: flex;
	align-items: center;
	gap: 14px;
	min-height: 44px;
	overflow: hidden;
}
.breaking-news__label {
	background: var(--enlace-red);
	color: #fff;
	font-weight: 800;
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: .06em;
	padding: 6px 12px;
	border-radius: var(--enlace-radius);
	white-space: nowrap;
	flex-shrink: 0;
}
.breaking-news__track { overflow: hidden; flex: 1; }
.breaking-news__list {
	display: flex;
	gap: 40px;
	list-style: none;
	margin: 0;
	padding: 0;
	white-space: nowrap;
	animation: enlace-ticker 28s linear infinite;
}
.breaking-news__list a { color: var(--enlace-ink); font-weight: 600; font-size: 14px; }
.breaking-news__list a:hover { color: var(--enlace-red); }
.breaking-news:hover .breaking-news__list { animation-play-state: paused; }
@keyframes enlace-ticker {
	0% { transform: translateX(0); }
	100% { transform: translateX(-60%); }
}

/* -------- Layout: content + sidebar -------- */
.content-area-wrap {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 320px;
	gap: 40px;
	padding-top: 36px;
	padding-bottom: 56px;
}
.no-sidebar .content-area-wrap { grid-template-columns: 1fr; }
.site-main.front-page { padding-bottom: 56px; }

/* -------- Section header (kicker) -------- */
.section-header {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	border-top: 3px solid var(--enlace-ink);
	margin: 36px 0 20px;
	padding-top: 10px;
}
.section-header:first-child { margin-top: 0; }
.section-header__title {
	font-size: 24px;
	margin: 0;
	text-transform: uppercase;
	letter-spacing: .01em;
}
.section-header__title a { color: inherit; }
.section-header__more {
	font-family: var(--enlace-font-body);
	font-size: 13px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .04em;
}

/* -------- Category kicker label -------- */
.cat-label {
	display: inline-block;
	margin-bottom: 8px;
	font-family: var(--enlace-font-body);
	font-size: 12px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: .06em;
}
.cat-label a { color: var(--enlace-red); }

/* -------- Cover grid (front page lead) -------- */
.cover-grid {
	display: grid;
	grid-template-columns: 2fr 1fr;
	gap: 30px;
	padding-top: 36px;
}
.cover-lead__link { color: inherit; display: block; }
.cover-lead__link:hover { text-decoration: none; }
.cover-lead__media { margin-bottom: 16px; overflow: hidden; border-radius: var(--enlace-radius); }
.cover-lead__media img { width: 100%; transition: transform .4s ease; }
.cover-lead__link:hover .cover-lead__media img { transform: scale(1.03); }
.cover-lead__title { font-size: 36px; line-height: 1.1; margin-bottom: 10px; }
.cover-lead__link:hover .cover-lead__title { color: var(--enlace-red); }
.cover-lead__excerpt { color: var(--enlace-gray); font-size: 18px; }

.cover-secondary {
	display: flex;
	flex-direction: column;
}
.cover-item { border-bottom: 1px solid var(--enlace-line); padding: 16px 0; }
.cover-item:first-child { padding-top: 0; }
.cover-item:last-child { border-bottom: 0; }
.cover-item__link { display: flex; gap: 14px; color: inherit; align-items: flex-start; }
.cover-item__link:hover { text-decoration: none; }
.cover-item__media { flex-shrink: 0; width: 110px; border-radius: var(--enlace-radius); overflow: hidden; }
.cover-item__media img { width: 110px; height: 74px; object-fit: cover; }
.cover-item__title { font-size: 17px; line-height: 1.25; margin: 0; }
.cover-item__link:hover .cover-item__title { color: var(--enlace-red); }

/* -------- Posts grid / cards -------- */
.home-section { margin-top: 8px; }
.posts-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 28px;
}
.posts-grid--4 { grid-template-columns: repeat(4, 1fr); }
.posts-grid--3 { grid-template-columns: repeat(3, 1fr); }

.card { display: flex; flex-direction: column; }
.card__link { color: inherit; display: flex; flex-direction: column; height: 100%; }
.card__link:hover { text-decoration: none; }
.card__media { overflow: hidden; border-radius: var(--enlace-radius); margin-bottom: 12px; }
.card__media img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; transition: transform .4s ease; }
.card__link:hover .card__media img { transform: scale(1.04); }
.card__title { font-size: 19px; line-height: 1.25; margin-bottom: 8px; }
.card__link:hover .card__title { color: var(--enlace-red); }
.card__excerpt { color: var(--enlace-gray); font-size: 15px; margin-bottom: 8px; }
.card__meta, .featured-post__meta, .cover-lead__body .posted-on {
	font-family: var(--enlace-font-body);
	font-size: 13px;
	color: var(--enlace-gray-light);
}

/* -------- Featured post (listing first item) -------- */
.featured-post { grid-column: 1 / -1; margin-bottom: 8px; }
.featured-post__link {
	display: grid;
	grid-template-columns: 1.4fr 1fr;
	gap: 24px;
	color: inherit;
	align-items: center;
}
.featured-post__link:hover { text-decoration: none; }
.featured-post__media { overflow: hidden; border-radius: var(--enlace-radius); }
.featured-post__media img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; transition: transform .4s ease; }
.featured-post__link:hover .featured-post__media img { transform: scale(1.03); }
.featured-post__title { font-size: 30px; line-height: 1.12; margin-bottom: 10px; }
.featured-post__link:hover .featured-post__title { color: var(--enlace-red); }
.featured-post__excerpt { color: var(--enlace-gray); font-size: 17px; }
.featured-post__meta { display: flex; gap: 14px; }

/* -------- Meta items -------- */
.posted-on, .byline, .reading-time { font-size: 13px; color: var(--enlace-gray-light); }
.single-post__meta { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; }
.byline a { color: var(--enlace-gray); font-weight: 600; }

/* -------- Single post -------- */
.single-post, .single-page { max-width: 760px; }
.single-post__header { margin-bottom: 24px; }
.single-post__title { font-size: 42px; line-height: 1.08; margin: 8px 0 14px; }
.single-post__standfirst { font-size: 21px; color: var(--enlace-gray); line-height: 1.4; }
.single-post__media { margin: 0 0 28px; }
.single-post__media img { width: 100%; border-radius: var(--enlace-radius); }
.single-post__media figcaption,
.wp-caption-text {
	font-size: 13px;
	color: var(--enlace-gray-light);
	padding: 8px 2px;
}
.single-page__title { font-size: 38px; }
.single-page__media { margin-bottom: 28px; }

.entry-content { font-size: 18px; line-height: 1.75; }
.entry-content h2 { font-size: 28px; margin: 1.6em 0 .5em; }
.entry-content h3 { font-size: 22px; margin: 1.4em 0 .5em; }
.entry-content a { text-decoration: underline; }
.entry-content img { border-radius: var(--enlace-radius); margin: 1em 0; }
.entry-content blockquote {
	margin: 1.6em 0;
	padding: 4px 0 4px 24px;
	border-left: 4px solid var(--enlace-red);
	font-family: var(--enlace-font-head);
	font-size: 24px;
	font-style: italic;
	color: var(--enlace-ink);
}
.entry-content ul, .entry-content ol { padding-left: 1.4em; }
.entry-content figure { margin: 1.5em 0; }

.responsive-embed {
	position: relative;
	padding-bottom: 56.25%;
	height: 0;
	overflow: hidden;
	margin: 1.5em 0;
}
.responsive-embed iframe,
.responsive-embed object,
.responsive-embed embed {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
}

/* -------- Single footer: tags + share -------- */
.single-post__footer {
	margin: 32px 0;
	padding: 22px 0;
	border-top: 1px solid var(--enlace-line);
	border-bottom: 1px solid var(--enlace-line);
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	justify-content: space-between;
	align-items: center;
}
.entry-tags { font-size: 14px; }
.entry-tags__label { font-weight: 700; text-transform: uppercase; font-size: 12px; letter-spacing: .04em; }
.entry-tags a {
	display: inline-block;
	background: var(--enlace-bg-alt);
	padding: 4px 10px;
	margin: 2px;
	border-radius: 999px;
	color: var(--enlace-gray);
	font-size: 13px;
}
.entry-tags a:hover { background: var(--enlace-red); color: #fff; text-decoration: none; }

.social-share { display: flex; align-items: center; gap: 12px; }
.social-share__label { font-weight: 700; text-transform: uppercase; font-size: 12px; letter-spacing: .04em; }
.social-share ul { display: flex; gap: 8px; list-style: none; margin: 0; padding: 0; }
.social-share__link {
	display: inline-block;
	padding: 6px 12px;
	border-radius: var(--enlace-radius);
	background: var(--enlace-ink);
	color: #fff;
	font-size: 12px;
	font-weight: 700;
}
.social-share__link:hover { background: var(--enlace-red); text-decoration: none; }

/* -------- Author box -------- */
.author-box {
	display: flex;
	gap: 18px;
	background: var(--enlace-bg-alt);
	border-radius: var(--enlace-radius);
	padding: 22px;
	margin: 32px 0;
}
.author-box__avatar img { border-radius: 50%; }
.author-box__name { margin: 0 0 6px; font-size: 20px; }
.author-box__bio { margin: 0 0 8px; color: var(--enlace-gray); font-size: 15px; }
.author-box__link { font-weight: 700; font-size: 14px; }

/* -------- Related posts -------- */
.related-posts { margin: 40px 0; }
.related-posts__title {
	font-size: 22px;
	text-transform: uppercase;
	border-top: 3px solid var(--enlace-ink);
	padding-top: 10px;
	margin-bottom: 20px;
}

/* -------- Post navigation -------- */
.post-navigation { margin: 32px 0; display: flex; }
.post-navigation .nav-links { display: flex; width: 100%; gap: 16px; }
.post-navigation .nav-previous, .post-navigation .nav-next { flex: 1; }
.post-navigation .nav-next { text-align: right; }
.post-navigation .nav-subtitle {
	display: block;
	font-size: 12px;
	text-transform: uppercase;
	color: var(--enlace-gray-light);
	letter-spacing: .04em;
}
.post-navigation .nav-title { font-weight: 700; font-family: var(--enlace-font-head); }

/* -------- Search results -------- */
.search-results-list { display: flex; flex-direction: column; gap: 26px; }
.search-result { display: flex; gap: 20px; border-bottom: 1px solid var(--enlace-line); padding-bottom: 26px; }
.search-result__media { flex-shrink: 0; width: 220px; border-radius: var(--enlace-radius); overflow: hidden; }
.search-result__media img { width: 220px; aspect-ratio: 3/2; object-fit: cover; }
.search-result__title { font-size: 22px; margin: 6px 0; }
.search-result__excerpt { color: var(--enlace-gray); }

/* -------- Sidebar / widgets -------- */
.sidebar { align-self: start; position: sticky; top: 16px; }
.widget { margin-bottom: 34px; }
.widget-title {
	font-size: 18px;
	text-transform: uppercase;
	border-top: 3px solid var(--enlace-ink);
	padding-top: 10px;
	margin-bottom: 14px;
	letter-spacing: .01em;
}
.widget ul { list-style: none; margin: 0; padding: 0; }
.widget ul li { padding: 8px 0; border-bottom: 1px solid var(--enlace-line); }
.widget ul li a { color: var(--enlace-ink); }
.widget ul li a:hover { color: var(--enlace-red); }

/* Popular list */
.popular-list { list-style: none; margin: 0; padding: 0; counter-reset: pop; }
.popular-list__item {
	display: flex;
	gap: 14px;
	padding: 14px 0;
	border-bottom: 1px solid var(--enlace-line);
}
.popular-list__item:last-child { border-bottom: 0; }
.popular-list__rank {
	font-family: var(--enlace-font-head);
	font-size: 30px;
	font-weight: 900;
	color: var(--enlace-red);
	line-height: 1;
	width: 30px;
	flex-shrink: 0;
}
.popular-list__title { font-weight: 700; color: var(--enlace-ink); display: block; line-height: 1.3; }
.popular-list__title:hover { color: var(--enlace-red); }
.popular-list__meta { font-size: 12px; color: var(--enlace-gray-light); }

/* -------- Pagination -------- */
.pagination { margin: 40px 0 0; }
.pagination .nav-links { display: flex; flex-wrap: wrap; gap: 6px; justify-content: center; }
.pagination .page-numbers {
	display: inline-block;
	padding: 9px 15px;
	border: 1px solid var(--enlace-line);
	color: var(--enlace-ink);
	border-radius: var(--enlace-radius);
	font-weight: 700;
}
.pagination .page-numbers.current,
.pagination .page-numbers:hover {
	background: var(--enlace-red);
	border-color: var(--enlace-red);
	color: #fff;
	text-decoration: none;
}

/* -------- 404 -------- */
.error-404 { text-align: center; padding: 60px 0; max-width: 640px; margin: 0 auto; }
.error-404__code { font-size: 110px; color: var(--enlace-red); margin: 0; line-height: 1; }
.error-404 .search-form { margin: 24px auto; justify-content: center; }
.error-404__suggestions { text-align: left; margin: 30px 0; }
.error-404__suggestions ul { list-style: none; padding: 0; }
.error-404__suggestions li { border-bottom: 1px solid var(--enlace-line); padding: 8px 0; }

/* -------- Comments -------- */
.comments-area { margin-top: 40px; max-width: 760px; }
.comments-title, .comment-reply-title {
	font-size: 22px;
	text-transform: uppercase;
	border-top: 3px solid var(--enlace-ink);
	padding-top: 10px;
	margin-bottom: 18px;
}
.comment-list { list-style: none; margin: 0; padding: 0; }
.comment-list ol.children { list-style: none; margin-left: 28px; }
.comment-body { padding: 16px 0; border-bottom: 1px solid var(--enlace-line); }
.comment-author { display: flex; align-items: center; gap: 10px; font-weight: 700; }
.comment-author img { border-radius: 50%; }
.comment-meta { font-size: 12px; color: var(--enlace-gray-light); margin: 4px 0 8px; }
.comment-respond { margin-top: 28px; }
.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
	width: 100%;
	padding: 10px 12px;
	border: 1px solid var(--enlace-line);
	border-radius: var(--enlace-radius);
	font-size: 15px;
	margin-top: 4px;
	font-family: inherit;
}
.comment-form p { margin-bottom: 14px; }

/* -------- Footer -------- */
.site-footer {
	background: var(--enlace-dark);
	color: #c5cad1;
	margin-top: 40px;
	padding: 48px 0 28px;
	font-size: 15px;
}
.site-footer a { color: #c5cad1; }
.site-footer a:hover { color: #fff; }
.site-footer__widgets {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 30px;
	padding-bottom: 30px;
	border-bottom: 1px solid rgba(255,255,255,.12);
}
.site-footer .widget-title { color: #fff; border-top-color: var(--enlace-red); }
.site-footer .widget ul li { border-bottom-color: rgba(255,255,255,.1); }
.site-footer .widget ul li a { color: #c5cad1; }
.site-footer__brand {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 24px 0;
}
.footer-logo { font-family: var(--enlace-font-head); font-size: 26px; font-weight: 900; color: #fff; }
.site-footer__social .social-links__menu { display: flex; gap: 14px; list-style: none; margin: 0; padding: 0; }
.footer-menu {
	display: flex;
	flex-wrap: wrap;
	gap: 18px;
	list-style: none;
	margin: 0;
	padding: 18px 0;
	border-top: 1px solid rgba(255,255,255,.12);
	font-size: 13px;
	text-transform: uppercase;
	letter-spacing: .04em;
}
.site-footer__bottom { padding-top: 12px; font-size: 13px; color: var(--enlace-gray-light); }
.site-info { margin: 0; }

/* -------- Back to top -------- */
.back-to-top {
	position: fixed;
	right: 22px;
	bottom: 22px;
	width: 44px;
	height: 44px;
	border: 0;
	border-radius: 50%;
	background: var(--enlace-red);
	color: #fff;
	font-size: 16px;
	cursor: pointer;
	opacity: 0;
	visibility: hidden;
	transition: opacity .25s ease, visibility .25s ease;
	z-index: 90;
	box-shadow: 0 6px 16px rgba(0,0,0,.25);
}
.back-to-top.is-visible { opacity: 1; visibility: visible; }

/* -------- Responsive -------- */
@media (max-width: 1024px) {
	.posts-grid, .posts-grid--4 { grid-template-columns: repeat(2, 1fr); }
	.cover-grid { grid-template-columns: 1fr; }
}

@media (max-width: 860px) {
	.content-area-wrap { grid-template-columns: 1fr; }
	.sidebar { position: static; }
	.featured-post__link { grid-template-columns: 1fr; }
	.site-title { font-size: 30px; }
}

@media (max-width: 680px) {
	body { font-size: 16px; }
	.menu-toggle { display: inline-flex; }
	.site-header__inner { padding: 14px 16px; }
	.site-branding { text-align: left; }
	.custom-logo, .site-title { margin: 0; }

	.main-navigation { display: none; }
	.main-navigation.toggled { display: block; }
	.main-navigation.toggled .container { padding: 0; }
	.primary-menu { flex-direction: column; }
	.primary-menu a { padding: 14px 20px; border-bottom: 1px solid var(--enlace-red-dark); }
	.primary-menu ul.sub-menu {
		position: static;
		display: block;
		box-shadow: none;
		background: var(--enlace-red-dark);
		padding: 0;
	}
	.primary-menu ul.sub-menu a { color: #fff; }

	.posts-grid, .posts-grid--4, .posts-grid--3 { grid-template-columns: 1fr; }
	.search-result { flex-direction: column; }
	.search-result__media, .search-result__media img { width: 100%; }
	.site-footer__widgets { grid-template-columns: 1fr 1fr; }
	.topbar__menu, .topbar__date { display: none; }
	.single-post__title { font-size: 30px; }
	.cover-lead__title { font-size: 26px; }
	.post-navigation .nav-links { flex-direction: column; }
	.post-navigation .nav-next { text-align: left; }
}

@media (max-width: 460px) {
	.site-footer__widgets { grid-template-columns: 1fr; }
}
