:root {
	--m360-bg: #f6f1eb;
	--m360-paper: #fbf8f3;
	--m360-ink: #15181f;
	--m360-muted: #626873;
	--m360-line: rgba(21, 24, 31, .16);
	--m360-accent: #8a1f2f;
	--m360-gold: #ab8c5b;
	--m360-teal: #2a5c6a;
	--m360-blue-soft: #adc9d4;
	--m360-radius: 18px;
	--m360-shadow: 0 24px 80px rgba(21, 24, 31, .10);
	--m360-container: 1440px;
	--m360-gutter: 24px;
	--m360-side: 48px;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: var(--m360-bg);
	color: var(--m360-ink);
	font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	font-size: 16px;
	line-height: 1.55;
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: antialiased;
}

body::before {
	content: "";
	position: fixed;
	inset: 0;
	pointer-events: none;
	background:
		linear-gradient(90deg, rgba(21, 24, 31, .025) 1px, transparent 1px),
		linear-gradient(rgba(21, 24, 31, .018) 1px, transparent 1px);
	background-size: 48px 48px;
	mix-blend-mode: multiply;
	opacity: .55;
	z-index: -1;
}

img {
	max-width: 100%;
	height: auto;
	vertical-align: middle;
}

a {
	color: inherit;
}

p {
	margin: 0 0 1.2rem;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin-top: 0;
	font-family: Georgia, "Times New Roman", serif;
	letter-spacing: -.035em;
	line-height: .98;
}

.m360-container {
	max-width: var(--m360-container);
	margin-inline: auto;
	padding-inline: var(--m360-side);
}

.m360-grid {
	display: grid;
	grid-template-columns: repeat(12, minmax(0, 1fr));
	column-gap: var(--m360-gutter);
}

.m360-skip-link {
	position: absolute;
	left: -999px;
	top: 12px;
	z-index: 2000;
	background: var(--m360-ink);
	color: #fff;
	padding: 12px 16px;
	text-decoration: none;
}

.m360-skip-link:focus {
	left: 12px;
}

.screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;
	word-wrap: normal !important;
}

/* Header */
.m360-header {
	position: sticky;
	top: 0;
	z-index: 1000;
	background: rgba(246, 241, 235, .92);
	backdrop-filter: blur(14px);
	border-bottom: 1px solid var(--m360-line);
	transition: transform .28s ease, box-shadow .28s ease;
}

.m360-header.is-hidden {
	transform: translateY(-110%);
}

.m360-header.is-scrolled {
	box-shadow: 0 16px 50px rgba(21, 24, 31, .08);
}

.m360-header-grid {
	min-height: 112px;
	align-items: center;
}

.m360-menu-toggle {
	display: none;
}

.m360-menu {
	grid-column: 1 / span 3;
}

.m360-menu-list,
.m360-footer-menu {
	list-style: none;
	margin: 0;
	padding: 0;
}

.m360-menu-list {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 14px 18px;
}

.m360-menu-list a,
.m360-actions a,
.m360-footer-menu a {
	text-decoration: none;
}

.m360-menu-list a {
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .08em;
	text-transform: uppercase;
	color: var(--m360-ink);
}

.m360-menu-list li {
	position: relative;
}

.m360-menu-list .sub-menu {
	position: absolute;
	top: calc(100% + 16px);
	left: 0;
	min-width: 250px;
	margin: 0;
	padding: 14px;
	list-style: none;
	background: var(--m360-paper);
	border: 1px solid var(--m360-line);
	box-shadow: var(--m360-shadow);
	opacity: 0;
	pointer-events: none;
	transform: translateY(8px);
	transition: .22s ease;
}

.m360-menu-list li:hover > .sub-menu,
.m360-menu-list li:focus-within > .sub-menu {
	opacity: 1;
	pointer-events: auto;
	transform: translateY(0);
}

.m360-menu-list .sub-menu li + li {
	border-top: 1px solid var(--m360-line);
}

.m360-menu-list .sub-menu a {
	display: block;
	padding: 12px 6px;
	letter-spacing: .02em;
	text-transform: none;
	font-weight: 650;
}

.m360-brand {
	grid-column: 4 / span 6;
	text-align: center;
}

.m360-brand a {
	display: inline-grid;
	grid-template-columns: auto auto;
	align-items: end;
	gap: .25em;
	color: var(--m360-ink);
	text-decoration: none;
}

