/* Punto Político — estilos de layout (responsive, accesible, ligero). */

/*
 * Identidad visual autorizada:
 * - Paleta: #0B2F3A · #0A6C74 · #FFFFFF · #59656A.
 * - Negro únicamente para texto sobre fondos claros.
 * - #17FDEB exclusivo de JD Network (FASE 9: enlace «Powered by JD Network»).
 * - Tipografía obligatoria: Lato.
 */

:root {
	--pp-bg: #ffffff;
	--pp-ink: #000000;                     /* texto sobre fondos claros */
	--pp-muted: #59656a;
	--pp-dark: #0b2f3a;                    /* institucional Punto Político */
	--pp-accent: #0a6c74;
	--pp-border: rgba(89, 101, 106, 0.35); /* derivado de #59656A */
	--pp-font: "Lato", "Helvetica Neue", Arial, sans-serif;
	--pp-gutter: 1rem;
	--pp-radius: 6px;
	--pp-max: 1200px;
}

* {
	box-sizing: border-box;
}

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

body {
	margin: 0;
	font-family: var(--pp-font);
	font-size: 1rem;
	line-height: 1.6;
	color: var(--pp-ink);
	background: var(--pp-bg);
}

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

a {
	color: var(--pp-accent);
	text-decoration: underline;
	text-underline-offset: 2px;
}

a:hover,
a:focus {
	text-decoration: none;
}

/* Accesibilidad */
.skip-link {
	position: absolute;
	left: -9999px;
	top: 0;
	z-index: 100;
	padding: 0.75rem 1rem;
	background: var(--pp-dark);
	color: #ffffff;
}

.skip-link:focus {
	left: 0;
}

:focus-visible {
	outline: 2px solid var(--pp-accent);
	outline-offset: 2px;
}

.screen-reader-text {
	position: absolute !important;
	width: 1px;
	height: 1px;
	margin: -1px;
	padding: 0;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

/* Cabecera */
.site-header {
	border-bottom: 1px solid var(--pp-border);
	background: var(--pp-bg);
}

.site-header__inner {
	max-width: var(--pp-max);
	margin: 0 auto;
	padding: 0.5rem var(--pp-gutter);
	display: flex;
	flex-direction: column;
	align-items: stretch;
	gap: 0.25rem;
}

.site-title {
	margin: 0;
	font-size: 1.4rem;
	font-weight: 900;
}

.site-title a {
	color: var(--pp-dark);
	text-decoration: none;
}

/* Branding — identidad visual FASE 3.
   Los logos LIGHT/DARK son assets precoloreados: nunca se recolorean por CSS. */
.site-branding {
	display: flex;
	flex-direction: column;
	gap: 0.1rem;
}

.site-logo {
	display: inline-block;
	line-height: 0;
}

.site-logo__img {
	width: auto;
	height: auto;
	max-width: 100px;
	max-height: 100px;
}

.site-tagline {
	margin: 0;
	font-size: 0.8rem;
	font-weight: 700;
	color: var(--pp-muted);
	letter-spacing: 0.02em;
}

.site-title--footer a {
	color: #ffffff;
	text-decoration: none;
}

.site-nav__toggle {
	display: none;
	border: 0;
	background: none;
	cursor: pointer;
	color: var(--pp-ink);
	padding: 0.25rem;
}

.site-nav__list {
	display: flex;
	gap: 1rem;
	list-style: none;
	margin: 0;
	padding: 0;
	flex-wrap: wrap;
}

.site-nav__list a {
	color: var(--pp-ink);
	font-weight: 700;
	text-decoration: none;
}

.site-nav__list a:hover,
.site-nav__list a:focus {
	color: var(--pp-accent);
}

/* Layout general */
.site-main {
	max-width: var(--pp-max);
	margin: 0 auto;
	padding: 1.5rem var(--pp-gutter);
}

.page-header {
	margin-bottom: 1.5rem;
}

.page-header__title {
	font-size: clamp(1.4rem, 3.5vw, 2rem);
	margin: 0 0 0.5rem;
}

.page-header__desc {
	color: var(--pp-muted);
}

/* Hero general / interno */
.pp-hero-general {
	margin-bottom: 2.5rem;
}

.pp-hero {
	display: grid;
	gap: 1rem;
	grid-template-columns: 1fr;
}

.pp-hero__image {
	width: 100%;
	aspect-ratio: 16 / 9;
	object-fit: cover;
	border-radius: var(--pp-radius);
}

.pp-hero__title {
	margin: 0.5rem 0;
	font-size: clamp(1.5rem, 4vw, 2.5rem);
	line-height: 1.15;
}

.pp-hero__excerpt {
	color: var(--pp-muted);
	max-width: 65ch;
}

.pp-hero__meta,
.pp-card__meta {
	font-size: 0.85rem;
	color: var(--pp-muted);
}

/* Secciones y grillas */
.pp-section {
	margin-bottom: 2.5rem;
}

.pp-section__title {
	font-size: 1.25rem;
	border-left: 4px solid var(--pp-accent);
	padding-left: 0.6rem;
}

.pp-section__grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
	gap: 1.5rem;
}

