/* ==========================================================
   VALORESSENCE — SINGLE MEMBRE
========================================================== */

.member-profile {
    background: #fff;
    color: var(--brown);
}


/* ==========================================================
   HERO
========================================================== */

.member-profile-hero {
    padding: 28px 0 32px;

    background: #fff;
}


.member-profile-hero__inner {
    width: min(1180px, 100%);

    margin: 0 auto;

    padding: 40px 42px 34px;

    border-top: 3px solid var(--orange);
    border-radius: 12px;

    background:
        linear-gradient(
            145deg,
            #2a190f,
            #1a100b
        );

    color: #fff;
}


/* ==========================================================
   HERO — TOP
========================================================== */

.member-profile-hero__top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;

    gap: 55px;
}


/* ==========================================================
   IDENTITÉ
========================================================== */

.member-profile-identity {
    display: flex;
    align-items: center;

    gap: 20px;

    min-width: 0;
}


.member-profile-avatar {
    width: 80px;
    height: 80px;

    flex: 0 0 80px;

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

    overflow: hidden;

    border: 3px solid rgba(255,255,255,.10);
    border-radius: 50%;

    background:
        linear-gradient(
            145deg,
            #ed9c45,
            var(--orange)
        );

    color: #1f110b;

    font-size: 25px;
    line-height: 1;
    font-weight: 700;
}


.member-profile-avatar img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}


.member-profile-sector {
    display: inline-flex;
    align-items: center;

    min-height: 28px;

    margin-bottom: 10px;
    padding: 0 12px;

    border:
        1px solid
        rgba(216,125,33,.42);

    border-radius: 30px;

    background:
        rgba(216,125,33,.11);

    color: #ed9843;

    font-size: 9px;
    line-height: 1;
    font-weight: 700;

    text-transform: uppercase;
}


.member-profile-identity h1 {
    margin: 0 0 7px;

    color: #fff;

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

    font-weight: 700;

    letter-spacing: -.8px;
}


