/* ==========================================================================
   LITTLE GIANTS KIDS SERVICES — Sistema de diseño "Curva de Crecimiento"
   --------------------------------------------------------------------------
   Concepto: una sola línea de pulso ascendente funciona a la vez como
   gráfica de crecimiento infantil y como trazo de monitor médico —
   el punto de encuentro entre "niños que crecen" y "cuidado médico
   monitoreado". Aparece en el hero, como divisor entre secciones y
   como marcador de listas.

   Paleta:
     --ink      #2A2438  tinta ciruela oscura (texto, footer)
     --paper    #FAF7F1  hueso cálido (fondo base)
     --mist     #E8EFEA  salvia muy pálido (fondo alterno de secciones)
     --sage     #5B8C7B  verde salvia (color de marca principal)
     --sage-dp  #3E6355  salvia oscuro (hover / énfasis)
     --coral    #E8794F  coral cálido (acento minoritario: CTA, íconos)
     --gold     #D6A24A  dorado (acento raro: detalles, insignias)

   Tipografía:
     Fraunces          — titulares grandes, con carácter (uso restringido)
     Plus Jakarta Sans — texto, navegación, botones, UI
   ========================================================================== */

@import url("https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,400;0,9..144,500;0,9..144,600;1,9..144,500&family=Plus+Jakarta+Sans:ital,wght@0,400;0,500;0,600;0,700;0,800;1,500&display=swap");

/* -------------------------------- Reset -------------------------------- */

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

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

body, h1, h2, h3, h4, p, ul, ol, figure, blockquote { margin: 0; }

ul, ol { padding: 0; list-style: none; }

img, video { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }

@media (prefers-reduced-motion: reduce) {
	*, *::before, *::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
		scroll-behavior: auto !important;
	}
}

/* -------------------------------- Tokens -------------------------------- */

:root {
	--ink: #2A2438;
	--ink-70: rgba(42, 36, 56, 0.7);
	--ink-50: rgba(42, 36, 56, 0.5);
	--paper: #FAF7F1;
	--mist: #E8EFEA;
	--sage: #5B8C7B;
	--sage-dp: #3E6355;
	--coral: #E8794F;
	--coral-dp: #CF5F37;
	--gold: #D6A24A;
	--line: rgba(42, 36, 56, 0.12);
	--shadow: 0 12px 32px rgba(42, 36, 56, 0.10);
	--shadow-sm: 0 4px 14px rgba(42, 36, 56, 0.08);
	--radius: 18px;
	--radius-sm: 10px;
	--container: 1180px;
	--font-display: "Fraunces", Georgia, serif;
	--font-body: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* -------------------------------- Base -------------------------------- */

body {
	font-family: var(--font-body);
	background: var(--paper);
	color: var(--ink);
	line-height: 1.6;
	font-size: 16.5px;
	-webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
	font-family: var(--font-display);
	color: var(--ink);
	line-height: 1.15;
	font-weight: 600;
}

h1 { font-size: clamp(2.3rem, 4.4vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); }
h3 { font-size: 1.25rem; font-weight: 600; }

p { color: var(--ink-70); }

.eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 0.5em;
	font-family: var(--font-body);
	font-weight: 700;
	font-size: 0.78rem;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--sage-dp);
}

	.eyebrow::before {
		content: '';
		width: 1.4em;
		height: 2px;
		background: var(--coral);
		display: inline-block;
	}

a:focus-visible, button:focus-visible, input:focus-visible {
	outline: 2px solid var(--coral);
	outline-offset: 3px;
	border-radius: 4px;
}

/* -------------------------------- Layout -------------------------------- */

.container {
	max-width: var(--container);
	margin: 0 auto;
	padding: 0 1.5rem;
}

.section {
	padding: 4.5rem 0;
}

