/* CTA */

.chen_cta_wrapper {
    display: flex;
    width: 100%;
    padding: 16px;
}

.chen_cta_wrapper--left {
    justify-content: flex-start;
}

.chen_cta_wrapper--center {
    justify-content: center;
}

.chen_cta_wrapper--right {
    justify-content: flex-end;
}

.chen_cta {
    background-color: #f25f70;
    color: #fff;
    padding: 10px 30px;
    text-decoration: none;
    border-radius: 10px;
    font-size: 16px;
    font-family: 'Quicksand', "Roboto", serif;
    font-weight: 500;
    transform: scale(1);
    transition: all 0.3s ease;
}

.chen_cta:hover {
    opacity: .9;
    color: #fff;
    transform: scale(0.98);
}

.chen_cta--olive {
    background: #808000;
}

.chen_cta--rose {
    background: #f25f70;
}

.chen_cta--teal {
    background: #008080;
}

.chen_cta--shadow {
    box-shadow: 0px 10px 10px rgba(0,0,0,0.25);
}

/* EVENT-TITLE */
.chen_event_title {
    text-align: left;
}

.chen_event_title__main {
    margin-bottom: 8px;
}

/* Titre */

.chen_event_title__title {
    color: inherit;
    font-family: "Roboto", sans-serif;
    font-size: 32px;
    line-height: 1;
    margin-bottom: 0px;
    letter-spacing: 0.02em;
    text-align: left;
    font-weight: 300;
    text-transform: uppercase;
}

/* Sous-titre */

.chen_event_title__subtitle {
    color: inherit;
    font-family: "Roboto", sans-serif;
    font-size: 32px;
    line-height: 1;
    margin-bottom: 0px;
    letter-spacing: 0.02em;
    text-align: left;
    font-weight: 300;
    text-transform: uppercase;
}

/* Collaborateur */

.chen_event_title__collaborator {
    color: inherit;
    font-family: "Roboto", sans-serif;
    font-size: 24px;
    line-height: 1;
    margin-bottom: 8px;
    letter-spacing: 0.02em;
    text-align: left;
    font-weight: 200;
}

.chen_event_title__datetime {
    margin-bottom: 8px;
}

/* Date */

.chen_event_title__date {
    color: inherit;
    font-family: "Roboto", sans-serif;
    font-size: 24px;
    line-height: 1;
    margin-bottom: 0px;
    letter-spacing: 0.02em;
    text-align: left;
    font-weight: 200;
    text-transform: uppercase;
}

/* Horaires */

.chen_event_title__schedule {
    color: inherit;
    font-family: "Roboto", sans-serif;
    font-size: 24px;
    line-height: 1;
    margin-bottom: 0px;
    letter-spacing: 0.02em;
    text-align: left;
    font-weight: 200;
    text-transform: uppercase;
}

/* Couleurs titre + sous-titre */

.chen_event_title__main--dark {
    color: #333;
}

.chen_event_title__main--olive {
    color: #808000;
}

.chen_event_title__main--rose {
    color: #f25f70;
}

.chen_event_title__main--teal {
    color: #008080;
}

/* Couleurs collaborateur + date + horaires */

.chen_event_title__datetime--dark {
    color: #333;
}

.chen_event_title__datetime--olive {
    color: #808000;
}

.chen_event_title__datetime--rose {
    color: #f25f70;
}

.chen_event_title__datetime--teal {
    color: #008080;
}

/* EVENT BLOCK */

.chen_event_block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    width: 100%;
    margin-bottom: 32px;
}

.chen_event_block__left,
.chen_event_block__right {
    display: flex;
    flex-direction: column;
}

.chen_event_block__image {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
    margin-bottom: 16px;
}

.chen_event_block__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
}

/* Texte */

.chen_event_block__text {
    margin-bottom: 16px;
    min-height: 400px;
}

/* Tarif */

