/* ==========================================================
   FICHE ÉVÉNEMENT — DESKTOP
   ========================================================== */


/* ==========================================================
   CONTENEUR PRINCIPAL
   ========================================================== */

#b612-event {

    max-width: 1280px;

    margin: 0 auto;

    padding:
        80px 60px
        120px;

    box-sizing: border-box;

    color: #17182d;
}


/* ==========================================================
   EN-TÊTE
   ========================================================== */

.b612-event__header {

    margin-bottom: 55px;
}


.b612-event__eyebrow {

    display: block;

    margin-bottom: 18px;

    font-family:
        "Inter",
        sans-serif;

    font-size: 11px;

    font-weight: 500;

    letter-spacing: .18em;

    text-transform: uppercase;

    color: #999;
}


.b612-event__title {

    margin: 0;

    max-width: 900px;

    font-family:
        "Cormorant Garamond",
        Georgia,
        serif;

    font-size: 64px;

    line-height: .95;

    font-weight: 500;

    letter-spacing: -.02em;

    color: #17182d;
}


.b612-event__divider {

    display: block;

    width: 50px;

    height: 1px;

    margin-top: 30px;

    background: #17182d;
}


/* ==========================================================
   STRUCTURE MASONRY
========================================================== */

.b612-event__masonry {

    display: grid;

    grid-template-columns:
        minmax(0, 1.65fr)
        minmax(320px, .75fr);

    column-gap: 55px;

    align-items: start;
}


/* ==========================================================
   COLONNES
========================================================== */

.b612-event__main,
.b612-event__side {

    min-width: 0;

    display: flex;

    flex-direction: column;

    align-items: stretch;
}


/* ==========================================================
   IMAGE
========================================================== */

.b612-event__image-wrapper {

    position: relative;

    display: block;

    overflow: hidden;

    width: 100%;

    aspect-ratio: 16 / 10;

    border-radius: 12px;

    background: #eee;

    line-height: 0;
}


.b612-event__image {

    display: block;

    width: 100%;

    height: 100%;

    object-fit: cover;

    margin: 0;
}


/* ==========================================================
   DATE SUR IMAGE
========================================================== */

.b612-event__date {

    position: absolute;

    top: 18px;
    right: 18px;

    z-index: 5;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    width: 68px;
    height: 68px;

    box-sizing: border-box;

    background: #17182d;

    color: #fff;
}


.b612-event__day {

    display: block;

    font-family:
        "Inter",
        sans-serif;

    font-size: 21px;

    line-height: 1;

    font-weight: 500;
}


.b612-event__month {

    display: block;

    margin-top: 6px;

    font-family:
        "Inter",
        sans-serif;

    font-size: 9px;

    line-height: 1;

    font-weight: 500;

    letter-spacing: .12em;

    text-transform: uppercase;
}


/* ==========================================================
   INFORMATIONS
========================================================== */

.b612-event__infos {

    padding-top: 5px;

    padding-bottom: 10px;
}


.b612-event__infos-label {

    margin-bottom: 25px;

    font-family:
        "Inter",
        sans-serif;

    font-size: 10px;

    font-weight: 500;

    letter-spacing: .18em;

    text-transform: uppercase;

    color: #999;
}


/* ==========================================================
   LIGNES D'INFORMATIONS
========================================================== */

.b612-event__info {

    padding:
        18px 0;

    border-top:
        1px solid
        rgba(23, 24, 45, .15);
}


.b612-event__info:last-of-type {

    border-bottom:
        1px solid
        rgba(23, 24, 45, .15);
}


.b612-event__info-label {

    display: block;

    margin-bottom: 5px;

    font-family:
        "Inter",
        sans-serif;

    font-size: 10px;

    font-weight: 500;

    letter-spacing: .08em;

    text-transform: uppercase;

    color: #999;
}


.b612-event__info-value {

    display: block;

    font-family:
        "Cormorant Garamond",
        Georgia,
        serif;

    font-size: 21px;

    line-height: 1.15;

    color: #17182d;
}


/* ==========================================================
   BOUTON INSCRIPTION
========================================================== */

