/* ============================================================
   SECTIONS — GENERALITES
   ============================================================ */
.section {
    padding: 2.5rem 8%;
    font-size: 1.1rem;
}

.section .inner {
    max-width: 1280px;
    margin: 0 auto;
}

.section .section-eyebrow {
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--purple-mid);
    margin-bottom: 0.4rem;
    opacity: 0.7;
}

.section-title {
    font-family: var(--f-display);
    font-size: clamp(2.2rem, 2.6vw, 2.6rem);
    font-weight: 450;
    line-height: 1.2;
    color: var(--purple-dark);
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
}

.section.bg--white {
    background: var(--white);
}

.section.bg--purple {
    background: var(--purple-bg);
}

.section.bg--gradient {
    background: var(--gradient);
    color: var(--white);
}

.section.bg--gradient .section-eyebrow {
    color: var(--white);
}

.section.bg--gradient .section-title {
    color: var(--white);
}

@media (min-width: 768px) {
    .section {
        padding: 3rem 8%;
    }
}

@media (min-width: 1024px) {
    .section {
        padding: 3.5rem 8%;
    }
}

.section img.illustration {
    border-radius: 20px;
}

.section img.stretch {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.section.no-top {
    padding-top: 0;
}

.section .link {
    color: var(--purple-mid);
    text-decoration: none;
    background-image: linear-gradient(var(--purple-mid), var(--pink));
    background-size: 0% 1.5px;
    background-repeat: no-repeat;
    background-position: left bottom;
    transition: background-size 300ms ease;
}

.section .link:hover {
    background-size: 100% 1.5px;
}

.section .boxed {
    border: 1px solid var(--border);
    padding: 1.5rem;
    border-radius: 20px;
    box-shadow: 0 4px 24px rgba(123, 79, 166, 0.08);
    background: var(--white);
}

@media (min-width: 768px) {
    .article-card__title-link .boxed {
        padding: 2.5rem;
    }

    .section .lg-boxed {
        border: 1px solid var(--border);
        padding: 1.5rem;
        border-radius: 20px;
        box-shadow: 0 4px 24px rgba(123, 79, 166, 0.08);
        background: var(--white);
    }

    .section .order-plus {
        order: 1;
    }

    .section .order-minus {
        order: -1;
    }
}



/* ============================================================
   1. SECTION — HERO LARGE
   ============================================================ */
.section-hero {
    background: var(--grad-hero);
    color: var(--white);
    text-align: center;
    padding-left: 6%;
    padding-right: 6%;
    position: relative;
}

.section-hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.82rem;
    font-weight: 400;
    letter-spacing: 0;
    padding: 0.35rem 1rem;
    border-radius: 100px;
    margin-bottom: 1.8rem;
    border: 1px solid rgba(255, 255, 255, 0.25);
    opacity: 0;
    animation: fadeUp 0.6s ease forwards 0.1s;
    text-transform: uppercase;
}

.section-hero-title {
    font-family: var(--f-display);
    font-size: clamp(2.2rem, 3vw, 3.2rem);
    font-weight: 450;
    color: var(--white);
    line-height: 1.18;
    max-width: 980px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0;
    animation: fadeUp 0.6s ease forwards 0.1s;
    letter-spacing: -0.02em;
}

.section-hero-subtitle {
    font-family: var(--f-display);
    font-weight: 300;
    color: rgba(255, 255, 255, 0.85);
    font-size: clamp(1.3rem, 2vw, 1.3rem);
    display: block;
    line-height: 1.4;
    margin-top: 1rem;
    opacity: 0;
    animation: fadeUp 0.6s ease forwards 0.25s;
    letter-spacing: -0.02em;
}

.section-hero-photo-wrap {
    margin: 1.5rem auto -7rem;
    position: relative;
    z-index: 2;
    width: 140px;
    opacity: 0;
    animation: fadeIn 0.7s ease forwards 0.5s;
}

.section-hero-photo {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    border: 3px solid rgba(255, 255, 255, 0.5);
    background: #eee;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
    margin: 0 auto;
    overflow: hidden;
}

.section-hero-cta .hero-note {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.65);
    font-weight: 300;
}

/* ============================================================
   1B. SECTION — HERO CTA
   ============================================================ */
