<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* CSS pour éditeur */
 /* ------ BLONDE SCRIPT ------ */
 @font-face {
    font-family: 'blondescript';
    src: url('../fonts/blonde-script/blondescript-regular-webfont.woff2') format('woff2'),
         url('../fonts/blonde-script/blondescript-regular-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

 /* ------ INTELO------ */
@font-face {
    font-family: 'intelo';
    src: url('../fonts/intelo/intelo_light-webfont.woff2') format('woff2'),
         url('../fonts/intelo/intelo_light-webfont.woff') format('woff');
    font-weight: 300;
    font-style: normal;
}
@font-face {
    font-family: 'intelo';
    src: url('../fonts/intelo/intelo_regular-webfont.woff2') format('woff2'),
         url('../fonts/intelo/intelo_regular-webfont.woff') format('woff');
    font-weight: 400;
    font-style: normal;
}
@font-face {
    font-family: 'intelo';
    src: url('../fonts/intelo/intelo_semibold-webfont.woff2') format('woff2'),
         url('../fonts/intelo/intelo_semibold-webfont.woff') format('woff');
    font-weight: 600;
    font-style: normal;
}
@font-face {
    font-family: 'intelo';
    src: url('../fonts/intelo/intelo_bold-webfont.woff2') format('woff2'),
         url('../fonts/intelo/intelo_bold-webfont.woff') format('woff');
    font-weight: 700;
    font-style: normal;
}

p, td, div, li {
    font-family: 'intelo', sans-serif;
    font-size:18px;
    line-height: 1.3;
}

h2 {
    color: #EE743B;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0.05em;
}

a {
    color: #EE743B;
    font-weight: 700;
}

.btn-link.btn-orange {
    background-color: #EE743B;
}

.btn-link {
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    font-weight: 400;
    color: #FFF;
    background-color: #575756;
    padding: 10px 15px;
    border: 1px solid transparent;
    transition: all 0.2s ease;
}

.edito {
    position: relative;
    display: block;
    margin: 30px 0;
    text-align: center;
}

.edito::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100px;
    height: 100px;
    margin: auto;
    background-image: url('../images/assets/logo-signature-30op.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
}

.edito * {
    text-align: center;
    letter-spacing: 0.05em;
    line-height: 1.8;
    margin: 0 auto;
}

.trombinoscope img {
    flex: none;
    width: 270px;
    height: 270px;
    object-fit: cover;
    object-position: center;
    border-radius: 100%;
    padding: 5px;
    border: 2px dashed #EE743B;
    margin-right: 20px;
}

/*
  icones
*/
.iconelist {
    position: relative;
	display: block;
    vertical-align: middle;
	padding: 5px 10px 5px 32px;
	margin: 0 15px 15px 0;
	font-size: 1.6rem;
    font-size: clamp(1.4rem, 1.0vw, 1.6rem);
	color: #EE743B;
	background: #FFFFFF;
	border: 1px solid #EE743B;
	border-radius: 4px;
	line-height: 1.3;
}

.iconelist::before {
    content: '';
    position: absolute;
    left: 4px;
    top: 4px;
    display: inline-block;
    vertical-align: middle;
    width: 22px;
    height: 22px;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    margin: 0 5px 0 0;
}

.iconelist.icone_agenda::before {
    background-image: url('../images/assets/events/icon-agenda.svg');
}
.iconelist.icone_horaires::before {
    background-image: url('../images/assets/events/icon-horaires.svg');
}
.iconelist.icone_tarifs::before {
    background-image: url('../images/assets/events/icon-tarifs.svg');
}
.iconelist.icone_localisation::before {
    background-image: url('../images/assets/events/icon-localisation.svg');
}
.iconelist.icone_infos::before {
    background-image: url('../images/assets/events/icon-infos.svg');
}</pre></body></html>