.m360-brand-main {
	display: block;
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(42px, 5vw, 82px);
	line-height: .78;
	text-transform: uppercase;
	letter-spacing: -.07em;
}

.m360-brand-number {
	display: block;
	font-size: clamp(22px, 2vw, 38px);
	font-weight: 850;
	line-height: 1;
	letter-spacing: .08em;
	color: var(--m360-accent);
}

.m360-brand p {
	margin: 10px 0 0;
	color: var(--m360-muted);
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: .16em;
}

.custom-logo-link img {
	max-height: 86px;
	width: auto;
}

.m360-actions {
	grid-column: 10 / span 3;
	display: flex;
	justify-content: flex-end;
	align-items: center;
	gap: 14px;
	text-transform: uppercase;
	font-size: 12px;
	font-weight: 750;
	letter-spacing: .08em;
}

.m360-actions span {
	color: var(--m360-muted);
}

/* General editorial atoms */
.m360-kicker,
.m360-author,
.m360-card-copy time,
.m360-analysis-card span,
.m360-slide-caption span,
.m360-factoria span {
	text-transform: uppercase;
	letter-spacing: .08em;
	font-size: 12px;
	font-weight: 750;
	color: var(--m360-muted);
}

.m360-readmore {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-top: 24px;
	color: var(--m360-ink);
	text-transform: uppercase;
	font-size: 12px;
	font-weight: 850;
	letter-spacing: .08em;
	border-bottom: 1px solid currentColor;
	text-decoration: none;
}

.m360-section-title {
	grid-column: 1 / -1;
	display: flex;
	align-items: center;
	gap: 18px;
	margin-bottom: 28px;
}

.m360-section-title h2 {
	margin: 0;
	font-size: clamp(34px, 4vw, 68px);
}

.m360-section-title p {
	margin: 6px 0 0;
	color: var(--m360-muted);
	max-width: 760px;
}

.m360-section-title-inline {
	margin-bottom: 34px;
}

.m360-section-icon {
	width: 58px;
	height: 58px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 1px solid var(--m360-line);
	border-radius: 999px;
	color: var(--m360-accent);
	background: rgba(255, 255, 255, .30);
	flex: 0 0 auto;
}

.m360-section-icon svg {
	width: 34px;
	height: 34px;
	display: block;
}

/* Hero */
.m360-site-main {
	min-height: 60vh;
}

.m360-hero {
	padding-top: 48px;
	padding-bottom: 32px;
}

.m360-hero-image {
	grid-column: 1 / span 7;
	min-height: 620px;
	background: #d8d2ca;
	display: block;
	overflow: hidden;
	position: relative;
	text-decoration: none;
}

.m360-hero-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: saturate(.95) contrast(1.02);
	transition: transform .8s ease;
}

.m360-hero-image:hover img {
	transform: scale(1.025);
}

.m360-hero-placeholder,
.m360-slide-placeholder,
.m360-image-placeholder {
	min-height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	gap: 20px;
	background:
		radial-gradient(circle at 72% 28%, rgba(171, 140, 91, .34), transparent 24%),
		linear-gradient(135deg, rgba(21, 24, 31, .92), rgba(42, 92, 106, .76));
	color: #fff;
	text-transform: uppercase;
	letter-spacing: .16em;
}

.m360-hero-placeholder .m360-section-icon,
.m360-slide-placeholder .m360-section-icon,
.m360-image-placeholder .m360-section-icon {
	color: #fff;
	border-color: rgba(255,255,255,.35);
}

.m360-hero-copy {
	grid-column: 8 / span 5;
	align-self: center;
	border-top: 1px solid var(--m360-line);
	border-bottom: 1px solid var(--m360-line);
	padding: 52px 0;
}

.m360-hero-copy h1 {
	font-size: clamp(48px, 5.8vw, 92px);
	line-height: .88;
	letter-spacing: -.065em;
	margin: 18px 0 22px;
}

.m360-lead {
	font-size: clamp(19px, 1.45vw, 24px);
	line-height: 1.42;
	color: var(--m360-muted);
}

.m360-author a {
	color: inherit;
	text-decoration: none;
	border-bottom: 1px solid var(--m360-line);
}


/* Perfiles: segunda jerarquía editorial */
.m360-profiles {
	padding-top: 50px;
	padding-bottom: 62px;
	border-top: 1px solid var(--m360-line);
	border-bottom: 1px solid var(--m360-line);
}