.chen_event_block__price {
    font-family: "Roboto", sans-serif;
    font-size: 18px;
    line-height: 1.3;
    margin-bottom: 0;
}

.chen_event_block__price_value {
    margin-bottom: 0;
}

.chen_event_block__price_value strong {
    font-weight: 700;
}

.chen_event_block__price_full {
    font-style: italic;
    font-weight: 300;
}

.chen_event_block__price_until {
    font-weight: 300;
}

.chen_event_block__price--olive {
    color: #808000;
}

.chen_event_block__price--rose {
    color: #f25f70;
}

.chen_event_block__price--teal {
    color: #008080;
}

/* Note tarif */

.chen_event_block__price_note_wrapper {
    margin-top: 8px;
}

.chen_event_block__price_note {
    font-family: "Roboto", sans-serif;
    font-size: 18px;
    line-height: 1.3;
    font-weight: 300;
    margin-bottom: 0;
    color: #333;
}

/* CTA */

.chen_event_block__cta {
    margin-top: 24px;
    display: flex;
}

.chen_event_block__cta--left {
    justify-content: flex-start;
}

.chen_event_block__cta--center {
    justify-content: center;
}

.chen_event_block__cta--right {
    justify-content: flex-end;
}

/* Responsive */

@media (max-width: 768px) {
    .chen_event_block {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

/* HERO */

.chen_hero_block {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 350px;
    max-height: 350px;
    padding: 24px;
    margin-bottom: 32px;
    overflow: hidden;

    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.chen_hero_block--fullwidth {
    margin-left: -55px;
    margin-right: -55px;
}

.chen_hero_block__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: rgba(0, 0, 0, 0.3);
}

.chen_hero_block__content {
    position: relative;
    z-index: 2;
    max-width: 520px;
}

/* Alignement horizontal */

.chen_hero_block--align-left {
    justify-content: flex-start;
}

.chen_hero_block--align-center {
    justify-content: center;
    text-align: center;
}

.chen_hero_block--align-right {
    justify-content: flex-end;
    text-align: right;
}

/* Typographie */

.chen_hero_block__title {
    color: inherit;
    font-family: "Roboto", sans-serif;
    font-size: 32px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 2px;
    margin: 0 0 8px;
    text-transform: uppercase;
}

.chen_hero_block__subtitle {
    color: inherit;
    font-family: "Roboto", sans-serif;
    font-size: 24px;
    line-height: 1.1;
    font-weight: 300;
    letter-spacing: 0.02em;
    margin: 0 0 12px;
}

.chen_hero_block__text {
    color: inherit;
    font-family: "Roboto", sans-serif;
    font-size: 16px;
    line-height: 1.4;
    font-weight: 300;
    margin: 0;
}

.chen_hero_block__text p {
    margin: 0 0 8px;
}

.chen_hero_block__text p:last-child {
    margin-bottom: 0;
}

/* CTA */

.chen_hero_block__cta {
    margin-top: 20px;
    display: flex;
}

/* Couleurs texte */

.chen_hero_block--white {
    color: #fff;
}

.chen_hero_block--dark {
    color: #333;
}

.chen_hero_block--olive {
    color: #808000;
}

.chen_hero_block--rose {
    color: #f25f70;
}

.chen_hero_block--teal {
    color: #008080;
}

.chen_hero_block__cta--left {
    justify-content: flex-start;
}

.chen_hero_block__cta--center {
    justify-content: center;
}

.chen_hero_block__cta--right {
    justify-content: flex-end;
}

/* Responsive */

@media (max-width: 768px) {
    .chen_hero_block {
        min-height: 350px;
        max-height: none;
        padding: 24px;
    }

    .chen_hero_block--align-right,
    .chen_hero_block--align-left,
    .chen_hero_block--align-center {
        justify-content: center;
        text-align: center;
    }

    .chen_hero_block__content {
        max-width: 100%;
    }
}