/* ==========================================================
   JADE INSPIRATIONS
   PAGE BLOG 100% SUR MESURE
   ========================================================== */

.jade-blog {
    --jade-blog-ink: #2f2925;
    --jade-blog-muted: #766b64;
    --jade-blog-line: rgba(75, 58, 47, .12);
    --jade-blog-cream: #faf6f0;
    --jade-blog-soft: #f4ece2;
    --jade-blog-accent: #b88a65;
    --jade-blog-dark: #241e1a;

    background: #fff;
    color: var(--jade-blog-ink);
}

.jade-blog *,
.jade-blog *::before,
.jade-blog *::after {
    box-sizing: border-box;
}

.jade-blog-shell {
    width: min(1180px, calc(100% - 48px));
    margin-inline: auto;
}

.jade-blog-kicker {
    display: block;
    margin-bottom: 18px;

    color: #967052;

    font-size: 10px;
    font-weight: 800;
    letter-spacing: .2em;
    line-height: 1.2;
    text-transform: uppercase;
}


/* HERO */

.jade-blog-hero {
    position: relative;

    overflow: hidden;

    padding: clamp(76px, 9vw, 138px) 0;

    background:
        radial-gradient(
            circle at 90% 10%,
            rgba(191, 151, 116, .18),
            transparent 38%
        ),
        linear-gradient(
            135deg,
            #fffdf9 0%,
            #f8f1e8 100%
        );
}

.jade-blog-hero::after {
    content: "";

    position: absolute;
    right: -110px;
    top: -170px;

    width: 520px;
    height: 520px;

    border:
        1px solid rgba(165, 127, 98, .16);

    border-radius: 50%;

    pointer-events: none;
}

.jade-blog-hero .jade-blog-shell {
    position: relative;
    z-index: 1;

    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        160px;

    align-items: center;

    gap: 60px;
}

.jade-blog-hero__content {
    max-width: 760px;
}

.jade-blog-hero h1 {
    max-width: 720px;

    margin: 0;

    color: #2e2824;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size:
        clamp(42px, 6vw, 76px);

    font-weight: 400;

    letter-spacing: -.045em;
    line-height: .96;
}

.jade-blog-hero h1 em {
    display: block;

    color: #9a6d4f;

    font-weight: 400;
}

.jade-blog-hero__lead {
    max-width: 620px;

    margin:
        28px 0
        32px;

    color: var(--jade-blog-muted);

    font-size: 16px;
    line-height: 1.75;
}

.jade-blog-hero__signature {
    width: 134px;
    height: 134px;

    display: grid;
    place-items: center;

    justify-self: end;

    border:
        1px solid rgba(148, 105, 73, .16);

    border-radius: 50%;

    background:
        rgba(255,255,255,.55);

    box-shadow:
        0 22px 60px
        rgba(65, 45, 32, .08);
}

.jade-blog-hero__signature span {
    color: #997052;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 50px;
}


/* BUTTONS */

