/* =========================================================
   PAGE ANIMATIONS — DESKTOP
   ========================================================= */

#b612-events-page {
    max-width: 1400px;
    margin: 0 auto;
    padding: 90px 60px 120px;
    box-sizing: border-box;
}


/* ---------------------------------------------------------
   HEADER
   --------------------------------------------------------- */

.b612-events-page__header {
    max-width: 900px;
    margin: 0 auto 70px;
    text-align: center;
}

.b612-events-page__eyebrow {
    display: block;

    margin-bottom: 18px;

    font-family: "Inter", sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;

    color: #999;
}

.b612-events-page__title {
    margin: 0;

    font-family: "Cormorant Garamond", serif;
    font-size: 64px;
    line-height: 0.95;
    font-weight: 500;

    color: #17182d;
}

.b612-events-page__divider {
    display: block;

    width: 50px;
    height: 1px;

    margin: 30px auto 0;

    background: #17182d;
}


/* ---------------------------------------------------------
   GRILLE
   --------------------------------------------------------- */

.b612-events-page__grid {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 40px 24px;
}


/* ---------------------------------------------------------
   CARTE
   --------------------------------------------------------- */

.b612-events-page__card {
    min-width: 0;
}

.b612-events-page__card-link {
    display: block;

    height: 100%;

    overflow: hidden;

    text-decoration: none;

    border: 1px solid rgba(23, 24, 45, 0.18);
    border-radius: 12px;

    background: #17182d;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.b612-events-page__card-link:hover {
    transform: translateY(-4px);

    box-shadow:
        0 12px 30px rgba(0, 0, 0, 0.12);
}


/* ---------------------------------------------------------
   IMAGE
   --------------------------------------------------------- */

.b612-events-page__card-media {
    position: relative;

    aspect-ratio: 16 / 9;

    overflow: hidden;
}

.b612-events-page__card-image {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 0.4s ease;
}

.b612-events-page__card-link:hover
.b612-events-page__card-image {
    transform: scale(1.03);
}


/* ---------------------------------------------------------
   DATE
   --------------------------------------------------------- */

.b612-events-page__date {
    position: absolute;

    left: 14px;
    bottom: 14px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    min-width: 52px;
    min-height: 52px;

    padding: 5px 8px;

    box-sizing: border-box;

    background: #17182d;

    color: #fff;
}

.b612-events-page__day {
    font-family: "Inter", sans-serif;
    font-size: 16px;
    line-height: 1;
    font-weight: 500;
}

.b612-events-page__month {
    margin-top: 4px;

    font-family: "Inter", sans-serif;
    font-size: 9px;
    line-height: 1;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}


/* ---------------------------------------------------------
   CONTENU
   --------------------------------------------------------- */

.b612-events-page__card-body {
    padding: 22px 20px 24px;
}

.b612-events-page__card-title {
    margin: 0;

    font-family: "Cormorant Garamond", serif;
    font-size: 28px;
    line-height: 0.98;
    font-weight: 500;

    color: #fff;
}


/* ---------------------------------------------------------
   META
   --------------------------------------------------------- */

.b612-events-page__meta {
    display: flex;
    flex-wrap: wrap;

    gap: 8px 12px;

    margin-top: 18px;

    font-family: "Cormorant Garamond", serif;
    font-size: 15px;
    line-height: 1.2;

    color: rgba(255, 255, 255, 0.72);
}

.b612-events-page__meta span + span::before {
    content: "•";

    margin-right: 12px;

    opacity: 0.5;
}