.member-profile-role {
    color: #b9a69b;

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


.member-profile-role span {
    margin: 0 5px;

    color: var(--orange);
}


.member-profile-role strong {
    color: #fff;

    font-weight: 600;
}


/* ==========================================================
   STATS
========================================================== */

.member-profile-stats {
    display: flex;
    flex-wrap: wrap;

    gap: 12px;

    justify-content: flex-end;
    align-items: flex-start;
}


.member-profile-stat {
    min-width: 150px;
    height: auto;
    min-height: 0;
    align-self: flex-start;

    padding: 14px 17px;

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

    border-radius: 9px;

    background:
        rgba(255,255,255,.045);
}


.member-profile-stat small {
    display: block;

    margin-bottom: 6px;

    color: #b9aa8a;

    font-size: 8px;
    line-height: 1.35;
    font-weight: 500;

    text-transform: uppercase;
}


.member-profile-stat strong {
    display: block;

    color: var(--orange);

    font-size: 18px;
    line-height: 1.1;

    font-weight: 700;
}


/* ==========================================================
   RÉSEAUX
========================================================== */

.member-profile-links {
    display: flex;
    flex-wrap: wrap;

    gap: 9px;

    margin-top: 28px;
}


.member-profile-links a {
    min-height: 39px;

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

    gap: 8px;

    padding: 0 15px 0 10px;

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

    border-radius: 30px;

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

    color: #fff;

    font-size: 11px;
    line-height: 1;
    font-weight: 600;

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


.member-profile-links a:hover {
    border-color:
        rgba(216,125,33,.55);

    background:
        rgba(216,125,33,.12);

    transform: translateY(-2px);
}


.member-profile-links a > span {
    width: 21px;
    height: 21px;

    flex: 0 0 21px;

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

    border-radius: 50%;

    background: var(--orange);

    color: #23130c;

    font-size: 9px;
    line-height: 1;
    font-weight: 700;
}


/* ==========================================================
   ACTIONS
========================================================== */

.member-profile-actions {
    display: flex;
    flex-wrap: wrap;

    gap: 10px;

    margin-top: 15px;
}


.member-profile-actions a {
    min-height: 43px;

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

    padding: 0 20px;

    border-radius: 30px;

    font-size: 11px;
    line-height: 1;
    font-weight: 700;

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


.member-profile-actions a:hover {
    transform: translateY(-2px);
}


.member-profile-primary {
    background: var(--orange);

    color: #20110a;
}


.member-profile-primary:hover {
    background: #e58a2e;
}


.member-profile-secondary {
    border:
        1px solid
        rgba(255,255,255,.28);

    color: #fff;
}


.member-profile-secondary:hover {
    border-color:
        rgba(216,125,33,.60);

    background:
        rgba(216,125,33,.10);
}


/* ==========================================================
   CONTENT
========================================================== */

.member-profile-content {
    padding: 0 0 100px;

    background: #fff;
}


.member-profile-content__inner {
    width: min(1180px, 100%);

    margin: 0 auto;
}


.member-profile-grid {
    display: grid;

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

    gap: 28px;

    align-items: stretch;
}


/* ==========================================================
   BOX
========================================================== */

.member-box {
    position: relative;

    overflow: hidden;

    border: 0;
    border-radius: 12px;

    background: #f8f3ed;

    box-shadow:
        0 12px 32px
        rgba(45,28,20,.055);
}


.member-box::before {
    content: "";

    position: absolute;

    top: 0;
    right: 0;
    left: 0;

    height: 3px;

    background:
        linear-gradient(
            90deg,
            var(--orange),
            rgba(216,125,33,.22) 58%,
            transparent 88%
        );
}


.member-box--full {
    grid-column: 1 / -1;
}


/* ==========================================================
   BOX HEADER
========================================================== */

.member-box__header {
    min-height: 74px;

    display: flex;
    align-items: center;

    gap: 14px;

    padding: 20px 24px;

    border-bottom:
        1px solid
        rgba(216,125,33,.16);

    background:
        rgba(255,255,255,.50);
}


.member-box__header::before {
    display: none;
}


.member-box__header > span {
    width: 35px;
    height: 35px;

    flex: 0 0 35px;

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

    border-radius: 9px;

    background:
        rgba(216,125,33,.14);

    color: var(--orange);

    font-size: 12px;
    line-height: 1;
    font-weight: 700;
}


.member-box__header h2 {
    margin: 0;

    color: var(--brown);

    font-size: 16px;
    line-height: 1.2;

    font-weight: 700;
}


/* ==========================================================
   BOX BODY
========================================================== */

.member-box__body {
    padding: 29px 26px 31px;

    display: flex;
    flex-direction: column;

    gap: 29px;
}


/* ==========================================================
   FIELDS
========================================================== */

.member-field__label {
    margin-bottom: 11px;

    color: var(--orange);

    font-size: 10px;
    line-height: 1;
    font-weight: 700;

    letter-spacing: .04em;

    text-transform: uppercase;
}


.member-field__columns {
    display: flex;
    flex-wrap: wrap;

    gap: 28px 55px;
}


.member-field__columns small {
    display: block;

    margin-bottom: 5px;

    color: #8b7d73;

    font-size: 10px;
    line-height: 1.35;

    font-weight: 600;
}


.member-field a,
.member-field__value {
    color: var(--brown);

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

    font-weight: 500;
}


.member-field a {
    transition: color .2s ease;
}


.member-field a:hover {
    color: var(--orange);
}


.member-field__text {
    max-width: 100%;

    color: #594c44;

    font-size: 14px;
    line-height: 1.85;

    font-weight: 400;
}


/* ==========================================================
   RECOMMANDATIONS
========================================================== */

.member-recommendations {
    gap: 32px;
}


.member-recommendations__section {
    padding: 2px 0;
}


.member-empty {
    margin: 0;

    color: #887a70;

    font-size: 13px;
    line-height: 1.6;

    font-style: italic;
}


/* ==========================================================
   FULL BOX BACKGROUND
========================================================== */

.member-box--full .member-box__body {
    background:
        linear-gradient(
            180deg,
            rgba(255,255,255,.30),
            rgba(248,243,237,.78)
        );
}


/* ==========================================================
   PRÉSENCE
========================================================== */

.member-presence {
    padding: 6px 0 4px;
}


.member-presence strong {
    display: block;

    margin-bottom: 14px;

    color: var(--orange);

    font-size: 34px;
    line-height: 1;

    font-weight: 700;
}


.member-presence__track {
    height: 12px;

    overflow: hidden;

    border-radius: 30px;

    background: #e7dbd0;
}


.member-presence__fill {
    height: 100%;

    border-radius: inherit;

    background:
        linear-gradient(
            90deg,
            var(--orange),
            #f0a34a
        );
}


.member-presence p {
    margin: 10px 0 0;

    color: #7f7168;

    font-size: 11px;
    line-height: 1.5;
}


/* ==========================================================
   HOVER DES BOX
========================================================== */

.member-box {
    transition:
        transform .2s ease,
        box-shadow .2s ease;
}


.member-box:hover {
    transform: translateY(-2px);

    box-shadow:
        0 16px 38px
        rgba(45,28,20,.075);
}


/* ==========================================================
   TABLETTE
========================================================== */

@media (max-width: 1050px) {

    .member-profile-hero__top {
        flex-direction: column;
    }


    .member-profile-stats {
        justify-content: flex-start;
    }

}


/* ==========================================================
   TABLETTE PORTRAIT
========================================================== */

@media (max-width: 900px) {

    .member-profile-grid {
        grid-template-columns: 1fr;
    }


    .member-box--full {
        grid-column: auto;
    }

}


/* ==========================================================
   MOBILE
========================================================== */

@media (max-width: 700px) {

    .member-profile-hero {
        padding: 0;
    }


    .member-profile-hero__inner {
        width: 100%;

        padding: 34px 20px 30px;

        border-radius: 0;
    }


    .member-profile-identity {
        align-items: flex-start;
    }


    .member-profile-avatar {
        width: 64px;
        height: 64px;

        flex-basis: 64px;

        font-size: 20px;
    }


    .member-profile-identity h1 {
        font-size: 24px;

        letter-spacing: -.4px;
    }


    .member-profile-role {
        font-size: 12px;
    }


    .member-profile-stats {
        display: grid;

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

        width: 100%;
    }


    .member-profile-stat {
        min-width: 0;
    }


    .member-profile-links {
        margin-top: 24px;
    }


    .member-profile-content {
        padding: 28px 0 72px;
    }


    .member-profile-content__inner {
        width: 100%;
    }


    .member-box {
        border-radius: 9px;
    }


    .member-box__header {
        min-height: 68px;

        padding: 18px 20px;
    }


    .member-box__body {
        padding: 24px 20px 26px;
    }


    .member-field__columns {
        gap: 22px 35px;
    }

}


/* ==========================================================
   PETIT MOBILE
========================================================== */

@media (max-width: 480px) {

    .member-profile-stats {
        grid-template-columns: 1fr;
    }


    .member-profile-actions {
        flex-direction: column;
    }


    .member-profile-actions a {
        width: 100%;
    }


    .member-profile-links a {
        flex: 1 1 auto;

        justify-content: center;
    }


    .member-field__columns {
        flex-direction: column;

        gap: 20px;
    }

}

/* ==========================================================
   SINGLE MEMBRE — CONTRASTE PREMIUM
========================================================== */


/* FOND GLOBAL DU CONTENU */

.member-profile-content {
    padding: 34px 0 105px;

    background: #f7f3ee;
}


/* ==========================================================
   CARTES
========================================================== */

.member-box {
    position: relative;

    overflow: hidden;

    border: 1px solid rgba(43, 25, 17, .10);
    border-radius: 10px;

    background: #fff;

    box-shadow:
        0 16px 40px rgba(40, 22, 14, .07);

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


.member-box:hover {
    transform: translateY(-3px);

    box-shadow:
        0 22px 48px rgba(40, 22, 14, .11);
}


.member-box::before {
    content: "";

    position: absolute;

    z-index: 2;

    top: 0;
    right: 0;
    left: 0;

    height: 3px;

    background: var(--orange);
}


/* ==========================================================
   HEADERS DES CARTES
========================================================== */

.member-box__header {
    min-height: 76px;

    display: flex;
    align-items: center;

    gap: 14px;

    padding: 20px 24px;

    border-bottom: 0;

    background: #28170f;
}


.member-box__header > span {
    width: 36px;
    height: 36px;

    flex: 0 0 36px;

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

    border-radius: 50%;

    background: var(--orange);

    color: #28170f;

    font-size: 11px;
    font-weight: 700;
}


.member-box__header h2 {
    margin: 0;

    color: #fff;

    font-size: 16px;
    font-weight: 600;
}


/* ==========================================================
   CORPS
========================================================== */

.member-box__body,
.member-box--full .member-box__body {
    padding: 30px 26px 32px;

    background: #fff;

    gap: 30px;
}


/* ==========================================================
   LABELS
========================================================== */

.member-field__label {
    margin-bottom: 12px;

    color: var(--orange);

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

    letter-spacing: .05em;

    text-transform: uppercase;
}


.member-field__columns small {
    margin-bottom: 6px;

    color: #8b7b71;

    font-size: 10px;
    font-weight: 500;
}


/* ==========================================================
   VALEURS
========================================================== */

.member-field a,
.member-field__value {
    color: #28170f;

    font-size: 14px;
    line-height: 1.7;

    font-weight: 500;
}


.member-field__text {
    color: #62544c;

    font-size: 14px;
    line-height: 1.85;

    font-weight: 400;
}


.member-field a:hover {
    color: var(--orange);
}


/* ==========================================================
   SÉPARATEURS INTERNES
========================================================== */

.member-field + .member-field {
    padding-top: 24px;

    border-top:
        1px solid
        rgba(216, 125, 33, .17);
}


/* ==========================================================
   RECOMMANDATIONS
========================================================== */

.member-recommendations__section {
    padding: 4px 0 10px;
}


.member-recommendations__section
+ .member-recommendations__section {
    padding-top: 28px;

    border-top:
        1px solid
        rgba(216,125,33,.18);
}


.member-empty {
    margin: 0;

    color: #83746b;

    font-size: 13px;
    line-height: 1.6;

    font-style: italic;
}


/* ==========================================================
   PRÉSENCE — PLUS IMPACTANTE
========================================================== */

.member-presence {
    padding: 5px 0;
}


.member-presence strong {
    display: block;

    margin-bottom: 18px;

    color: var(--orange);

    font-size: 40px;
    line-height: 1;

    font-weight: 600;
}


.member-presence__track {
    height: 10px;

    overflow: hidden;

    border-radius: 30px;

    background: #eee6df;
}


.member-presence__fill {
    height: 100%;

    background: var(--orange);

    border-radius: inherit;
}


.member-presence p {
    margin: 11px 0 0;

    color: #77685f;

    font-size: 11px;
}





/* ==========================================================
   MOBILE
========================================================== */

@media (max-width: 700px) {

    .member-profile-content {
        padding: 25px 0 75px;
    }

    .member-box__header {
        min-height: 68px;

        padding: 17px 20px;
    }

    .member-box__body,
    .member-box--full .member-box__body {
        padding: 25px 20px;
    }

}
/* ==========================================================
   V2 — PROFIL ENTREPRENEUR / ENTREPRISE
   Colonnes indépendantes + présence sous recherches
========================================================== */

.member-profile-stat-stack {
    min-width: 150px;
    display: grid;
    gap: 12px;
    align-self: flex-start;
    align-content: start;
}

.member-profile-stat-stack .member-profile-stat {
    min-width: 150px;
}

.member-profile-columns {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
    align-items: start;
}

.member-profile-column {
    display: grid;
    gap: 28px;
    align-content: start;
    min-width: 0;
}

.member-recommendations-box {
    margin-top: 28px;
}

.member-profile-facts {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.member-profile-facts > div {
    padding: 14px 15px;
    border: 1px solid rgba(216,125,33,.14);
    border-radius: 9px;
    background: rgba(255,255,255,.48);
}

.member-profile-facts small {
    display: block;
    margin-bottom: 5px;
    color: #8b7d73;
    font-size: 9px;
    line-height: 1.35;
    font-weight: 700;
    text-transform: uppercase;
}

.member-profile-facts strong {
    display: block;
    color: var(--brown);
    font-size: 13px;
    line-height: 1.4;
    font-weight: 700;
}

.member-company-heading {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 9px;
    padding-bottom: 17px;
    border-bottom: 1px solid rgba(216,125,33,.16);
}

.member-company-heading strong {
    color: var(--brown);
    font-size: 20px;
    line-height: 1.2;
    font-weight: 700;
}

.member-company-heading span {
    display: inline-flex;
    padding: 5px 8px;
    border-radius: 999px;
    background: rgba(216,125,33,.12);
    color: var(--orange);
    font-size: 9px;
    line-height: 1;
    font-weight: 700;
    text-transform: uppercase;
}

.member-help-card {
    padding: 18px;
    border: 1px solid rgba(216,125,33,.24);
    border-radius: 10px;
    background: #fff7ef;
}

.member-help-card > span {
    display: block;
    margin-bottom: 8px;
    color: var(--orange);
    font-size: 10px;
    line-height: 1.2;
    font-weight: 800;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.member-help-card p {
    margin: 0;
    color: #594c44;
    font-size: 13px;
    line-height: 1.75;
}

.member-help-card--needs {
    background: #fff;
}

@media (max-width: 900px) {
    .member-profile-columns {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 700px) {
    .member-profile-stat-stack {
        min-width: 0;
    }

    .member-profile-stat-stack .member-profile-stat {
        min-width: 0;
    }
}

@media (max-width: 480px) {
    .member-profile-facts {
        grid-template-columns: 1fr;
    }
}


/* ==========================================================
   V3 — PROFIL ENTREPRENEUR + ENTREPRISES DISSOCIÉES
========================================================== */
.member-company-section__header {
    position: relative;
    flex-wrap: wrap;
}

.member-company-section__header h2 {
    min-width: 0;
    flex: 1 1 auto;
}

.member-company-header-form {
    display: inline-flex;
    align-items: center;
    min-height: 24px;
    padding: 0 9px;
    border-radius: 999px;
    background: rgba(255,255,255,.12);
    color: rgba(255,255,255,.9);
    font-size: 8px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.member-company-location {
    display: grid;
    gap: 4px;
    padding: 14px 15px;
    border: 1px solid rgba(216,125,33,.14);
    border-radius: 9px;
    background: rgba(255,255,255,.48);
}

.member-company-location small {
    color: #8b7d73;
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
}

.member-company-location strong {
    color: var(--brown);
    font-size: 13px;
    font-weight: 700;
}

.member-company-section .member-box__body {
    display: grid;
    gap: 18px;
}

@media (max-width: 700px) {
    .member-company-header-form {
        width: fit-content;
    }
}

/* ==========================================================
   V4 — HAUTEUR COORDONNÉES / PROFIL ENTREPRENEUR + ENTREPRISES
========================================================== */
.member-profile-top-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
    align-items: start;
}

.member-contact-box,
.member-entrepreneur-box {
    min-width: 0;
}

.member-entrepreneur-box {
    overflow: hidden;
}

.member-entrepreneur-body {
    position: relative;
    overflow: hidden;
}

.member-entrepreneur-content {
    display: grid;
    gap: 0;
}

.member-entrepreneur-body.is-collapsed {
    padding-bottom: 68px;
}

.member-entrepreneur-fade {
    position: absolute;
    z-index: 2;
    left: 0;
    right: 0;
    bottom: 48px;
    height: 58px;
    pointer-events: none;
    background: linear-gradient(to bottom, rgba(255,255,255,0), #fff 78%);
}

.member-entrepreneur-toggle {
    position: absolute;
    z-index: 3;
    left: 22px;
    right: 22px;
    bottom: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 36px;
    padding: 8px 14px;
    border: 1px solid rgba(216,125,33,.28);
    border-radius: 9px;
    background: #fff7ef;
    color: var(--orange);
    font: inherit;
    font-size: 11px;
    font-weight: 800;
    cursor: pointer;
    transition: background .18s ease, border-color .18s ease;
}

.member-entrepreneur-toggle:hover {
    background: #fff1e3;
    border-color: rgba(216,125,33,.46);
}

.member-entrepreneur-toggle i {
    font-style: normal;
    font-size: 13px;
}

.member-company-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
    margin-top: 28px;
    align-items: start;
}

.member-company-grid .member-company-section {
    min-width: 0;
}

/* La ville rejoint les autres caractéristiques de l'entreprise. */
.member-company-grid .member-profile-facts {
    align-items: stretch;
}

@media (max-width: 900px) {
    .member-profile-top-grid,
    .member-company-grid {
        grid-template-columns: 1fr;
    }

    .member-entrepreneur-box {
        height: auto !important;
        overflow: visible;
    }

    .member-entrepreneur-body {
        max-height: none !important;
        overflow: visible;
    }

    .member-entrepreneur-body.is-collapsed {
        padding-bottom: 25px;
    }

    .member-entrepreneur-toggle,
    .member-entrepreneur-fade {
        display: none !important;
    }
}


/* ==========================================================
   CORRECTIFS PROFIL ENTREPRENEUR / SITE ENTREPRISE
   ========================================================== */

.member-entrepreneur-body {
    box-sizing: border-box;
}

.member-entrepreneur-body.is-collapsed .member-entrepreneur-content {
    height: calc(100% - 58px);
    max-height: calc(100% - 58px);
    overflow: hidden;
}

.member-entrepreneur-body.is-collapsed {
    padding-bottom: 0;
}

.member-entrepreneur-toggle {
    bottom: 12px;
}

.member-entrepreneur-fade {
    bottom: 48px;
}

.member-company-website {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-top: 14px;
    padding: 13px 15px;
    border: 1px solid rgba(216, 125, 33, .22);
    border-radius: 10px;
    background: #fffaf6;
    color: inherit;
    text-decoration: none;
    transition: border-color .18s ease, background .18s ease, transform .18s ease;
}

.member-company-website:hover {
    background: #fff5ec;
    border-color: rgba(216, 125, 33, .46);
    transform: translateY(-1px);
}

.member-company-website span {
    display: grid;
    gap: 3px;
    min-width: 0;
}

.member-company-website small {
    color: var(--orange);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.member-company-website strong {
    color: var(--brown, #2b1710);
    font-size: 13px;
    font-weight: 700;
    overflow-wrap: anywhere;
}

.member-company-website i {
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--orange);
    color: #fff;
    font-style: normal;
    font-size: 15px;
    line-height: 1;
}


/* Correctif V5 — dépliage complet du profil entrepreneur */
.member-entrepreneur-body.is-expanded {
    overflow: visible;
    padding-bottom: 66px;
}

.member-entrepreneur-body.is-expanded .member-entrepreneur-content {
    height: auto;
    max-height: none;
    overflow: visible;
}

.member-entrepreneur-body.is-expanded .member-entrepreneur-fade {
    display: none !important;
}