.section--mist { background: var(--mist); }
.section--paper { background: var(--paper); }
.section--ink { background: var(--ink); color: #fff; }

.section-head {
	max-width: 640px;
	margin-bottom: 2.75rem;
}

.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

.section-head h2 { margin-top: 0.6em; }

.section-head p { margin-top: 0.9em; font-size: 1.05rem; }

@media (min-width: 900px) {
	.section { padding: 6.5rem 0; }
}

/* ----------------------------- Pulse divider ----------------------------- */
/* El motivo de "curva de crecimiento / monitor médico" recurrente */

.pulse-divider {
	display: block;
	width: 100%;
	height: 28px;
	overflow: hidden;
}

	.pulse-divider svg { width: 100%; height: 100%; }

.pulse-icon {
	width: 1.1em;
	height: 1.1em;
	flex: none;
	color: var(--coral);
}

/* --------------------------------- Buttons --------------------------------- */

.btn {
	display: inline-flex;
	align-items: center;
	gap: 0.6em;
	font-weight: 700;
	font-size: 0.95rem;
	padding: 0.9em 1.6em;
	border-radius: 100px;
	transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
	white-space: nowrap;
}

.btn--primary {
	background: var(--coral);
	color: #fff;
	box-shadow: 0 8px 20px rgba(232, 121, 79, 0.35);
}

	.btn--primary:hover { background: var(--coral-dp); transform: translateY(-2px); }

.btn--ghost {
	background: transparent;
	color: var(--ink);
	border: 1.5px solid var(--line);
}

	.btn--ghost:hover { border-color: var(--sage); color: var(--sage-dp); }

.btn--on-dark {
	background: rgba(255,255,255,0.12);
	color: #fff;
	border: 1.5px solid rgba(255,255,255,0.35);
}

	.btn--on-dark:hover { background: rgba(255,255,255,0.22); }

.btn-row { display: flex; flex-wrap: wrap; gap: 0.9rem; }

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

.site-header {
	position: sticky;
	top: 0;
	z-index: 200;
	background: rgba(250, 247, 241, 0.88);
	backdrop-filter: blur(10px);
	border-bottom: 1px solid var(--line);
}

.site-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 1rem 0;
}

.brand {
	display: flex;
	align-items: center;
	gap: 0.65em;
	font-family: var(--font-display);
	font-weight: 600;
	font-size: 1.15rem;
	color: var(--ink);
	line-height: 1.05;
}

.brand__mark {
	width: 2.6em;
	height: 2.6em;
	border-radius: 50%;
	background: var(--sage);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: var(--font-display);
	font-weight: 600;
	font-size: 1.1em;
	flex: none;
}

.brand__tag {
	display: block;
	font-family: var(--font-body);
	font-weight: 600;
	font-size: 0.62em;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--sage-dp);
	margin-top: 0.2em;
}

.nav-desktop {
	display: none;
}

@media (min-width: 900px) {
	.nav-desktop {
		display: flex;
		align-items: center;
		gap: 2.1rem;
	}

	.nav-desktop a {
		font-weight: 600;
		font-size: 0.95rem;
		color: var(--ink-70);
		position: relative;
		padding: 0.3em 0;
	}

	.nav-desktop a::after {
		content: '';
		position: absolute;
		left: 0; right: 100%;
		bottom: -2px;
		height: 2px;
		background: var(--coral);
		transition: right 0.25s ease;
	}

	.nav-desktop a:hover { color: var(--ink); }
	.nav-desktop a:hover::after { right: 0; }

	.nav-desktop a.is-active { color: var(--ink); }
	.nav-desktop a.is-active::after { right: 0; background: var(--sage); }
}

.header-actions { display: flex; align-items: center; gap: 0.75rem; }

.header-actions .btn--primary { display: none; }

@media (min-width: 900px) {
	.header-actions .btn--primary { display: inline-flex; }
}

.nav-toggle {
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	width: 2.6em;
	height: 2.6em;
	border-radius: 50%;
	border: 1.5px solid var(--line);
}

	.nav-toggle span {
		display: block;
		width: 1.1em;
		height: 2px;
		margin: 0 auto;
		background: var(--ink);
		transition: transform 0.25s ease, opacity 0.25s ease;
	}

	.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
	.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
	.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (min-width: 900px) {
	.nav-toggle { display: none; }
}

.mobile-menu {
	position: fixed;
	inset: 0;
	top: 0;
	z-index: 190;
	background: var(--ink);
	color: #fff;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 6rem 2rem 3rem 2rem;
	transform: translateY(-100%);
	transition: transform 0.35s ease;
}

	.mobile-menu.is-open { transform: translateY(0); }

	.mobile-menu a {
		display: block;
		font-family: var(--font-display);
		font-size: 2rem;
		padding: 0.45em 0;
		border-bottom: 1px solid rgba(255,255,255,0.12);
	}

	.mobile-menu a.is-active { color: var(--coral); }

	.mobile-menu .btn { margin-top: 2rem; }

@media (min-width: 900px) {
	.mobile-menu { display: none; }
}

/* ---------------------------------- Hero ---------------------------------- */