/* Tarjetas */
.pp-card {
	display: flex;
	flex-direction: column;
	gap: 0.35rem;
}

.pp-card__image {
	width: 100%;
	aspect-ratio: 16 / 9;
	object-fit: cover;
	border-radius: var(--pp-radius);
}

.pp-card__title {
	margin: 0.2rem 0;
	font-size: 1.05rem;
	line-height: 1.3;
}

.pp-card__title a {
	color: var(--pp-ink);
	text-decoration: none;
}

.pp-card__title a:hover,
.pp-card__title a:focus {
	color: var(--pp-accent);
}

/* Entradas */
.entry {
	max-width: 720px;
}

.entry__title {
	font-size: clamp(1.6rem, 4vw, 2.25rem);
	line-height: 1.15;
}

.entry__meta {
	font-size: 0.9rem;
	color: var(--pp-muted);
}

.entry__content {
	line-height: 1.75;
	overflow-wrap: break-word; /* FASE 14: evita desborde horizontal en móvil con URLs/strings largos. */
}

.entry__content img {
	border-radius: var(--pp-radius);
}

.entry__image {
	width: 100%;
	height: auto;
	border-radius: var(--pp-radius);
}

.entry__tags {
	margin-top: 1.5rem;
}

/* Comentarios */
.comment-list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.comments-area__title {
	font-size: 1.1rem;
}

/* Paginación */
.pagination {
	margin: 2rem 0;
}

/* Pie */
.site-footer {
	background: var(--pp-dark);
	color: #ffffff;
	margin-top: 3rem;
}

.site-footer__inner {
	max-width: var(--pp-max);
	margin: 0 auto;
	padding: 1.25rem var(--pp-gutter);
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 1.5rem;
	flex-wrap: wrap;
	font-size: 0.9rem;
	color: rgba(255, 255, 255, 0.85);
}

/* Marca en el pie: logo DARK (fondo oscuro) + eslogan. */
.site-footer__brand {
	display: flex;
	flex-direction: column;
	gap: 0.1rem;
}

.site-logo--footer .site-logo__img {
	max-width: 72px;
	max-height: 72px;
}

.site-tagline--footer {
	color: rgba(255, 255, 255, 0.85);
}

.site-footer__list {
	display: flex;
	gap: 1rem;
	list-style: none;
	margin: 0;
	padding: 0;
}

.site-footer__list a,
.site-footer__credit a {
	color: #ffffff;
}

.site-footer__credit {
	margin: 0;
}

/* Responsive */
/* FASE 14: el hero pasa a dos columnas solo desde 900px. Entre 768 y 899px
   (tablet vertical) la columna de texto quedaría en ~300px frente a la imagen
   1.4fr; en una sola columna se mantiene proporcionado y sin saltos. */
@media (min-width: 900px) {
	.pp-hero {
		grid-template-columns: 1.4fr 1fr;
		align-items: center;
	}
}