.section-hero-cta .hero-wave-lines {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    opacity: 0.12;
}

.section-hero-cta .hero-wave-lines svg {
    position: absolute;
    right: -5%;
    top: 50%;
    transform: translateY(-50%);
    width: 55%;
}

.section-hero-cta .section-hero-title {
    font-size: clamp(2.4rem, 4.2vw, 3.8rem);
    font-weight: 500;
    animation: fadeUp 0.6s ease forwards 0.25s;
}

.section-hero-cta .section-hero-subtitle {
    font-size: clamp(1.4rem, 2vw, 1.4rem);
    margin-top: 1rem;
}

.section-hero-cta .hero-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    opacity: 0;
    animation: fadeUp 0.6s ease forwards 0.55s;
    margin-top: 1.5rem;
}

.section-hero-cta .hero-actions-btns {
    display: flex;
    gap: 16px;
    align-items: center;
    flex-direction: column;
}

@media (min-width: 860px) {
    .section-hero-cta .hero-actions-btns {
        flex-direction: row;
    }
}

.section-hero-cta .hero-actions .btn {
    padding: 1.2rem 2.2rem;
    font-size: 1.1rem;
}

.btn--cta-1.hero--cta {
    background: white;
    color: var(--purple-dark);
}

.section-hero-cta .section-hero-photo-wrap {
    width: 160px;
}

.section-hero-cta .section-hero-photo {
    width: 160px;
    height: 160px;
}

body.home .section-hero-cta {
    margin-bottom: 3.5rem;
}


/* ============================================================
   1B. SECTION — HERO MINI
   ============================================================ */
.section-hero-mini .section-hero-title {
    font-size: clamp(2rem, 2vw, 2.5rem);
    font-weight: 500;
    animation: fadeUp 0.6s ease forwards 0.25s;
}

.section-hero-mini .section-hero-subtitle {
    font-size: clamp(1.3rem, 2vw, 1.3rem);
    margin-top: 1.3rem;
}

.section-hero-mini .section-hero-photo-wrap {
    width: 120px;
}

.section-hero-mini .section-hero-photo {
    width: 120px;
    height: 120px;
}

/* ============================================================
   SECTIONS — SEANCES
   ============================================================ */
.section-seances .inner {
    max-width: 1180px;
    margin: 0 auto;
}

.seance-card {
    display: flex;
    flex-direction: column;
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-lg);
    text-decoration: none;
    color: inherit;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: border-color 300ms ease, box-shadow 300ms ease, transform 300ms ease;
    animation: fadeUp 0.5s ease both;
    height: 100%;
}

.seance-card:nth-child(1) {
    animation-delay: 0ms;
}

.seance-card:nth-child(2) {
    animation-delay: 80ms;
}

.seance-card:nth-child(3) {
    animation-delay: 160ms;
}

.seance-card:nth-child(4) {
    animation-delay: 240ms;
}

.seance-card:hover {
    border-color: var(--pink);
    box-shadow: 0 12px 40px rgba(83, 74, 183, 0.14);
    transform: translateY(-4px);
}

/* Image */
.seance-card__img-wrap {
    position: relative;
    aspect-ratio: 2.5/1;
    overflow: hidden;
    background: var(--c-accent-lt);
}

.seance-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 400ms ease;
}

.seance-card:hover .seance-card__img {
    transform: scale(1.06);
}

/* Badge durée sur l'image */
.seance-card__duree {
    position: absolute;
    bottom: 10px;
    right: 10px;
    font-size: 11px;
    color: white;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    padding: 4px 10px;
    border-radius: var(--radius-pill);
    font-weight: 400;
}

/* Overlay gradient en bas de l'image */
.seance-card__img-wrap::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(transparent, rgba(26, 24, 48, 0.3));
    pointer-events: none;
}

.seance-card__body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
    align-items: baseline;
    margin-top: -2.5rem;
    z-index: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
}

.seance-card__icon {
    width: 36px;
    height: 36px;
    background: var(--purple-light);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    margin-bottom: 4px;
}

.seance-card__title {
    font-size: clamp(1.4rem, 2vw, 1.5rem);
    font-weight: 500;
    color: var(--text-dark);
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-top: 1rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
}