.hero {
	position: relative;
	background: linear-gradient(180deg, var(--mist) 0%, #EEF3EC 100%);
	overflow: hidden;
	padding: 3.5rem 0 4rem 0;
}

	/* Escena ilustrada infantil (sol, nubes, estrellas) — vive detrás
	   del contenido, en la esquina superior derecha del hero */
	.hero__art {
		position: absolute;
		top: -1.5rem;
		right: -1.5rem;
		width: clamp(160px, 20vw, 260px);
		z-index: 0;
		pointer-events: none;
	}

	.hero__art .art-sun { animation: sun-spin 26s linear infinite; transform-origin: 74% 23%; }
	.hero__art .art-cloud-a { animation: cloud-drift 8s ease-in-out infinite; }
	.hero__art .art-cloud-b { animation: cloud-drift 7s ease-in-out infinite 0.6s; }
	.hero__art .art-star { animation: twinkle 3.2s ease-in-out infinite; transform-origin: center; }
	.hero__art .art-star:nth-child(2) { animation-delay: 0.6s; }
	.hero__art .art-star:nth-child(3) { animation-delay: 1.2s; }

	@keyframes sun-spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
	@keyframes cloud-drift { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }
	@keyframes twinkle { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.55; transform: scale(0.85); } }

	@media (max-width: 640px) {
		.hero__art { width: 130px; top: -0.5rem; right: -0.5rem; opacity: 0.9; }
	}

.hero__inner { position: relative; z-index: 1; }

.hero--page .hero__art { width: clamp(130px, 16vw, 190px); }

.hero--page { padding: 3rem 0 3.25rem 0; }

.hero--page h1 { font-size: clamp(2rem, 4vw, 2.8rem); }

.hero__title { max-width: 780px; margin-top: 0.5em; }

.hero__title em {
	font-style: italic;
	color: var(--sage-dp);
}

.hero__lead {
	max-width: 620px;
	font-size: 1.1rem;
	margin-top: 1.2em;
}

.hero__actions { margin-top: 2rem; }

@media (min-width: 900px) {
	.hero { padding: 5.5rem 0 6rem 0; }
}

/* ------------------------------- Feature grid ------------------------------- */

.feature-grid {
	display: grid;
	gap: 1.1rem;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.feature-card {
	background: var(--paper);
	border: 1px solid var(--line);
	border-radius: var(--radius-sm);
	padding: 1.6rem 1.5rem;
}

.feature-card__icon {
	width: 2.6em;
	height: 2.6em;
	border-radius: 50%;
	background: var(--mist);
	color: var(--sage-dp);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.15rem;
	margin-bottom: 1em;
}

.feature-card h3 { font-size: 1.05rem; margin-bottom: 0.4em; }

.feature-card p { font-size: 0.92rem; margin: 0; }

/* -------------------------------- Badge row -------------------------------- */

.badge-row {
	display: grid;
	gap: 1.25rem;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.badge-card {
	display: flex;
	align-items: center;
	gap: 1rem;
	background: var(--paper);
	border-radius: var(--radius-sm);
	border: 1px solid var(--line);
	padding: 1.1rem 1.3rem;
	transition: border-color 0.2s ease, transform 0.2s ease;
}

	.badge-card:hover { border-color: var(--sage); transform: translateY(-2px); }

	.badge-card img {
		width: 3rem;
		height: 3rem;
		border-radius: 50%;
		object-fit: cover;
		flex: none;
	}

	.badge-card span { font-weight: 700; font-size: 0.92rem; }

/* -------------------------------- Lang cards -------------------------------- */

.lang-grid {
	display: grid;
	gap: 1.5rem;
	grid-template-columns: 1fr;
}

@media (min-width: 860px) {
	.lang-grid { grid-template-columns: 1fr 1fr; }
}

.lang-card {
	background: var(--paper);
	border-radius: var(--radius);
	padding: 2rem;
	border: 1px solid var(--line);
}

.lang-card__tag {
	display: inline-block;
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--sage-dp);
	background: var(--mist);
	padding: 0.3em 0.8em;
	border-radius: 100px;
	margin-bottom: 1em;
}

.lang-card h3 { margin-bottom: 0.6em; }

.lang-card p { font-size: 0.96rem; }

.info-card {
	background: var(--paper);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 2rem;
}

/* -------------------------------- Pill list -------------------------------- */

.pill-list {
	display: flex;
	flex-wrap: wrap;
	gap: 0.7rem;
	margin-top: 1.2rem;
}

.pill {
	display: inline-flex;
	align-items: center;
	gap: 0.5em;
	background: var(--paper);
	border: 1px solid var(--line);
	padding: 0.55em 1.1em;
	border-radius: 100px;
	font-weight: 600;
	font-size: 0.9rem;
}

/* ------------------------------- Service cards ------------------------------- */

.service-grid {
	display: grid;
	gap: 1.5rem;
	grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
}

.service-card {
	background: var(--paper);
	border-radius: var(--radius);
	overflow: hidden;
	border: 1px solid var(--line);
	box-shadow: var(--shadow-sm);
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}

	.service-card:hover {
		transform: translateY(-5px);
		box-shadow: var(--shadow);
	}

	.service-card__media {
		aspect-ratio: 4 / 3;
		overflow: hidden;
		background: var(--mist);
	}

	.service-card__media img {
		width: 100%;
		height: 100%;
		object-fit: cover;
	}

	.service-card__body { padding: 1.5rem 1.5rem 1.75rem 1.5rem; }

	.service-card__num {
		font-family: var(--font-display);
		font-style: italic;
		color: var(--coral);
		font-size: 0.95rem;
	}

	.service-card h3 { margin: 0.3em 0 0.55em 0; }

	.service-card p { font-size: 0.92rem; margin: 0; }

/* --------------------------------- CTA band --------------------------------- */

.cta-band {
	background: var(--ink);
	color: #fff;
	border-radius: var(--radius);
	padding: 2.75rem 2rem;
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
	align-items: flex-start;
}

.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,0.72); margin-top: 0.6em; max-width: 480px; }