.m360-profiles .m360-section-title {
	max-width: 1180px;
}

.m360-profiles-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: var(--m360-gutter);
	align-items: stretch;
}

.m360-profile-card {
	min-width: 0;
}

.m360-profile-card > a {
	height: 100%;
	display: flex;
	flex-direction: column;
	text-decoration: none;
	background:
		linear-gradient(180deg, rgba(255,255,255,.44), rgba(255,255,255,.16));
	border-top: 1px solid var(--m360-line);
	padding-top: 18px;
}

.m360-profile-card .m360-card-media {
	margin-bottom: 16px;
}

.m360-profile-card .m360-card-media img,
.m360-profile-card .m360-image-placeholder {
	aspect-ratio: 16 / 10;
}

.m360-profile-card .m360-card-copy {
	display: flex;
	flex-direction: column;
	flex: 1;
}

.m360-profile-card .m360-card-copy h2 {
	font-size: clamp(26px, 2.4vw, 38px);
	line-height: .98;
	margin: 10px 0 12px;
}

.m360-profile-card .m360-card-copy p {
	font-size: 15px;
	line-height: 1.55;
}


/* Analysis */
.m360-analysis {
	padding-top: 34px;
	padding-bottom: 72px;
}

.m360-analysis-card {
	border-top: 1px solid var(--m360-line);
	padding-top: 24px;
	min-height: 230px;
}

.m360-analysis-card:nth-of-type(2) {
	grid-column: 1 / span 4;
}

.m360-analysis-card:nth-of-type(3) {
	grid-column: 5 / span 4;
}

.m360-analysis-card:nth-of-type(4) {
	grid-column: 9 / span 4;
}

.m360-analysis-card a,
.m360-card a,
.m360-impact-list a,
.m360-slide a {
	color: inherit;
	text-decoration: none;
}

.m360-analysis-card h3 {
	font-size: clamp(26px, 2.4vw, 36px);
	line-height: 1;
	margin: 14px 0 16px;
}

.m360-analysis-card p {
	color: var(--m360-muted);
}

/* Business */
.m360-business {
	padding-top: 72px;
	padding-bottom: 72px;
	border-top: 1px solid var(--m360-line);
}

.m360-business-main {
	grid-column: 1 / span 8;
}

.m360-business-grid {
	display: grid;
	grid-template-columns: repeat(8, minmax(0, 1fr));
	column-gap: var(--m360-gutter);
	row-gap: 34px;
}

.m360-business-card {
	grid-column: span 4;
}

.m360-card-media {
	margin: 0 0 18px;
	overflow: hidden;
	background: #ddd;
}

.m360-card-media img {
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
	transition: transform .55s ease;
}

.m360-card:hover img {
	transform: scale(1.04);
}

.m360-image-placeholder {
	aspect-ratio: 4 / 3;
	min-height: auto;
}

.m360-card-copy h2 {
	font-size: clamp(24px, 2.3vw, 34px);
	line-height: 1.02;
	margin: 10px 0;
}

.m360-card-copy p {
	color: var(--m360-muted);
	margin-bottom: 14px;
}

.m360-impact-list {
	grid-column: 9 / span 4;
	background:
		linear-gradient(180deg, rgba(255,255,255,.36), rgba(255,255,255,.10)),
		repeating-linear-gradient(45deg, rgba(21, 24, 31, .025) 0, rgba(21, 24, 31, .025) 1px, transparent 1px, transparent 8px);
	padding: 32px;
	border-left: 1px solid var(--m360-line);
	min-height: 100%;
}

.m360-impact-list h2 {
	font-size: clamp(34px, 3.2vw, 54px);
	margin-bottom: 22px;
}

.m360-impact-list article {
	border-top: 1px solid var(--m360-line);
	padding: 18px 0;
}

.m360-impact-list h3 {
	font-family: Inter, ui-sans-serif, system-ui, sans-serif;
	font-size: 20px;
	line-height: 1.15;
	letter-spacing: -.02em;
	margin: 6px 0 0;
}

/* Ad boxes */
.m360-ad-box {
	margin-top: 28px;
	padding: 30px;
	min-height: 220px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	border: 1px dashed var(--m360-accent);
	text-align: center;
	background: rgba(251, 248, 243, .58);
}