/* Hero sin imagen destacada: el cuerpo ocupa el ancho completo (FASE 14). */
.pp-hero--no-media {
	grid-template-columns: 1fr;
}

@media (max-width: 767px) {
	.site-nav__toggle {
		display: inline-flex;
	}

	.site-logo__img {
		max-width: 80px;
		max-height: 80px;
	}

	.site-footer__inner {
		gap: 1rem;
	}

	.site-nav {
		display: none;
		width: 100%;
	}

	.site-header--nav-open .site-nav {
		display: block;
	}

	.site-nav__list {
		flex-direction: column;
		gap: 0.5rem;
	}
}

/* =========================================================================
 * FASE 4 — Header y navegación (aprobada)
 *
 * Estructura:
 *   .site-topbar                 barra superior (fecha + redes)
 *   .site-header__main           logo a la izquierda, buscador a la derecha
 *   .site-nav / .site-nav__list  barra de navegación con submenú "Más"
 * ====================================================================== */

/* --- Barra superior --- */
.site-topbar {
	background: var(--pp-dark);
	color: #ffffff;
	font-size: 0.8rem;
}

.site-topbar__inner {
	max-width: var(--pp-max);
	margin: 0 auto;
	padding: 0.4rem var(--pp-gutter);
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 1rem;
	flex-wrap: wrap;
}

.site-topbar__date {
	margin: 0;
	font-weight: 700;
	letter-spacing: 0.02em;
}

.site-topbar__social {
	display: flex;
	gap: 0.4rem;
	list-style: none;
	margin: 0;
	padding: 0;
}

.site-topbar__social a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 26px;
	height: 26px;
	border-radius: 50%;
	color: #ffffff;
	text-decoration: none;
}

.site-topbar__social a:hover,
.site-topbar__social a:focus {
	background: #ffffff;
	color: var(--pp-dark);
}

/* --- Header principal: logo + buscador --- */
.site-header__main {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 1rem;
}

.site-branding {
	margin-right: auto;
}

/* Buscador */
.site-search {
	display: flex;
	align-items: center;
	gap: 0.35rem;
}

.site-search__input {
	padding: 0.45rem 0.75rem;
	border: 1px solid var(--pp-border);
	border-radius: var(--pp-radius);
	background: #ffffff;
	color: var(--pp-ink);
	font: inherit;
	font-size: 0.9rem;
	min-width: 190px;
}

.site-search__input:focus {
	border-color: var(--pp-accent);
}

.site-search__submit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.45rem 0.7rem;
	border: 1px solid var(--pp-accent);
	border-radius: var(--pp-radius);
	background: var(--pp-accent);
	color: #ffffff;
	cursor: pointer;
}

.site-search__submit:hover,
.site-search__submit:focus {
	background: var(--pp-dark);
	border-color: var(--pp-dark);
}

/* --- Barra de navegación --- */
.site-nav {
	border-top: 1px solid var(--pp-border);
}

.site-nav__list {
	display: flex;
	gap: 0;
	list-style: none;
	margin: 0;
	padding: 0;
}

.site-nav__list > li {
	position: relative;
}

.site-nav__list a {
	display: block;
	padding: 0.6rem 0.9rem;
	color: var(--pp-ink);
	font-weight: 700;
	font-size: 0.95rem;
	text-decoration: none;
}

.site-nav__list a:hover,
.site-nav__list a:focus {
	color: var(--pp-accent);
}

.site-nav__parent {
	display: inline-flex;
	align-items: center;
	gap: 0.25rem;
}

.site-nav__caret {
	display: inline-block;
	vertical-align: middle;
}

/* Submenú "Más" (escritorio: desplegable) */
.site-nav__list .sub-menu {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	min-width: 235px;
	margin: 0;
	padding: 0.4rem 0;
	list-style: none;
	background: #ffffff;
	border: 1px solid var(--pp-border);
	border-radius: 0 0 var(--pp-radius) var(--pp-radius);
	box-shadow: 0 8px 18px rgba(11, 47, 58, 0.14);
	z-index: 60;
}