@media (min-width: 800px) {
	.cta-band {
		flex-direction: row;
		align-items: center;
		justify-content: space-between;
		padding: 3rem 3.5rem;
	}
}

/* -------------------------------- Contact page -------------------------------- */

.contact-grid {
	display: grid;
	gap: 1.25rem;
	grid-template-columns: 1fr;
	margin-bottom: 2.5rem;
}

@media (min-width: 700px) {
	.contact-grid { grid-template-columns: 1fr 1fr; }
}

.contact-card {
	background: var(--paper);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 2rem;
	display: flex;
	gap: 1.25rem;
	align-items: flex-start;
}

.contact-card__icon {
	width: 3.2em;
	height: 3.2em;
	border-radius: 50%;
	background: var(--sage);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.2rem;
	flex: none;
}

.contact-card a.value {
	display: inline-block;
	margin-top: 0.5em;
	font-weight: 700;
	color: var(--sage-dp);
}

.map-card {
	border-radius: var(--radius);
	overflow: hidden;
	border: 1px solid var(--line);
	box-shadow: var(--shadow-sm);
}

.map-card__frame {
	position: relative;
	padding-bottom: 45%;
	height: 0;
	overflow: hidden;
}

	.map-card__frame iframe {
		position: absolute;
		inset: 0;
		width: 100%;
		height: 100%;
		border: 0;
	}

.map-card__address {
	padding: 1.25rem 1.5rem;
	background: var(--paper);
	font-weight: 600;
	font-size: 0.95rem;
	display: flex;
	align-items: center;
	gap: 0.6em;
}

@media (min-width: 700px) {
	.map-card__frame { padding-bottom: 32%; }
}

/* ---------------------------------- Gallery ---------------------------------- */

.gallery-intro { max-width: 620px; margin-bottom: 2.5rem; }

.gallery-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
	gap: 0.9rem;
}

.gallery-item {
	position: relative;
	display: block;
	aspect-ratio: 1 / 1;
	overflow: hidden;
	border-radius: var(--radius-sm);
	background: var(--mist);
	cursor: pointer;
}

	.gallery-item img, .gallery-item video {
		width: 100%;
		height: 100%;
		object-fit: cover;
		transition: transform 0.5s ease;
	}

	.gallery-item::after {
		content: '';
		position: absolute;
		inset: 0;
		background: linear-gradient(180deg, rgba(42,36,56,0) 55%, rgba(42,36,56,0.45) 100%);
		opacity: 0;
		transition: opacity 0.3s ease;
	}

	.gallery-item:hover img, .gallery-item:hover video { transform: scale(1.08); }
	.gallery-item:hover::after { opacity: 1; }

	.gallery-item .gallery-play {
		position: absolute;
		top: 50%; left: 50%;
		transform: translate(-50%, -50%);
		width: 3em; height: 3em;
		border-radius: 50%;
		background: rgba(255,255,255,0.92);
		color: var(--coral);
		display: flex;
		align-items: center;
		justify-content: center;
		font-size: 1.05em;
		z-index: 1;
	}

