/**
 * Styles du bandeau d'information.
 *
 * Structure HTML :
 *   .aprobat-info-banner          la carte du bandeau
 *   .aprobat-info-banner__inner   contenu (paragraphes, listes, liens)
 *
 * La couleur de fond utilise la variable du thème Salient / Nectar. La valeur
 * de repli s'applique sur un site où cette variable n'est pas définie : sans
 * elle, la déclaration serait invalide et le fond deviendrait transparent.
 */

.aprobat-info-banner {
	width: 100%;
	box-sizing: border-box;
	background-color: var( --nectar-extra-color-1, #1d2327 );
	color: #fff;
	padding: 30px;
	border-radius: 15px;
	font-size: 24px;
	text-align: center;
}

.aprobat-info-banner__inner > *:first-child {
	margin-top: 0;
}

.aprobat-info-banner__inner > *:last-child {
	margin-bottom: 0;
}

.aprobat-info-banner__inner a {
	color: inherit;
	text-decoration: underline;
}