.m360-ad-box span {
	font-family: Georgia, "Times New Roman", serif;
	font-size: 26px;
	line-height: 1;
	font-weight: 700;
	color: var(--m360-accent);
}

.m360-ad-box p {
	margin: 14px auto 20px;
	color: var(--m360-muted);
	max-width: 520px;
}

.m360-ad-box a {
	display: inline-flex;
	align-self: center;
	padding: 12px 16px;
	text-decoration: none;
	text-transform: uppercase;
	letter-spacing: .08em;
	font-size: 11px;
	font-weight: 850;
	color: var(--m360-paper);
	background: var(--m360-ink);
}

.m360-ad-strip {
	margin-top: 48px;
	margin-bottom: 48px;
}

/* Crónica */
.m360-cronica {
	padding-top: 74px;
	padding-bottom: 74px;
	border-top: 1px solid var(--m360-line);
}

.m360-cronica-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: var(--m360-gutter);
}

.m360-cronica-card .m360-card-media img {
	aspect-ratio: 3 / 3.4;
}

/* Monumental */
.m360-monumental {
	padding: 84px 0;
	background: #11141a;
	color: #fff;
	overflow: hidden;
}

.m360-monumental .m360-section-title p,
.m360-monumental .m360-kicker,
.m360-monumental .m360-slide-caption span {
	color: rgba(255, 255, 255, .70);
}

.m360-monumental .m360-section-icon {
	color: #fff;
	border-color: rgba(255,255,255,.22);
	background: rgba(255,255,255,.06);
}

.m360-monumental-header {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	gap: 32px;
	margin-bottom: 32px;
}

.m360-monumental-header a {
	color: #fff;
	text-decoration: none;
	text-transform: uppercase;
	font-size: 12px;
	font-weight: 850;
	letter-spacing: .08em;
	border-bottom: 1px solid rgba(255,255,255,.75);
	white-space: nowrap;
}

.m360-slider {
	display: flex;
	gap: var(--m360-gutter);
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	padding-bottom: 18px;
	cursor: grab;
	scrollbar-width: thin;
}

.m360-slider.is-dragging {
	cursor: grabbing;
}

.m360-slide {
	position: relative;
	min-width: min(82vw, 1120px);
	height: 720px;
	scroll-snap-align: start;
	overflow: hidden;
	background: #252832;
}

.m360-slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .8s ease;
}

.m360-slide:hover img {
	transform: scale(1.025);
}

.m360-slide-placeholder {
	height: 100%;
}

.m360-slide-caption {
	position: absolute;
	left: 32px;
	bottom: 32px;
	max-width: 560px;
	background: rgba(17, 20, 26, .58);
	backdrop-filter: blur(10px);
	padding: 18px 20px;
}

.m360-slide-caption h3 {
	font-size: clamp(34px, 4vw, 58px);
	line-height: .94;
	margin: 8px 0 0;
	color: #fff;
}

/* Factoría */
.m360-factoria {
	margin-top: 72px;
	margin-bottom: 72px;
	padding-top: 48px;
	padding-bottom: 48px;
	border-top: 1px solid var(--m360-line);
	border-bottom: 1px solid var(--m360-line);
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 48px;
}

.m360-factoria h2 {
	font-size: clamp(36px, 4vw, 58px);
	line-height: .96;
	margin: 8px 0 12px;
}

.m360-factoria p {
	max-width: 760px;
	color: var(--m360-muted);
}

.m360-factoria a {
	white-space: nowrap;
	background: var(--m360-ink);
	color: #fff;
	padding: 16px 22px;
	text-decoration: none;
	text-transform: uppercase;
	font-size: 12px;
	font-weight: 850;
	letter-spacing: .08em;
}

/* Footer */
.m360-footer {
	padding: 64px 0 34px;
	background: var(--m360-ink);
	color: #fff;
}

.m360-footer-widgets {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 42px;
	align-items: start;
}

.m360-footer-column {
	min-width: 0;
}

.m360-footer-widget + .m360-footer-widget {
	margin-top: 28px;
}

.m360-footer-widget-title {
	font-family: Inter, ui-sans-serif, system-ui, sans-serif;
	font-size: 12px;
	font-weight: 850;
	line-height: 1.3;
	letter-spacing: .12em;
	text-transform: uppercase;
	color: var(--m360-gold);
	margin: 0 0 16px;
}