.menu-item-has-children:hover > .sub-menu,
.menu-item-has-children:focus-within > .sub-menu,
.menu-item-has-children.is-open > .sub-menu {
	display: block;
}

.site-nav__list .sub-menu a {
	padding: 0.5rem 0.9rem;
	font-weight: 400;
	font-size: 0.9rem;
	white-space: nowrap;
}

.site-nav__list .sub-menu a:hover,
.site-nav__list .sub-menu a:focus {
	background: rgba(10, 108, 116, 0.08);
	color: var(--pp-dark);
}

/* --- Responsive: tablet y móvil (< 1024px) --- */
@media (max-width: 1023px) {
	.site-nav__toggle {
		display: inline-flex;
	}

	.site-nav {
		display: none;
		width: 100%;
		border-top: 0;
	}

	.site-header--nav-open .site-nav {
		display: block;
	}

	.site-nav__list {
		flex-direction: column;
		gap: 0;
		padding: 0.25rem 0;
	}

	.site-nav__list a {
		padding: 0.7rem 0;
		border-bottom: 1px solid var(--pp-border);
	}

	.site-nav__list > li:last-child a,
	.site-nav__list > li:last-child > .sub-menu li:last-child a {
		border-bottom: 0;
	}

	.site-nav__list .sub-menu {
		display: block;
		position: static;
		width: 100%;
		min-width: 0;
		margin: 0 0 0 1rem;
		padding: 0;
		border: 0;
		border-left: 3px solid var(--pp-accent);
		border-radius: 0;
		box-shadow: none;
	}

	.site-nav__list .sub-menu a {
		padding: 0.55rem 0.6rem;
		border-bottom: 1px solid rgba(89, 101, 106, 0.25);
		white-space: normal;
		font-size: 0.85rem;
	}

	/* Buscador: pasa a ancho completo debajo de logo + toggle. */
	.site-search {
		flex-basis: 100%;
		order: 3;
		margin-left: 0;
	}

	.site-search__input {
		flex: 1;
		min-width: 0;
	}

	.site-topbar__inner {
		gap: 0.25rem;
	}

	.site-topbar__date {
		width: 100%;
	}
}

/* =========================================================================
 * FASE 5 — Módulos de la Home (HOME I10, aprobada)
 *
 * Opinión + Editorial en dos columnas. Las miniportadas y Videos reutilizan
 * las grillas existentes (.pp-section / .pp-section__grid / .pp-card).
 * ====================================================================== */

.pp-opinion-editorial {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2rem;
	margin-bottom: 2.5rem;
}

.pp-opinion-editorial__col .pp-section__title {
	margin-bottom: 0.75rem;
}

.pp-opinion-editorial__list {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.25rem;
}

@media (min-width: 768px) {
	.pp-opinion-editorial {
		grid-template-columns: 1fr 1fr;
	}
}

/* =========================================================================
 * FASE 7 — Byline público y archivo de autor
 * ====================================================================== */

.pp-byline {
	display: inline-flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.35em;
}

.pp-byline__prefix {
	font-weight: 400;
}

.pp-byline__author a {
	color: var(--pp-dark);
	font-weight: 700;
	text-decoration: none;
}

.pp-byline__author a:hover,
.pp-byline__author a:focus {
	color: var(--pp-accent);
	text-decoration: underline;
}

.pp-author__avatar {
	margin-bottom: 0.5rem;
}

.pp-author__avatar img {
	display: inline-block;
	border-radius: 50%;
}

/* =========================================================================
 * FASE 9 — Footer completo
 *
 * Columnas: marca + redes · menú institucional/legal · suscripción.
 * Fondo #0B2F3A, texto #FFFFFF. JD Network en #17FDEB (exclusivo).
 * ====================================================================== */

:root {
	--pp-jd: #17fdeb; /* JD Network: color exclusivo (FASE 9). */
}

/* Reestructura el pie en columnas (mantiene fondo oscuro y texto blanco). */
.site-footer__inner {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2rem;
	align-items: start;
}