.b612-event__register {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 12px;

    width: 100%;

    margin-top: 28px;

    padding: 14px 20px;

    box-sizing: border-box;

    border-radius: 8px;

    background: #17182d;

    color: #fff;

    text-decoration: none;

    font-family:
        "Inter",
        sans-serif;

    font-size: 12px;

    font-weight: 500;

    transition:
        background .2s ease,
        transform .2s ease;
}


.b612-event__register:hover {

    background: #25263d;

    transform: translateY(-2px);
}


.b612-event__register span {

    font-size: 16px;

    line-height: 1;
}


/* ==========================================================
   CONTENU ÉDITORIAL
========================================================== */

.b612-event__content {

    margin-top: 70px;

    max-width: 620px;
}


.b612-event__content-title {

    margin: 0;

    font-family:
        "Cormorant Garamond",
        Georgia,
        serif;

    font-size: 34px;

    line-height: 1;

    font-weight: 500;

    color: #17182d;
}


.b612-event__content-divider {

    display: block;

    width: 38px;

    height: 1px;

    margin-top: 16px;

    margin-bottom: 25px;

    background: #17182d;
}


.b612-event__content p {

    margin:
        0 0 22px;

    font-family:
        "Cormorant Garamond",
        Georgia,
        serif;

    font-size: 18px;

    line-height: 1.5;

    color: #292a3e;
}


.b612-event__content p:last-child {

    margin-bottom: 0;
}


/* ==========================================================
   NEWSLETTER
========================================================== */

.b612-event__newsletter {

    position: relative;

    overflow: hidden;

    margin-top: 55px;

    padding: 30px 30px 28px;

    box-sizing: border-box;

    border-radius: 12px;

    background: #f1f2fa;

    color: #17182d;
}


.b612-event__newsletter-icon {

    display: flex;

    align-items: center;

    justify-content: center;

    width: 42px;

    height: 42px;

    margin-bottom: 18px;

    border-radius: 50%;

    background: #17182d;

    color: #fff;

    font-family:
        "Inter",
        sans-serif;

    font-size: 20px;

    line-height: 1;
}


.b612-event__newsletter-title {

    margin: 0;

    font-family:
        "Cormorant Garamond",
        Georgia,
        serif;

    font-size: 31px;

    line-height: 1;

    font-weight: 500;

    color: #17182d;
}


.b612-event__newsletter-text {

    max-width: 330px;

    margin:
        16px 0 25px;

    font-family:
        "Inter",
        sans-serif;

    font-size: 12px;

    line-height: 1.55;

    color: #292a3e;
}


/* ==========================================================
   FORMULAIRE NEWSLETTER
========================================================== */

.b612-event__newsletter-form {

    display: flex;

    gap: 8px;
}


.b612-event__newsletter-input {

    flex: 1;

    min-width: 0;

    padding:
        13px 14px;

    box-sizing: border-box;

    border:
        1px solid
        rgba(23, 24, 45, .18);

    border-radius: 6px;

    background: #fff;

    color: #17182d;

    font-family:
        "Inter",
        sans-serif;

    font-size: 11px;

    outline: none;
}


.b612-event__newsletter-input::placeholder {

    color:
        rgba(23, 24, 45, .45);
}


.b612-event__newsletter-input:focus {

    border-color:
        rgba(23, 24, 45, .50);
}


.b612-event__newsletter-button {

    flex: 0 0 auto;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    padding:
        13px 18px;

    border: 0;

    border-radius: 6px;

    background: #17182d;

    color: #fff;

    font-family:
        "Inter",
        sans-serif;

    font-size: 10px;

    font-weight: 600;

    text-transform: uppercase;

    cursor: pointer;
}


.b612-event__newsletter-button span {

    font-size: 15px;

    line-height: 1;
}


/* ==========================================================
   RETOUR AUX ANIMATIONS
========================================================== */
.b612-event__back {

    display: inline-flex;

    align-items: center;

    gap: 12px;

    margin-top: 45px;

    color: #17182d;

    text-decoration: none;

    font-family:
        "Inter",
        sans-serif;

    font-size: 11px;

    font-weight: 500;
}


.b612-event__back-arrow {

    font-size: 18px;

    line-height: 1;
}


.b612-event__back-label {

    padding-bottom: 7px;

    border-bottom:
        1px solid
        #17182d;
}
