/* XT Cintillo — barra de anuncios full-width (100% de la ventana), en el tope de la página. */
.xt-cintillo-bar {
	width: 100%;
	box-sizing: border-box;
	background: var(--xtc-bg, #ed6436);
	color: var(--xtc-text, #fff);
	line-height: 1.3;
}

/* Móvil: el encabezado del tema es `position:fixed` y taparía la barra.
   El JS pone la barra fija arriba y empuja el header hacia abajo su altura. */
.xt-cintillo-bar.xtc-fixed {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 100000;
}

.xt-cintillo {
	display: flex;
	align-items: stretch;
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	box-sizing: border-box;
}

.xt-cintillo .xtc-viewport {
	flex: 1 1 auto;
	overflow: hidden;
	min-width: 0;
}

.xt-cintillo .xtc-track {
	display: flex;
	transition: transform .4s ease;
	will-change: transform;
}

.xt-cintillo .xtc-slide {
	flex: 0 0 100%;
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 8px 12px;
	min-width: 0;
	font-size: 14px;
}

/* Contenido rico dentro del mensaje */
.xt-cintillo .xtc-slide > * {
	margin: 0;
	max-width: 100%;
}
.xt-cintillo .xtc-slide p { margin: 0; }
.xt-cintillo .xtc-slide a {
	color: inherit;
	text-decoration: underline;
	font-weight: 700;
}
.xt-cintillo .xtc-slide strong,
.xt-cintillo .xtc-slide b { font-weight: 800; }
.xt-cintillo .xtc-slide h1,
.xt-cintillo .xtc-slide h2,
.xt-cintillo .xtc-slide h3,
.xt-cintillo .xtc-slide h4 {
	font-size: 1.05em;
	font-weight: 800;
	line-height: 1.2;
}
.xt-cintillo .xtc-slide img {
	max-height: 24px;
	width: auto;
	vertical-align: middle;
}

/* Flechas */
.xt-cintillo .xtc-arrow {
	flex: 0 0 auto;
	width: 34px;
	border: 0;
	margin: 0;
	padding: 0;
	cursor: pointer;
	background: transparent;
	color: inherit;
	opacity: .85;
	font-size: 22px;
	line-height: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: opacity .2s ease;
}
.xt-cintillo .xtc-arrow:hover { opacity: 1; }

/* Un solo mensaje: sin flechas ni animación */
.xt-cintillo.xtc-single .xtc-arrow { display: none; }

/* Móvil */
@media (max-width: 782px) {
	.xt-cintillo .xtc-slide { font-size: 12.5px; padding: 7px 6px; }
	.xt-cintillo .xtc-arrow { width: 26px; font-size: 18px; }
	.xt-cintillo .xtc-slide img { max-height: 20px; }
}
