.avisos {
	width: 100%;
	padding: 0;
	box-sizing: border-box;
	background: #f7f8fa;
	display: flex;
	justify-content: center;
}

/* Cuadro que encapsula todo */
.avisos-cuadro {
	width: 100%;
	margin: 5%;                            /* ✅ margen externo en todos los lados */
	background: #ffffff;
	padding: clamp(24px, 4vw, 48px);
	box-shadow: 0 8px 24px rgba(0,0,0,0.06);
	border-radius: 16px;
	box-sizing: border-box;
}

/* Título centrado */
.avisos-titulo {
	text-align: center;
	font-size: clamp(28px, 4vw, 40px);
	font-weight: 800;
	color: #1f2937;
	margin-bottom: clamp(16px, 3vw, 24px);
}

/* Texto dentro del cuadro */
.avisos-texto {
	font-size: clamp(16px, 1.6vw, 18px);
	line-height: 1.6;
	color: #1f2937;
}

/* Párrafos */
.avisos-texto p {
	margin-bottom: 1em;
}

/* Enlaces si aparecen */
.avisos-texto a {
	color: #2563eb;
	text-decoration: underline;
	text-underline-offset: 3px;
}
.avisos-texto a:hover {
	text-decoration-thickness: 2px;
}

/* Responsive fino */
@media (max-width: 480px) {
	.avisos-cuadro {
		margin: 5%;
		padding: 16px;
		border-radius: 14px;
	}
}