.seance-card__accroche {
    font-size: 1rem;
    font-weight: 350;
    font-family: var(--f-body);
    color: var(--purple-mid);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
}

.seance-card__link {
    margin-top: 1rem;
}

.sections-seances__footer {
    text-align: center;
    margin-top: 2rem;
}

/* ============================================================
   SECTIONS — TARIF
   ============================================================ */
.section-tarif .inner {
    max-width: 1180px;
    margin: 0 auto;
}

.section-tarif .section-body {
    margin-bottom: 1.5rem;
}

.section-tarif .tarif-card {
    background: var(--purple-bg);
    border-radius: 20px;
    padding: 2.2rem 2.5rem;
    border: 1px solid var(--border);
}

.section-tarif .tarif-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.8rem;
}

.section-tarif .tarif-label {
    font-size: 0.82rem;
    color: var(--purple-mid);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 0.3rem;
}

.section-tarif .tarif-price {
    font-family: 'Fraunces', serif;
    font-size: 3rem;
    font-weight: 500;
    color: var(--text-dark);
    line-height: 1;
}

.section-tarif .tarif-price sup {
    font-size: 1.2rem;
    vertical-align: top;
    margin-top: 0.4rem;
}

.section-tarif .tarif-sessions-badge {
    background: var(--pink);
    color: white;
    font-size: 0.78rem;
    font-weight: 400;
    padding: 0.4rem 0.9rem;
    border-radius: 100px;
    white-space: nowrap;
}

.section-tarif .tarif-includes {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    margin-bottom: 1.8rem;
}

.section-tarif .tarif-includes li {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    font-size: 1rem;
    color: var(--text-mid);
}

.section-tarif .tarif-includes li::before {
    content: '\2713';
    color: var(--purple-mid);
    font-weight: 700;
    flex-shrink: 0;
}

.section-tarif .btn--cta-1 {
    width: 100%;
    padding: 1rem;
    font-size: 1.05rem;
}

/* ============================================================
   SECTION — PROCESS
   ============================================================ */
.section-process .inner {
    max-width: 1060px;
    margin: 0 auto;
}

.section-process .step {
    background: var(--purple-bg);
    border-radius: 18px;
    padding: 2rem 1.8rem;
    border: 1px solid var(--border);
    transition: transform 0.2s, box-shadow 0.2s;
    display: flex;
    flex-direction: column;
    gap: .5rem;
    align-items: baseline;
}

.section-process .step-num {
    font-family: 'Fraunces', serif;
    font-size: 2.2rem;
    font-weight: 500;
    color: var(--purple-mid);
    line-height: 1;
}

.section-process .step-title {
    font-family: 'Fraunces', serif;
    font-size: 1.65rem;
    font-weight: 400;
    color: var(--purple-dark);
    letter-spacing: -0.03em;
}

.section-process .step-body {
    font-size: 1rem;
    color: var(--text-mid);
    line-height: 1.65;
    flex: 1;
}

.section-process .step-badge {
    display: inline-block;
    background: white;
    border: 1px solid var(--purple-light);
    color: var(--purple-mid);
    font-size: 0.80rem;
    font-weight: 400;
    padding: 0.25rem 0.7rem;
    border-radius: 100px;
}


/* ============================================================
   SECTION — AVIS
   ============================================================ */
.section-avis {
    padding-bottom: 1.5rem;
}

@media (min-width: 1024px) {
    .section-avis {
        padding-bottom: 2.5rem;
    }
}

.section-avis .inner {
    max-width: 1420px;
    margin: 0 auto;
}

.ti-widget.ti-goog .ti-verified-by-row {
    text-align: center !important;
    margin-top: 1.5rem !important;
}

.section-avis .ti-controls-line {
    background: rgb(179, 69, 165, .27) !important;
}

.section-avis .ti-controls-line .dot {
    background: #b345a5 !important;
}

.section-avis.bg--gradient .ti-controls-line {
    background: rgba(255, 255, 255, 0.35) !important;
}

.section-avis.bg--gradient .ti-controls-line .dot {
    background: #fff !important;
}

/* ============================================================
   SECTION — ILLUSTRATION
   ============================================================ */
.section-illustration .inner {
    max-width: 1280px;
    margin: 0 auto;
}

