/* =========================================================
   Lille Europe Chapter — Concession
   ========================================================= */

.lec-concession-title {
    margin: 0 0 40px;
    color: #111;
    font-size: clamp(30px, 4vw, 44px);
    line-height: 1.05;
    font-weight: 900;
    text-transform: uppercase;
}


/* =========================================================
   Carte unique
   ========================================================= */

.lec-concession-single {
    display: flex;
    justify-content: center;
    width: 100%;
}

.lec-concession-single .lec-concession-card {
    width: 100%;
    max-width: 380px;
}


/* =========================================================
   Carte
   ========================================================= */

.lec-concession-card {
    overflow: hidden;

    border: 1px solid #dededb;
    border-radius: 10px;

    background: #fff;

    box-shadow: 0 8px 24px rgba(0, 0, 0, .07);

    transition:
        transform .2s ease,
        box-shadow .2s ease,
        border-color .2s ease;
}

.lec-concession-card:hover {
    transform: translateY(-4px);

    border-color: #f36c21;

    box-shadow: 0 16px 34px rgba(0, 0, 0, .12);
}


/* =========================================================
   Photo
   ========================================================= */

.lec-concession-photo {
    display: flex;
    align-items: center;
    justify-content: center;

    height: 300px;

    background:
        linear-gradient(
            135deg,
            #111 0%,
            #1b1b1b 60%,
            #2a1308 100%
        );

    color: #f36c21;

    font-size: 13px;
    font-weight: 900;
    letter-spacing: .18em;
    text-transform: uppercase;
}


/* =========================================================
   Informations
   ========================================================= */

.lec-concession-body {
    padding: 20px 20px 22px;
}

.lec-concession-role {
    margin-bottom: 7px;

    color: #f36c21;

    font-size: 12px;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.lec-concession-body h3 {
    margin: 0;

    color: #111;

    font-size: 22px;
    line-height: 1.15;
    font-weight: 900;
}


/* =========================================================
   Mobile
   ========================================================= */

@media (max-width: 620px) {

    .lec-concession-title {
        margin-bottom: 30px;
    }

    .lec-concession-single .lec-concession-card {
        max-width: 100%;
    }

    .lec-concession-photo {
        height: 230px;
    }

}