/* =========================================================
   Lille Europe Chapter - Pages intérieures
   ========================================================= */

body.lec-inner-page {
    background: #f4f4f2;
}

/* On masque le titre OceanWP puisque notre template possède
   son propre bandeau avec le titre. */
body.lec-inner-page .page-header {
    display: none !important;
}

/* ---------------------------------------------------------
   HERO
   --------------------------------------------------------- */

.lec-inner-hero {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 82% 30%,
            rgba(243, 108, 33, .24),
            transparent 30%
        ),
        linear-gradient(
            110deg,
            #080808 0%,
            #121212 62%,
            #241208 100%
        );

    color: #fff;
}

.lec-inner-hero::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 5px;
    background: #f36c21;
}

.lec-inner-hero-inner {
    padding: 78px 0 82px;
}

.lec-inner-eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;

    margin-bottom: 15px;

    color: #f36c21;

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

.lec-inner-eyebrow::before {
    content: "";
    width: 34px;
    height: 3px;
    background: #f36c21;
}

.lec-inner-hero h1 {
    max-width: 900px;
    margin: 0;

    color: #fff;

    font-size: clamp(40px, 6vw, 62px);
    line-height: 1;
    font-weight: 900;

    text-transform: uppercase;
}

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

.lec-inner-content {
    padding: 0 0 80px;
}

.lec-inner-card {
    position: relative;
    z-index: 2;

    width: min(960px, calc(100% - 40px));

    margin: -35px auto 0;
    padding: 42px 48px;

    border-radius: 10px;

    background: #fff;

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

/* Premier élément du contenu */
.lec-inner-card > :first-child {
    margin-top: 0;
}

/* Dernier élément */
.lec-inner-card > :last-child {
    margin-bottom: 0;
}

/* ---------------------------------------------------------
   TYPOGRAPHIE
   --------------------------------------------------------- */

.lec-inner-card h1,
.lec-inner-card h2,
.lec-inner-card h3,
.lec-inner-card h4 {
    color: #151515;
}

.lec-inner-card h1 {
    margin-bottom: 20px;
    font-size: 34px;
}

.lec-inner-card h2 {
    margin-top: 30px;
    margin-bottom: 15px;

    font-size: 30px;
    line-height: 1.15;
}

.lec-inner-card h3 {
    margin-top: 25px;
    margin-bottom: 10px;

    font-size: 22px;
}

.lec-inner-card p,
.lec-inner-card li {
    color: #4d4d4d;

    font-size: 17px;
    line-height: 1.8;
}

.lec-inner-card a {
    color: #f36c21;
    font-weight: 700;
}

.lec-inner-card a:hover {
    color: #c9500e;
}

/* ---------------------------------------------------------
   ENCADRÉ
   --------------------------------------------------------- */

.lec-inner-card blockquote {
    margin: 28px 0;
    padding: 22px 25px;

    border-left: 4px solid #f36c21;

    background: #f7f5f2;
}

/* ---------------------------------------------------------
   BOUTONS
   --------------------------------------------------------- */

.lec-inner-card .wp-block-button__link,
.lec-inner-card input[type="submit"],
.lec-inner-card .button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 46px;

    padding: 0 20px;

    border: 0;
    border-radius: 5px;

    background: #f36c21;
    color: #fff !important;

    font-weight: 800;
    text-decoration: none;
}

.lec-inner-card .wp-block-button__link:hover,
.lec-inner-card input[type="submit"]:hover,
.lec-inner-card .button:hover {
    background: #c9500e;
}

/* ---------------------------------------------------------
   MOBILE
   --------------------------------------------------------- */

@media (max-width: 700px) {

    .lec-inner-hero-inner {
        padding: 58px 0 64px;
    }

    .lec-inner-hero h1 {
        font-size: 40px;
    }

    .lec-inner-card {
        width: calc(100% - 28px);

        margin-top: -24px;

        padding: 28px 22px;
    }

    .lec-inner-card p,
    .lec-inner-card li {
        font-size: 16px;
    }
}