.section-illustration img {
    max-width: 100%;
    border-radius: 20px;
    object-fit: cover;
    position: relative;
    height: 100%;
    max-height: 400px;
    width: 100%;
    display: block;
}

/* ============================================================
   SECTION — FAQ
   ============================================================ */
.section-faq .inner {
    max-width: 680px;
    margin: 0 auto;
}

@media (min-width: 1024px) {

    .section.bg--purple .faq-wrapper.boxed,
    .section.bg--purple .faq-wrapper.lg-boxed {
        padding: 2.5rem 2.5rem 1rem 2.5rem;
    }
}

.faq-wrapper .section-title {
    font-size: clamp(2rem, 2vw, 2rem);
}


.faq-item {
    border-bottom: 1px solid var(--border);
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-q {
    width: 100%;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.3rem 0;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--purple-dark);
    text-align: left;
    gap: 1.5rem;
    transition: color 0.2s;
    font-weight: 400;
    line-height: 1.4;
}

.faq-icon {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--purple-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.1rem;
    color: var(--purple-mid);
    font-weight: 300;
    transition: transform 0.3s, background 0.2s, color 0.2s;
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
    background: var(--purple-mid);
    color: white;
}

.faq-a {
    font-size: 1.1rem;
    color: var(--text-mid);
    line-height: 1.75;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
    font-weight: 300;
}

.faq-item.open .faq-a {
    max-height: 300px;
}

.faq-a strong {
    font-weight: 450;
}

.faq-a p {
    margin-bottom: 1rem;
    color: var(--purple-dark);
    border-left: 2px solid var(--border);
    padding-left: 1.5rem;
}



.faq-a a {
    text-decoration: underline
}


/* ============================================================
   SECTION — ACCOMPAGNEMENT
   ============================================================ */
.section-accompagnement .inner {
    /*max-width: 1280px;*/
    margin: 0 auto;
}

.section-accompagnement .section-title {
    max-width: 800px;
    margin: 0 auto 2rem;
}

.accompagnement-item .icon {
    color: var(--pink);
}

.accompagnement-item .icon svg {
    width: auto;
    height: 60px;
}

.accompagnement-item .title {
    font-family: var(--f-display);
    font-size: clamp(1.3rem, 2.7vw, 1.6rem);
    font-weight: 450;
}

.accompagnement-item p {
    color: var(--grey44);
    font-weight: 300;
    font-size: 1rem;
    margin: 0;
}

/* ============================================================
   SECTION — ABOUT
   ============================================================ */
.section-about .inner {
    max-width: 1180px;
    margin: 0 auto;
}

.section-about .section-body {
    margin-bottom: 1.5rem;
}

.cert-list {
    display: flex;
    flex-direction: column;
    gap: .5rem;
    margin-bottom: 1.5rem;
}

.cert-list__item {
    display: flex;
    align-items: center;
    gap: .5rem;
}


/* ============================================================
   SECTION — VOLONTE
   ============================================================ */
.section-volonte .inner {
    max-width: 760px;
    margin: 0 auto;
}

/* ============================================================
   SECTION — APPROCHE
   ============================================================ */
.section-approche .inner {
    max-width: 1180px;
    margin: 0 auto;
}

.section-approche .section-body {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    justify-content: flex-start;
    align-items: flex-start;
}

/* ============================================================
   SECTION — PRESENTATION
   ============================================================ */
.section-presentation {
    background: var(--purple-bg);
    padding: 3rem 8%;
}

.presentation-wrapper {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    align-items: start;
    margin-top: 3rem;
    max-width: 1160px;
    margin: 0 auto;
    justify-content: center;
    align-items: center;
}

.presentation-desc {
    color: var(--text-mid);
    font-size: 1rem;
}

.presentation-desc strong {
    font-weight: 600;
}

/* ============================================================
   SECTION — POUR QUI
   ============================================================ */
.section-pour-qui {
    background: var(--purple-bg);
    padding: 3rem 8%;
}

.section-pour-qui .inner {
    max-width: 1060px;
    margin: 0 auto;
}

.section-pour-qui .row {
    align-items: center;
}

.pour-qui-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: start;
}

.check-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.check-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    font-size: 1rem;
    color: var(--text-mid);
    line-height: 1.55;
}