.site-footer__col {
	min-width: 0;
}

.site-footer__title {
	margin: 0 0 0.75rem;
	font-size: 1rem;
	color: #ffffff;
	text-transform: uppercase;
	letter-spacing: 0.04em;
}

/* Redes sociales */
.site-footer__social {
	margin-top: 1.25rem;
}

.site-footer__social-list {
	display: flex;
	gap: 0.5rem;
	list-style: none;
	margin: 0;
	padding: 0;
}

.site-footer__social-list a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	border: 1px solid rgba(255, 255, 255, 0.35);
	border-radius: 50%;
	color: #ffffff;
	text-decoration: none;
	transition: background 0.15s ease, color 0.15s ease;
}

.site-footer__social-list a:hover,
.site-footer__social-list a:focus {
	background: #ffffff;
	color: var(--pp-dark);
}

/* Menú institucional/legal */
.site-footer__legal {
	display: grid;
	gap: 0.5rem;
	list-style: none;
	margin: 0;
	padding: 0;
}

.site-footer__legal a {
	color: #ffffff;
	text-decoration: none;
}

.site-footer__legal a:hover,
.site-footer__legal a:focus {
	color: var(--pp-accent);
	text-decoration: underline;
}

/* Suscripción */
.site-footer__subscribe-note {
	margin: 0 0 0.75rem;
	color: rgba(255, 255, 255, 0.85);
}

.site-footer__subscribe-row {
	display: flex;
	gap: 0.5rem;
}

.site-footer__subscribe-row input[type="email"] {
	flex: 1;
	min-width: 0;
	padding: 0.5rem 0.75rem;
	border: 1px solid rgba(255, 255, 255, 0.4);
	border-radius: var(--pp-radius);
	background: #ffffff;
	color: var(--pp-ink);
	font: inherit;
	font-size: 0.9rem;
}

.site-footer__subscribe-row input[type="email"]:focus {
	border-color: var(--pp-accent);
	outline: none;
}

.site-footer__subscribe-row button {
	padding: 0.5rem 1rem;
	border: 1px solid var(--pp-accent);
	border-radius: var(--pp-radius);
	background: var(--pp-accent);
	color: #ffffff;
	font: inherit;
	font-weight: 700;
	cursor: pointer;
	white-space: nowrap;
}

.site-footer__subscribe-row button:hover,
.site-footer__subscribe-row button:focus {
	background: var(--pp-dark);
	border-color: var(--pp-dark);
}

.site-footer__subscribe-done {
	margin: 0.75rem 0 0;
	color: var(--pp-jd);
	font-weight: 700;
}

/* Cierre: © 2026 · JD Network */
.site-footer__bottom {
	margin-top: 2rem;
	padding: 1.25rem 0;
	border-top: 1px solid rgba(255, 255, 255, 0.2);
	display: flex;
	align-items: center;
	justify-content: center;
}

.site-footer__credit {
	margin: 0;
	font-weight: 300; /* Lato Light */
	font-size: 0.85rem;
	text-align: center;
	color: rgba(255, 255, 255, 0.85);
}

.site-footer__credit .site-footer__jd {
	color: var(--pp-jd);
	font-weight: 300; /* Lato Light; el color #17FDEB es el distintivo. */
	text-decoration: none;
}

.site-footer__credit .site-footer__jd:hover,
.site-footer__credit .site-footer__jd:focus {
	color: #ffffff;
	text-decoration: underline;
}

/* Responsive */
@media (min-width: 768px) {
	.site-footer__inner {
		grid-template-columns: 1fr 1fr 1fr;
		gap: 2.5rem;
	}
}

@media (max-width: 767px) {
	.site-footer__subscribe-row {
		flex-direction: column;
	}

	.site-footer__subscribe-row button {
		width: 100%;
	}
}

/* ============================================================
   FASE 10 — Plantilla de artículo
   ============================================================ */

/* Subtítulo (extracto editorial) */
.entry__subtitle {
	margin: 0.75rem 0 0;
	font-size: 1.125rem;
	font-weight: 300; /* Lato Light */
	line-height: 1.5;
	color: var(--pp-muted);
}