.m360-footer-brand {
	display: flex;
	align-items: flex-end;
	gap: 8px;
	font-family: Georgia, "Times New Roman", serif;
	font-size: 40px;
	line-height: .78;
	letter-spacing: -.06em;
	text-transform: uppercase;
}

.m360-footer-brand strong {
	color: var(--m360-gold);
	font-family: Inter, ui-sans-serif, system-ui, sans-serif;
	font-size: 24px;
	letter-spacing: .06em;
}

.m360-footer p,
.m360-footer-widget,
.m360-footer-widget li {
	color: rgba(255, 255, 255, .72);
}

.m360-footer-widget p:last-child,
.m360-footer-bottom p {
	margin-bottom: 0;
}

.m360-footer-widget ul,
.m360-footer-menu {
	list-style: none;
	margin: 0;
	padding: 0;
}

.m360-footer-widget li + li,
.m360-footer-menu li + li {
	margin-top: 10px;
}

.m360-footer-widget a,
.m360-footer-menu a,
.m360-footer-bottom a {
	color: #fff;
	text-decoration: none;
	border-bottom: 1px solid rgba(255,255,255,.35);
}

.m360-footer-bottom {
	margin-top: 44px;
	padding-top: 22px;
	border-top: 1px solid rgba(255, 255, 255, .16);
	text-align: right;
	font-size: 13px;
}

/* Archive / listing */
.m360-archive-header,
.m360-page-header,
.m360-single-header,
.m360-error {
	padding-top: 72px;
	padding-bottom: 42px;
}

.m360-archive-header h1,
.m360-page-header h1,
.m360-error h1 {
	font-size: clamp(46px, 6vw, 92px);
	margin: 8px 0 0;
}

.m360-archive-description {
	color: var(--m360-muted);
	max-width: 780px;
}

.m360-archive-layout {
	padding-bottom: 78px;
}

.m360-archive-main {
	grid-column: 1 / span 8;
}

.m360-archive-sidebar {
	grid-column: 10 / span 3;
}

.m360-listing {
	padding-bottom: 78px;
}

.m360-listing-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 42px 24px;
}

.m360-pagination {
	margin-top: 48px;
}

.m360-pagination .nav-links {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
}

.m360-pagination a,
.m360-pagination span {
	display: inline-flex;
	padding: 10px 14px;
	border: 1px solid var(--m360-line);
	text-decoration: none;
	background: rgba(255,255,255,.28);
}

.m360-search-form {
	display: flex;
	gap: 10px;
	max-width: 720px;
}

.m360-search-form label {
	flex: 1;
}

.m360-search-field {
	width: 100%;
	min-height: 48px;
	border: 1px solid var(--m360-line);
	background: var(--m360-paper);
	padding: 0 14px;
	font: inherit;
}

.m360-search-form button {
	border: 0;
	background: var(--m360-ink);
	color: #fff;
	padding: 0 20px;
	text-transform: uppercase;
	font-size: 12px;
	font-weight: 850;
	letter-spacing: .08em;
}

/* Single */
.m360-single-header {
	max-width: 1280px;
}

.m360-single-header h1 {
	max-width: 1180px;
	font-size: clamp(56px, 7.4vw, 118px);
	margin: 8px 0 22px;
}

.m360-single-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 12px 20px;
	color: var(--m360-muted);
	text-transform: uppercase;
	font-size: 12px;
	font-weight: 750;
	letter-spacing: .08em;
}

.m360-single-meta a {
	text-decoration: none;
	border-bottom: 1px solid var(--m360-line);
}

.m360-single-lead {
	margin-top: 28px;
	font-size: clamp(21px, 2vw, 30px);
	line-height: 1.36;
	color: var(--m360-muted);
	max-width: 1040px;
}

.m360-single-featured {
	margin-bottom: 58px;
}

.m360-single-featured img {
	width: 100%;
	max-height: 780px;
	object-fit: cover;
}

.m360-single-featured figcaption {
	margin-top: 10px;
	color: var(--m360-muted);
	font-size: 13px;
}

.m360-single-layout {
	align-items: start;
	padding-bottom: 78px;
}

.m360-single-content {
	grid-column: 1 / span 8;
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(19px, 1.35vw, 22px);
	line-height: 1.72;
	max-width: none;
}

.m360-single-content > * {
	max-width: 980px;
}