.check-list li::before {
    content: '\2713';
    /* ✓ */
    color: var(--purple-mid);
    font-weight: 700;
    font-size: 0.9rem;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.pour-qui-quote {
    background: white;
    border-radius: 18px;
    padding: 2.2rem;
    border: 1px solid var(--purple-mid);
    border-left: 5px solid var(--purple-mid);
    box-shadow: 0 4px 24px rgba(123, 79, 166, 0.08);
}

.pour-qui-quote blockquote {
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 400;
}

.pour-qui-author {
    font-size: 0.82rem;
    color: var(--text-mid);
}

/* ============================================================
   SECTION — CITATION
   ============================================================ */
.section-citation {
    padding: 5rem 8%;
}

.section-citation .citation__text {
    font-family: var(--f-display);
    font-size: clamp(1.8rem, 2.4vw, 2.4rem);
    color: var(--white);
    font-weight: 350;
    letter-spacing: -0.02em;
    line-height: 1.3;
}

.section-citation .citation__text::before {
    content: '\201C';
}

/* " */
.section-citation .citation__text::after {
    content: '\201D';
}

/* " */

.section-citation .citation__auteur {
    font-family: var(--f-display);
    font-size: 1.2rem;
    color: var(--white);
    font-weight: 300;
    letter-spacing: -0.03rem;
    line-height: 1;
    margin-top: 1.5rem;
}

/* ============================================================
   SECTION — CTA FOOTER
   ============================================================ */
.section-cta-footer .inner {
    max-width: 1180px;
}

.hero-actions-btns {
    display: flex;
    gap: 16px;
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.section-cta-footer .cta-adresse {
    margin-top: 1.5rem;
}

.section-cta-footer .section-body {
    margin-bottom: 1rem;
}

.cta-guarantees {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: flex-start;
}

.cta-guarantee {
    font-size: 1rem;
    color: var(--text-soft);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 400;
    color: var(--purple-mid);
}

.cta-guarantee::before {
    content: '\2713';
    font-weight: 700;
}

.section-cta-footer .hero-actions-btns {
    margin-top: 1.5rem;
}

/* ============================================================
   SECTION — ARTICLES
   ============================================================ */
.section-articles .swiper {
    padding-bottom: 2rem;
}



/* ── Articles grid ──────────────────────────────────────── */
.articles-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--sp-6);
    margin-top: var(--sp-10);
}

@media (min-width: 640px) {
    .articles-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .articles-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.article-card {
    display: flex;
    flex-direction: column;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    background: var(--white);
    transition: box-shadow var(--dur) var(--ease),
        border-color var(--dur) var(--ease);
}

.article-card:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
    border-color: transparent;
}

.article-card__img-link {
    display: block;
    overflow: hidden;
    aspect-ratio: 4/2;
}

.article-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 400ms var(--ease);
}

.article-card:hover .article-card__img {
    transform: scale(1.04);
}

.article-card__body {
    display: flex;
    flex-direction: column;
    gap: var(--sp-3);
    padding: var(--sp-6);
    flex: 1;
}

.article-card__title {
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1.3;
    margin: 0;
}

.article-card__title-link {
    text-decoration: none;
    color: var(--c-ink);
    transition: color var(--dur) var(--ease);
}

.article-card__title-link:hover {
    color: var(--c-accent);
}

.article-card__excerpt {
    font-size: var(--t-sm);
    color: var(--grey66);
    line-height: 1.6;
    margin: 0;
    flex: 1;
}

.article-card__meta {
    display: flex;
    align-items: center;
    gap: var(--sp-2);
    font-size: var(--t-xs);
    color: var(--c-subtle);
    padding-top: var(--sp-3);
    border-top: 1px solid var(--border);
    margin-top: auto;
}



/* ============================================================
   SECTION — PAGE CONTENT
   ============================================================ */
body.page-template-default .breadcrumb__list.inner {
    max-width: 1180px;
}

.section.page-content .inner {
    max-width: 1180px;
}

/*
.section.page-content img.illustration {
    max-width: 100%;
    border-radius: 20px;
    position: relative;
    display: block;
}

.section.page-content img.illustration.stretch {
    object-fit: cover;
    height: 100%;
    width: 100%;
}*/