.jade-blog-button {
    min-height: 48px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 0 24px;

    border-radius: 7px;

    text-decoration: none;

    font-size: 12px;
    font-weight: 800;

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

.jade-blog-button:hover {
    transform: translateY(-2px);
}

.jade-blog-button--dark {
    background: var(--jade-blog-dark);
    color: #fff;
}

.jade-blog-button--light {
    background: #fff;
    color: #342a24;
}


/* SECTION HEAD */

.jade-blog-section-head {
    margin-bottom: 38px;

    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    gap: 40px;
}

.jade-blog-section-head h2 {
    margin: 0;

    color: var(--jade-blog-ink);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size:
        clamp(32px, 4vw, 48px);

    font-weight: 400;

    letter-spacing: -.03em;
    line-height: 1.05;
}

.jade-blog-section-head > p {
    max-width: 400px;

    margin: 0;

    color: var(--jade-blog-muted);

    font-size: 14px;
    line-height: 1.65;
}


/* CATEGORIES */

.jade-blog-univers {
    padding:
        clamp(62px, 8vw, 100px)
        0 30px;
}

.jade-blog-categories {
    display: grid;

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

    gap: 12px;
}

.jade-blog-category {
    min-height: 100px;

    padding: 22px;

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    border:
        1px solid var(--jade-blog-line);

    border-radius: 12px;

    background: #fff;

    color: #3d342e;

    text-decoration: none;

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

.jade-blog-category:hover {
    transform: translateY(-3px);

    border-color:
        rgba(160, 111, 77, .28);

    box-shadow:
        0 18px 50px
        rgba(65, 48, 36, .07);
}

.jade-blog-category span {
    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 20px;
}

.jade-blog-category small {
    margin-top: 14px;

    color: #97877b;

    font-size: 10px;
    font-weight: 700;
    letter-spacing: .05em;
    text-transform: uppercase;
}


/* ARTICLES */

.jade-blog-articles {
    padding:
        clamp(70px, 8vw, 110px)
        0;

    background:
        linear-gradient(
            180deg,
            #fff 0%,
            #fcfaf7 100%
        );
}

.jade-blog-grid {
    display: grid;

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

    gap:
        46px 24px;
}

.jade-blog-card {
    min-width: 0;

    margin: 0;

    overflow: hidden;

    border:
        1px solid var(--jade-blog-line);

    border-radius: 14px;

    background: #fff;

    box-shadow:
        0 12px 35px
        rgba(51, 39, 31, .035);

    transition:
        transform .25s ease,
        box-shadow .25s ease;
}

.jade-blog-card:hover {
    transform: translateY(-5px);

    box-shadow:
        0 20px 55px
        rgba(51, 39, 31, .08);
}

.jade-blog-card__image {
    position: relative;

    width: 100%;
    aspect-ratio: 4 / 3;

    display: block;

    overflow: hidden;

    background: var(--jade-blog-soft);
}

.jade-blog-card__image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition:
        transform .5s
        cubic-bezier(.22,.61,.36,1);
}

.jade-blog-card:hover
.jade-blog-card__image img {
    transform: scale(1.035);
}

.jade-blog-card__placeholder {
    width: 100%;
    height: 100%;

    display: grid;
    place-items: center;

    color: #a47a5a;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 60px;
}

.jade-blog-card__body {
    padding:
        22px 22px
        24px;
}

.jade-blog-card__meta {
    margin-bottom: 15px;

    display: flex;
    align-items: center;

    gap: 9px;

    color: #96867b;

    font-size: 9px;
    font-weight: 800;

    letter-spacing: .06em;
    text-transform: uppercase;
}

.jade-blog-card__meta span:first-child {
    color: #b07e5b;
}

.jade-blog-card__meta span:not(:last-child)::after {
    content: "·";

    margin-left: 9px;

    color: #c5b9b0;
}

.jade-blog-card h3 {
    margin:
        0 0
        14px;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 23px;
    font-weight: 400;

    line-height: 1.18;
}

.jade-blog-card h3 a {
    color: #322b27;

    text-decoration: none;
}

.jade-blog-card p {
    margin:
        0 0
        20px;

    color: var(--jade-blog-muted);

    font-size: 13px;
    line-height: 1.65;
}

.jade-blog-card__link {
    display: inline-flex;
    align-items: center;

    gap: 8px;

    color: #7a5640;

    text-decoration: none;

    font-size: 11px;
    font-weight: 800;

    letter-spacing: .04em;
    text-transform: uppercase;
}

.jade-blog-card__link span {
    transition: transform .2s ease;
}

.jade-blog-card__link:hover span {
    transform: translateX(3px);
}


/* EMPTY */

.jade-blog-empty {
    padding: 50px;

    border:
        1px solid var(--jade-blog-line);

    border-radius: 14px;

    text-align: center;
}


/* MANIFESTO */

.jade-blog-manifesto {
    padding:
        30px 0
        clamp(80px, 9vw, 130px);
}

.jade-blog-manifesto__card {
    position: relative;

    overflow: hidden;

    padding:
        clamp(42px, 7vw, 82px);

    border-radius: 18px;

    background:
        linear-gradient(
            135deg,
            #29211c 0%,
            #1d1815 100%
        );

    color: #fff;
}

.jade-blog-manifesto__card::after {
    content: "";

    position: absolute;

    width: 330px;
    height: 330px;

    right: -120px;
    top: -120px;

    border:
        1px solid rgba(255,255,255,.09);

    border-radius: 50%;
}

.jade-blog-manifesto h2 {
    max-width: 700px;

    margin:
        0 0
        24px;

    color: #fff;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size:
        clamp(36px, 5vw, 58px);

    font-weight: 400;

    letter-spacing: -.035em;
    line-height: 1;
}

.jade-blog-manifesto h2 em {
    color: #d1ad8d;
}

.jade-blog-manifesto p {
    max-width: 680px;

    margin:
        0 0
        30px;

    color:
        rgba(255,255,255,.72);

    font-size: 14px;
    line-height: 1.75;
}

.jade-blog-manifesto__actions {
    display: flex;
    align-items: center;

    gap: 24px;
}

.jade-blog-text-link {
    color: #e5d3c3;

    font-size: 12px;
    font-weight: 700;

    text-underline-offset: 4px;
}


/* TABLETTE */

@media (max-width: 900px) {

    .jade-blog-shell {
        width:
            min(
                100% - 36px,
                760px
            );
    }

    .jade-blog-hero .jade-blog-shell {
        grid-template-columns: 1fr;
    }

    .jade-blog-hero__signature {
        display: none;
    }

    .jade-blog-categories {
        grid-template-columns:
            repeat(2,minmax(0,1fr));
    }

    .jade-blog-grid {
        grid-template-columns:
            repeat(2,minmax(0,1fr));
    }

}


/* MOBILE */

@media (max-width: 620px) {

    .jade-blog-shell {
        width: calc(100% - 30px);
    }

    .jade-blog-hero {
        padding:
            64px 0
            68px;
    }

    .jade-blog-hero h1 {
        font-size:
            clamp(38px, 12vw, 52px);
    }

    .jade-blog-hero__lead {
        margin-top: 22px;

        font-size: 14px;
    }

    .jade-blog-section-head {
        margin-bottom: 28px;

        display: block;
    }

    .jade-blog-section-head > p {
        margin-top: 14px;
    }

    .jade-blog-categories {
        grid-template-columns: 1fr;

        gap: 9px;
    }

    .jade-blog-category {
        min-height: 84px;
    }

    .jade-blog-grid {
        grid-template-columns: 1fr;

        gap: 22px;
    }

    .jade-blog-card__body {
        padding:
            20px 18px
            22px;
    }

    .jade-blog-card h3 {
        font-size: 22px;
    }

    .jade-blog-manifesto__card {
        padding:
            40px 25px;

        border-radius: 13px;
    }

    .jade-blog-manifesto__actions {
        align-items: flex-start;
        flex-direction: column;

        gap: 18px;
    }

}