.m360-single-content .alignwide {
	max-width: 1180px;
	margin-left: 0;
}

.m360-single-content .alignfull {
	max-width: none;
	width: 100vw;
	margin-left: calc(50% - 50vw);
}

.m360-single-content blockquote {
	margin: 2em 0;
	padding: 0 0 0 24px;
	border-left: 4px solid var(--m360-accent);
	font-size: 1.25em;
	line-height: 1.45;
	color: var(--m360-ink);
}

.m360-single-content a {
	color: var(--m360-accent);
}

.m360-single-sidebar {
	grid-column: 10 / span 3;
	position: sticky;
	top: 130px;
}

.m360-author-box,
.m360-widget {
	border-top: 1px solid var(--m360-line);
	padding-top: 20px;
	margin-top: 28px;
}

.m360-widget:first-child {
	margin-top: 0;
}

.m360-author-box h2,
.m360-widget-title {
	font-family: Inter, ui-sans-serif, system-ui, sans-serif;
	font-size: 12px;
	font-weight: 850;
	text-transform: uppercase;
	letter-spacing: .08em;
	margin-bottom: 8px;
}

.m360-widget ul {
	margin: 0;
	padding-left: 18px;
}

.m360-widget li + li {
	margin-top: 8px;
}

.m360-widget a {
	text-decoration-thickness: 1px;
	text-underline-offset: 4px;
}

.m360-single-tags {
	margin-top: 42px;
	font-family: Inter, ui-sans-serif, system-ui, sans-serif;
	font-size: 14px;
}

.m360-single-tags a {
	display: inline-flex;
	margin: 0 8px 8px 0;
	padding: 8px 10px;
	border: 1px solid var(--m360-line);
	text-decoration: none;
	color: var(--m360-ink);
}

.m360-related {
	padding-top: 62px;
	padding-bottom: 72px;
	border-top: 1px solid var(--m360-line);
}

.m360-related h2 {
	font-size: clamp(34px, 4vw, 58px);
}

.m360-related-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: var(--m360-gutter);
}

/* Page / error */
.m360-page {
	padding-bottom: 78px;
}

.m360-page-content {
	max-width: 860px;
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(19px, 1.4vw, 22px);
	line-height: 1.72;
}

.m360-page-content a {
	color: var(--m360-accent);
}

.m360-error {
	min-height: 58vh;
}



/* Páginas institucionales */
.m360-institutional-lead {
	max-width: 1060px;
	margin-bottom: 38px;
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(24px, 2.4vw, 38px);
	line-height: 1.18;
	letter-spacing: -.035em;
	color: var(--m360-ink);
}

.m360-institutional-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: var(--m360-gutter);
	margin-top: 38px;
}

.m360-info-panel {
	min-height: 280px;
	padding: 30px;
	border: 1px solid var(--m360-line);
	background: rgba(255, 255, 255, .28);
}

.m360-info-panel h2 {
	font-family: Inter, ui-sans-serif, system-ui, sans-serif;
	font-size: 13px;
	font-weight: 850;
	letter-spacing: .12em;
	line-height: 1.3;
	text-transform: uppercase;
	color: var(--m360-accent);
	margin-bottom: 18px;
}

.m360-info-panel p {
	font-family: Inter, ui-sans-serif, system-ui, sans-serif;
	font-size: 16px;
	line-height: 1.65;
	color: var(--m360-muted);
}

.m360-info-panel a {
	color: var(--m360-ink);
	font-weight: 800;
	text-decoration: none;
	border-bottom: 1px solid var(--m360-accent);
}

.m360-info-panel-accent {
	background: var(--m360-ink);
	color: #fff;
	border-color: var(--m360-ink);
}

.m360-info-panel-accent h2 {
	color: var(--m360-gold);
}

.m360-info-panel-accent p,
.m360-info-panel-accent a {
	color: rgba(255, 255, 255, .82);
}


/* Directorio editorial */
.m360-directory-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: var(--m360-gutter);
	margin-top: 42px;
}