@media (max-width: 640px) {
	.gallery-grid { grid-template-columns: repeat(auto-fill, minmax(130px, 1fr)); gap: 0.5rem; }
}

/* Lightbox */

.lightbox {
	display: none;
	position: fixed;
	inset: 0;
	z-index: 999;
	background: rgba(24, 20, 30, 0.95);
	align-items: center;
	justify-content: center;
	padding: 2rem;
}

	.lightbox.is-visible { display: flex; }

	.lightbox-content {
		max-width: 92vw;
		max-height: 86vh;
	}

		.lightbox-content img, .lightbox-content video {
			max-width: 92vw;
			max-height: 86vh;
			border-radius: 10px;
			box-shadow: 0 20px 60px rgba(0,0,0,0.5);
		}

	.lightbox-close, .lightbox-prev, .lightbox-next {
		position: fixed;
		width: 3em; height: 3em;
		border-radius: 50%;
		background: rgba(255,255,255,0.12);
		color: #fff;
		font-size: 1.3em;
		display: flex;
		align-items: center;
		justify-content: center;
		transition: background 0.2s ease;
	}

		.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover { background: var(--coral); }

	.lightbox-close { top: 1.5rem; right: 1.5rem; }
	.lightbox-prev { left: 1.5rem; top: 50%; transform: translateY(-50%); }
	.lightbox-next { right: 1.5rem; top: 50%; transform: translateY(-50%); }

@media (max-width: 640px) {
	.lightbox-close, .lightbox-prev, .lightbox-next { width: 2.5em; height: 2.5em; font-size: 1.1em; }
	.lightbox-close { top: 0.75rem; right: 0.75rem; }
	.lightbox-prev { left: 0.6rem; }
	.lightbox-next { right: 0.6rem; }
}

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

.site-footer {
	background: var(--ink);
	color: rgba(255,255,255,0.82);
	padding: 4rem 0 2rem 0;
}

.footer-grid {
	display: grid;
	gap: 2.5rem;
	grid-template-columns: 1fr;
}

@media (min-width: 800px) {
	.footer-grid { grid-template-columns: 1.3fr 1fr 1fr; }
}

.footer-brand .brand { color: #fff; }

.footer-brand p { color: rgba(255,255,255,0.6); margin-top: 1rem; max-width: 320px; font-size: 0.92rem; }

.footer-col h4 {
	font-family: var(--font-body);
	font-size: 0.8rem;
	font-weight: 800;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--gold);
	margin-bottom: 1rem;
}

.footer-col a, .footer-col p {
	display: block;
	color: rgba(255,255,255,0.75);
	margin-bottom: 0.6rem;
	font-size: 0.95rem;
}

.footer-col a:hover { color: #fff; }

.footer-social {
	display: flex;
	gap: 0.75rem;
	margin-top: 0.5rem;
}

	.footer-social a {
		width: 2.4em; height: 2.4em;
		border-radius: 50%;
		border: 1px solid rgba(255,255,255,0.22);
		display: flex;
		align-items: center;
		justify-content: center;
	}

	.footer-social a:hover { background: var(--coral); border-color: var(--coral); }

.footer-medicaid {
	display: inline-flex;
	align-items: center;
	gap: 0.6em;
	background: rgba(255,255,255,0.08);
	padding: 0.6em 1.1em;
	border-radius: 100px;
	font-weight: 700;
	font-size: 0.85rem;
	color: var(--gold);
	margin-top: 0.5rem;
}

.footer-bottom {
	border-top: 1px solid rgba(255,255,255,0.12);
	margin-top: 3rem;
	padding-top: 1.5rem;
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem 1.5rem;
	font-size: 0.82rem;
	color: rgba(255,255,255,0.5);
}

/* -------------------------------- Call FAB -------------------------------- */

.call-fab {
	position: fixed;
	right: 1.5rem;
	bottom: 1.5rem;
	width: 3.4rem;
	height: 3.4rem;
	border-radius: 50%;
	background: var(--coral);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.3rem;
	box-shadow: 0 10px 26px rgba(232, 121, 79, 0.45);
	z-index: 150;
	transition: transform 0.2s ease;
}

	.call-fab:hover { transform: scale(1.08); }

/* -------------------------------- Utility -------------------------------- */

.visually-hidden {
	position: absolute;
	width: 1px; height: 1px;
	overflow: hidden;
	clip: rect(0 0 0 0);
	white-space: nowrap;
}

.mt-0 { margin-top: 0 !important; }