/* Fecha de actualización */
.entry__updated {
	display: block;
	margin-top: 0.15rem;
	font-size: 0.85rem;
	color: var(--pp-muted);
}

/* Imagen destacada + pie (ALT/crédito) */
.entry__media {
	margin: 1.25rem 0;
}

.entry__media-caption {
	margin-top: 0.5rem;
	font-size: 0.8rem;
	font-style: italic;
	color: var(--pp-muted);
}

/* Cuerpo editorial: H2/H3, citas, listas, enlaces */
.entry__content h2,
.entry__content h3 {
	margin-top: 1.75rem;
	margin-bottom: 0.6rem;
	line-height: 1.3;
}

.entry__content h2 {
	font-size: 1.4rem;
}

.entry__content h3 {
	font-size: 1.15rem;
}

.entry__content p {
	margin: 0 0 1.15rem;
}

.entry__content a {
	color: var(--pp-accent);
	text-decoration: underline;
	text-underline-offset: 2px;
}

.entry__content a:hover,
.entry__content a:focus {
	color: var(--pp-dark);
}

.entry__content blockquote {
	margin: 1.5rem 0;
	padding: 0.75rem 1.25rem;
	border-left: 4px solid var(--pp-accent);
	background: rgba(10, 108, 116, 0.08);
	font-size: 1.05rem;
	font-style: italic;
	color: var(--pp-dark);
}

.entry__content ul,
.entry__content ol {
	margin: 0 0 1.15rem 1.25rem;
	padding: 0;
}

.entry__content li {
	margin-bottom: 0.4rem;
}

/* Fuentes */
.entry__fuentes {
	margin-top: 2rem;
	padding: 1.25rem;
	border: 1px solid var(--pp-border);
	border-radius: var(--pp-radius);
	background: rgba(10, 108, 116, 0.08);
}

.entry__fuentes-title {
	margin: 0 0 0.6rem;
	font-size: 1rem;
	text-transform: uppercase;
	letter-spacing: 0.04em;
}

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

.entry__fuentes-list li {
	margin-bottom: 0.4rem;
	font-size: 0.9rem;
	word-break: break-word;
}

.entry__fuentes-list a {
	color: var(--pp-accent);
	text-decoration: underline;
	text-underline-offset: 2px;
}

/* Correcciones */
.entry__correccion {
	margin-top: 2rem;
	padding: 1rem 1.25rem;
	border: 1px solid var(--pp-border);
	border-left: 4px solid var(--pp-dark);
	border-radius: var(--pp-radius);
	background: rgba(10, 108, 116, 0.08);
}

.entry__correccion-label {
	margin: 0 0 0.35rem;
	font-size: 0.8rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	color: var(--pp-dark);
}

.entry__correccion-text {
	margin: 0;
	font-size: 0.9rem;
	line-height: 1.6;
}

/* Compartir */
.entry__share {
	display: flex;
	align-items: center;
	gap: 0.9rem;
	margin-top: 2rem;
	padding-top: 1.25rem;
	border-top: 1px solid var(--pp-border);
}

.entry__share-label {
	font-size: 0.9rem;
	font-weight: 700;
	color: var(--pp-dark);
}

.entry__share-list {
	display: flex;
	gap: 0.6rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.entry__share-list a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2rem;
	height: 2rem;
	border-radius: 50%;
	color: var(--pp-dark);
	background: rgba(10, 108, 116, 0.1);
	text-decoration: none;
	transition: color 0.15s ease, background 0.15s ease;
}

.entry__share-list a:hover,
.entry__share-list a:focus {
	color: #ffffff;
	background: var(--pp-accent);
}

/* Contenido relacionado */
.entry__related {
	margin-top: 2.5rem;
}

.entry__related-title {
	margin: 0 0 1rem;
	font-size: 1.2rem;
}

.entry__related-grid {
	display: grid;
	gap: 1rem;
}

@media (min-width: 768px) {
	.entry__related-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}