.m360-directory-card {
	min-height: 260px;
	padding: 32px;
	border: 1px solid var(--m360-line);
	background: rgba(255, 255, 255, .3);
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.m360-directory-card-main {
	background: var(--m360-ink);
	color: #fff;
	border-color: var(--m360-ink);
}

.m360-directory-card span {
	display: block;
	font-family: Inter, ui-sans-serif, system-ui, sans-serif;
	font-size: 12px;
	font-weight: 850;
	letter-spacing: .12em;
	text-transform: uppercase;
	color: var(--m360-accent);
	margin-bottom: 22px;
}

.m360-directory-card-main span {
	color: var(--m360-gold);
}

.m360-directory-card h2 {
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(30px, 2.6vw, 46px);
	line-height: .96;
	letter-spacing: -.045em;
	margin-bottom: 14px;
	color: currentColor;
}

.m360-directory-card p {
	font-family: Inter, ui-sans-serif, system-ui, sans-serif;
	font-size: 15px;
	font-weight: 760;
	line-height: 1.45;
	color: var(--m360-muted);
	margin-bottom: 20px;
}

.m360-directory-card-main p {
	color: rgba(255, 255, 255, .78);
}

.m360-directory-card a {
	font-family: Inter, ui-sans-serif, system-ui, sans-serif;
	font-size: 13px;
	font-weight: 850;
	color: var(--m360-ink);
	text-decoration: none;
	border-bottom: 1px solid var(--m360-accent);
	width: fit-content;
}

.m360-directory-card-main a {
	color: #fff;
	border-bottom-color: var(--m360-gold);
}

@media (max-width: 980px) {
	.m360-institutional-grid,
	.m360-directory-grid {
		grid-template-columns: 1fr;
	}
}

/* Back to top */
.m360-back-top {
	position: fixed;
	right: 24px;
	bottom: 24px;
	width: 48px;
	height: 48px;
	border-radius: 999px;
	border: 1px solid var(--m360-ink);
	background: var(--m360-paper);
	color: var(--m360-ink);
	font-size: 23px;
	cursor: pointer;
	opacity: 0;
	pointer-events: none;
	transform: translateY(12px);
	transition: .25s ease;
	z-index: 999;
	box-shadow: 0 12px 34px rgba(21, 24, 31, .12);
}

.m360-back-top.is-visible {
	opacity: 1;
	pointer-events: auto;
	transform: translateY(0);
}

/* WordPress core */
.wp-caption {
	max-width: 100%;
}

.wp-caption-text {
	color: var(--m360-muted);
	font-size: 13px;
}

.gallery-caption,
.bypostauthor {
	display: block;
}

.alignleft {
	float: left;
	margin-right: 1.5rem;
}

.alignright {
	float: right;
	margin-left: 1.5rem;
}

.aligncenter {
	display: block;
	margin-inline: auto;
}

/* Responsive */
@media (max-width: 1180px) {
	:root {
		--m360-side: 32px;
	}

	.m360-header-grid {
		min-height: 96px;
	}

	.m360-menu {
		grid-column: 1 / span 4;
	}

	.m360-brand {
		grid-column: 5 / span 4;
	}

	.m360-actions {
		grid-column: 9 / span 4;
	}

	.m360-single-content {
		grid-column: 1 / span 8;
		max-width: none;
	}

	.m360-single-content > * {
		max-width: 900px;
	}

	.m360-single-sidebar {
		grid-column: 10 / span 3;
	}
}

@media (max-width: 980px) {
	:root {
		--m360-side: 24px;
		--m360-gutter: 20px;
	}

	.m360-grid,
	.m360-business-grid {
		display: block;
	}

	.m360-header-grid {
		display: grid;
		grid-template-columns: 48px 1fr 48px;
		min-height: auto;
		padding-top: 18px;
		padding-bottom: 18px;
	}

	.m360-menu-toggle {
		display: inline-flex;
		grid-column: 1;
		align-items: center;
		justify-content: center;
		flex-direction: column;
		gap: 4px;
		width: 42px;
		height: 42px;
		border: 1px solid var(--m360-line);
		background: transparent;
		color: transparent;
		overflow: hidden;
	}

	.m360-menu-toggle span {
		width: 18px;
		height: 2px;
		background: var(--m360-ink);
		display: block;
	}

	.m360-menu {
		position: absolute;
		left: 0;
		right: 0;
		top: 100%;
		grid-column: auto;
		background: var(--m360-paper);
		border-bottom: 1px solid var(--m360-line);
		box-shadow: var(--m360-shadow);
		opacity: 0;
		pointer-events: none;
		transform: translateY(-8px);
		transition: .22s ease;
	}

	.m360-menu.is-open {
		opacity: 1;
		pointer-events: auto;
		transform: translateY(0);
	}

	.m360-menu-list {
		display: block;
		padding: 12px 24px 24px;
	}

	.m360-menu-list li {
		border-top: 1px solid var(--m360-line);
	}

	.m360-menu-list a {
		display: block;
		padding: 15px 0;
	}

	.m360-menu-list .sub-menu {
		position: static;
		opacity: 1;
		pointer-events: auto;
		transform: none;
		box-shadow: none;
		border: 0;
		background: transparent;
		padding: 0 0 10px 18px;
		min-width: 0;
	}

	.m360-menu-list .sub-menu li {
		border: 0;
	}

	.m360-menu-list .sub-menu a {
		padding: 8px 0;
	}

	.m360-brand {
		grid-column: 2;
	}

	.m360-brand-main {
		font-size: 38px;
	}

	.m360-brand p,
	.m360-actions {
		display: none;
	}

	.m360-hero,
	.m360-profiles,
	.m360-analysis,
	.m360-business,
	.m360-cronica {
		padding-top: 40px;
		padding-bottom: 48px;
	}

	.m360-hero-image {
		min-height: 430px;
	}

	.m360-hero-copy {
		padding: 34px 0;
	}

	.m360-hero-copy h1 {
		font-size: clamp(42px, 11vw, 62px);
		letter-spacing: -.055em;
	}

	.m360-analysis-card,
	.m360-business-card,
	.m360-cronica-card,
	.m360-profile-card {
		margin-top: 28px;
	}

	.m360-impact-list {
		margin-top: 36px;
		border-left: 0;
		padding: 24px;
	}

	.m360-profiles-grid,
	.m360-cronica-grid,
	.m360-listing-grid,
	.m360-related-grid,
	.m360-footer-widgets {
		grid-template-columns: 1fr;
	}

	.m360-monumental {
		padding: 58px 0;
	}

	.m360-monumental-header,
	.m360-factoria {
		display: block;
	}

	.m360-monumental-header a,
	.m360-factoria a {
		display: inline-flex;
		margin-top: 22px;
	}

	.m360-slide {
		min-width: 86vw;
		height: 520px;
	}

	.m360-archive-main,
	.m360-archive-sidebar,
	.m360-single-content,
	.m360-single-sidebar {
		grid-column: auto;
	}

	.m360-single-sidebar {
		position: static;
	}

	.m360-single-content {
		font-size: 19px;
	}

	.m360-single-content > * {
		max-width: 100%;
	}

	.m360-single-content .alignwide {
		max-width: 100%;
		margin-left: 0;
	}

	.m360-footer-bottom {
		text-align: left;
	}
}

@media (max-width: 640px) {
	:root {
		--m360-side: 18px;
	}

	body {
		font-size: 15px;
	}

	.m360-header-grid {
		padding-top: 14px;
		padding-bottom: 14px;
	}

	.m360-brand a {
		gap: 4px;
	}

	.m360-brand-main {
		font-size: 32px;
	}

	.m360-brand-number {
		font-size: 18px;
	}

	.m360-hero {
		padding-top: 26px;
	}

	.m360-hero-image {
		min-height: 335px;
	}

	.m360-section-title {
		align-items: flex-start;
	}

	.m360-section-icon {
		width: 46px;
		height: 46px;
	}

	.m360-section-icon svg {
		width: 27px;
		height: 27px;
	}

	.m360-section-title h2 {
		font-size: 36px;
	}

	.m360-lead {
		font-size: 18px;
	}

	.m360-slide {
		height: 420px;
	}

	.m360-slide-caption {
		left: 18px;
		right: 18px;
		bottom: 18px;
		padding: 14px;
	}

	.m360-slide-caption h3 {
		font-size: 30px;
	}

	.m360-factoria {
		margin-top: 42px;
		margin-bottom: 42px;
		padding-top: 34px;
		padding-bottom: 34px;
	}

	.m360-archive-header,
	.m360-page-header,
	.m360-single-header,
	.m360-error {
		padding-top: 44px;
	}

	.m360-search-form {
		display: block;
	}

	.m360-search-form button {
		min-height: 46px;
		margin-top: 10px;
		width: 100%;
	}

	.m360-back-top {
		right: 16px;
		bottom: 16px;
		width: 44px;
		height: 44px;
	}
}
