.member-dashboard {
    --profile-green: #075633;
    --profile-green-dark: #063f28;
    --profile-green-soft: #eaf7ef;
    --profile-ink: #10203b;
    --profile-muted: #65738d;
    --profile-line: #d7e2e8;
    min-height: 70vh;
    padding: 28px 0 70px;
    background:
        radial-gradient(circle at 5% 3%, rgba(200, 233, 211, .34), transparent 26rem),
        linear-gradient(115deg, #f8fbf9 0%, #f4faf7 52%, #f8fbfa 100%);
}

.member-dashboard .wrap {
    width: min(1120px, calc(100% - 40px));
    max-width: none;
}

.member-layout {
    display: grid;
    grid-template-columns: 310px minmax(0, 1fr);
    gap: 30px;
    align-items: start;
}

.member-layout > .content-side {
    position: sticky;
    top: 20px;
    display: grid;
    gap: 0;
    overflow: hidden;
    padding: 18px 16px;
    border: 1px solid #e1e8ec;
    border-radius: 22px;
    background: rgba(255, 255, 255, .94);
    box-shadow: 0 18px 48px rgba(19, 52, 38, .09);
}

.member-dashboard .content-side-card {
    margin: 0;
    padding: 12px 0 18px;
    border: 0;
    border-bottom: 1px solid var(--profile-line);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.member-dashboard .content-side-card + .content-side-card {
    margin-top: 8px;
}

.member-dashboard .content-side-card.member-signout {
    padding-bottom: 8px;
    border-bottom: 0;
}

.member-eyebrow {
    margin: 0 14px 10px;
    color: #c58a2b;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .2em;
    text-transform: uppercase;
}

.member-dashboard .content-link-list {
    display: grid;
    gap: 4px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.member-dashboard .content-link-list li {
    margin: 0;
    border: 0;
}

.member-dashboard .content-link-list a {
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr) auto;
    gap: 12px;
    align-items: center;
    min-height: 52px;
    padding: 8px 12px;
    border: 0;
    border-radius: 12px;
    color: #40516d;
    font-size: 15px;
    font-weight: 750;
    line-height: 1.25;
    text-decoration: none;
    transition: color .2s ease, background .2s ease, transform .2s ease;
}

.member-dashboard .content-link-list a:hover,
.member-dashboard .content-link-list a:focus-visible,
.member-dashboard .content-link-list a.is-active {
    color: var(--profile-green-dark);
    background: linear-gradient(135deg, #e9f7ef, #f1faf4);
}

.member-dashboard .content-link-list a:hover {
    transform: translateX(2px);
}

.member-nav-icon {
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    color: #526783;
    font-size: 18px;
}

.member-svg-icon {
    width: 1.15em;
    height: 1.15em;
    flex: 0 0 auto;
    overflow: visible;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.is-active .member-nav-icon {
    color: var(--profile-green);
}

.member-nav-label {
    min-width: 0;
}

.member-support-card {
    position: relative;
    display: flex;
    gap: 14px;
    margin-top: 18px;
    padding: 28px 20px 58px;
    overflow: hidden;
    border-radius: 15px;
    color: var(--profile-green-dark);
    background:
        radial-gradient(circle at 13% 100%, #cde8d5 0 10%, transparent 10.5%),
        linear-gradient(145deg, #eef9f2, #f7fbf8);
}

.member-support-card::after {
    content: "";
    position: absolute;
    right: 16px;
    bottom: 0;
    width: 140px;
    height: 58px;
    opacity: .35;
    background: linear-gradient(90deg, transparent 5%, #8ac39d 5% 12%, transparent 12% 20%, #8ac39d 20% 34%, transparent 34% 42%, #8ac39d 42% 58%, transparent 58% 68%, #8ac39d 68% 88%, transparent 88%);
    clip-path: polygon(0 100%, 0 70%, 10% 70%, 10% 45%, 22% 45%, 22% 62%, 36% 62%, 36% 20%, 51% 20%, 51% 55%, 65% 55%, 65% 35%, 80% 35%, 80% 67%, 100% 67%, 100% 100%);
}

.member-support-icon,
.member-section-icon {
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    border-radius: 50%;
    color: var(--profile-green);
    background: #dff3e6;
}

.member-support-icon {
    width: 46px;
    height: 46px;
}

.member-support-card strong {
    font-size: 16px;
    line-height: 1.3;
}

.member-support-card p {
    margin: 6px 0 0;
    color: var(--profile-muted);
    line-height: 1.3;
}

.member-main {
    display: grid;
    gap: 20px;
    min-width: 0;
}

.member-dashboard-hero {
    position: relative;
    display: flex;
    min-height: 132px;
    align-items: center;
    justify-content: space-between;
    overflow: hidden;
    padding: 4px 28px 8px 10px;
}

.member-dashboard-hero::after {
    content: "";
    position: absolute;
    z-index: 0;
    right: 0;
    bottom: 0;
    width: 48%;
    height: 100%;
    opacity: .65;
    background:
        linear-gradient(175deg, transparent 53%, rgba(109, 164, 126, .18) 54% 64%, transparent 65%),
        linear-gradient(165deg, transparent 57%, rgba(73, 134, 95, .16) 58% 73%, transparent 74%);
}

.member-dashboard-hero > * {
    position: relative;
    z-index: 1;
}

.member-dashboard-hero .member-eyebrow {
    margin: 0 0 8px;
    color: #458162;
}

.member-dashboard-hero h1 {
    margin: 0;
    color: var(--profile-ink);
    font-size: clamp(30px, 4vw, 47px);
    line-height: 1.05;
    letter-spacing: -.035em;
}

.member-dashboard-hero p:last-child {
    margin: 12px 0 0;
    color: var(--profile-muted);
    font-size: 16px;
}

.member-hero-message {
    transform: rotate(-6deg);
    color: var(--profile-green);
    font-family: cursive;
    font-size: 19px;
    font-style: italic;
    line-height: 1.05;
    text-align: center;
}

.member-card {
    padding: 24px 28px;
    border: 1px solid #e0e7eb;
    border-radius: 20px;
    background: rgba(255, 255, 255, .96);
    box-shadow: 0 12px 35px rgba(27, 60, 44, .06);
}

.member-card-head {
    display: grid;
    grid-template-columns: 54px minmax(0, 1fr) auto 18px;
    gap: 14px;
    align-items: center;
    margin-bottom: 20px;
}

.member-section-icon {
    width: 54px;
    height: 54px;
    font-size: 22px;
}

.member-card-title h2,
.member-profile-panel h2 {
    margin: 0;
    color: var(--profile-ink);
    font-size: 21px;
    line-height: 1.15;
}

.member-card-title p {
    margin: 5px 0 0;
    color: var(--profile-muted);
    font-size: 15px;
}

.member-count {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 0 17px;
    border-radius: 999px;
    color: var(--profile-green-dark);
    background: var(--profile-green-soft);
    font-size: 14px;
    font-weight: 850;
    white-space: nowrap;
}

.member-card-chevron {
    color: var(--profile-ink);
    font-size: 27px;
}

.saved-list,
.member-dashboard .listing-list {
    display: grid;
    gap: 10px;
}

.saved-listing,
.member-dashboard .listing-row {
    display: grid;
    grid-template-columns: 150px minmax(0, 1fr) auto;
    gap: 20px;
    align-items: center;
    min-width: 0;
    padding: 16px 18px;
    border: 1px solid var(--profile-line);
    border-radius: 12px;
    background: #fff;
}

.saved-listing-image,
.member-dashboard .listing-row img,
.member-dashboard .listing-row-placeholder {
    display: block;
    width: 150px;
    height: 112px;
    border-radius: 15px;
    object-fit: cover;
    background: #eef3f0;
}

.member-dashboard .listing-row-placeholder {
    display: grid;
    place-items: center;
    color: var(--profile-green);
    font-size: 30px;
    font-weight: 900;
}

.saved-listing h3,
.member-dashboard .listing-row h2 {
    margin: 0 0 5px;
    color: var(--profile-ink);
    font-size: 20px;
    line-height: 1.15;
}

.member-dashboard .listing-row p {
    margin: 3px 0;
    color: var(--profile-muted);
    line-height: 1.35;
}

.saved-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 5px 9px;
    margin-top: 4px;
    color: var(--profile-muted);
    font-size: 14px;
}

.member-status,
.member-dashboard .status-pill {
    display: inline-flex;
    align-items: center;
    min-height: 24px;
    padding: 2px 10px;
    border-radius: 999px;
    color: var(--profile-green);
    background: #ddf5e4;
    font-size: 12px;
    font-weight: 850;
    line-height: 1;
    text-transform: capitalize;
}

.member-status:not(.live),
.member-dashboard .status-pill:not(.status-live) {
    color: #526174;
    background: #edf1f4;
}

.saved-actions,
.member-dashboard .listing-row-actions > div {
    display: flex;
    gap: 10px;
    align-items: stretch;
}

.member-dashboard .listing-row-actions > div {
    min-width: 190px;
    flex-direction: column;
}

.member-button,
.member-primary {
    display: inline-flex;
    min-height: 46px;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 9px 22px;
    border: 1px solid var(--profile-green);
    border-radius: 10px;
    color: var(--profile-green);
    background: #f8fffa;
    font: inherit;
    font-weight: 850;
    line-height: 1;
    text-decoration: none;
    cursor: pointer;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.member-primary {
    color: #fff;
    background: linear-gradient(135deg, #087243, var(--profile-green-dark));
    box-shadow: 0 8px 18px rgba(6, 79, 45, .15);
}

.member-button:hover,
.member-primary:hover {
    transform: translateY(-1px);
}

.member-remove {
    border-color: #ef9fa5;
    color: #bd1520;
    background: #fff6f6;
}

.listing-offer-action {
    color: #16833e;
    background: #effcf1;
}

.listing-row-media {
    position: relative;
    display: grid;
    justify-items: center;
}

.listing-logo-edit {
    position: absolute;
    top: -10px;
    right: -10px;
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border: 1px solid #064a2e;
    border-radius: 9px;
    color: var(--profile-green);
    background: #effcf1;
    box-shadow: 0 7px 18px rgba(6, 63, 40, .14);
    text-decoration: none;
    transition: transform .2s ease, box-shadow .2s ease;
}

.listing-logo-edit:hover,
.listing-logo-edit:focus-visible {
    transform: translateY(-1px);
    box-shadow: 0 9px 22px rgba(6, 63, 40, .2);
}

.listing-logo-edit .member-svg-icon {
    width: 18px;
    height: 18px;
}

.listing-inline-link,
.listing-live-link a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #0758d6;
    font-size: 12px;
    font-weight: 800;
    text-decoration: none;
}

.listing-live-link {
    display: inline-block;
    margin-right: 10px !important;
}

.member-county-brand {
    max-width: 100px;
    margin: 4px 16px 16px;
}

.member-empty {
    padding: 32px 20px;
    border: 1px dashed #bdd2c5;
    border-radius: 13px;
    background: #f7fbf8;
    text-align: center;
}

.member-empty h3 {
    margin-top: 0;
    color: var(--profile-ink);
}

.member-notice,
.member-error {
    padding: 13px 16px;
    border: 1px solid #b9dfc7;
    border-radius: 11px;
    color: var(--profile-green-dark);
    background: #e9f7ee;
}

.member-error {
    border-color: #efc0c0;
    color: #8c2020;
    background: #fff0f0;
}

.member-profile-modal[hidden] {
    display: none;
}

.member-profile-modal {
    position: fixed;
    z-index: 12000;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 22px;
    background: rgba(7, 31, 19, .62);
    backdrop-filter: blur(6px);
}

.member-profile-modal-open {
    overflow: hidden;
}

.member-profile-panel {
    width: min(760px, 100%);
    max-height: calc(100dvh - 44px);
    overflow: auto;
    margin: 0;
}

.member-profile-panel .member-card-head {
    grid-template-columns: minmax(0, 1fr) 40px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--profile-line);
}

.member-profile-close {
    display: grid;
    width: 40px;
    height: 40px;
    place-items: center;
    padding: 0;
    border: 1px solid #cfe0d6;
    border-radius: 50%;
    color: #315a43;
    background: #f5f9f6;
    font: inherit;
    font-size: 25px;
    line-height: 1;
    cursor: pointer;
}

.member-profile-panel .member-eyebrow {
    margin-left: 0;
}

.member-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.member-field {
    display: grid;
    gap: 6px;
}

.member-field label,
.member-consent strong {
    color: #294735;
    font-weight: 800;
}

.member-field input {
    width: 100%;
    min-height: 48px;
    box-sizing: border-box;
    padding: 12px;
    border: 1px solid #bfd2c6;
    border-radius: 9px;
    font: inherit;
}

.member-field input:focus {
    outline: 3px solid rgba(12, 75, 42, .12);
    border-color: var(--profile-green);
}

.member-help {
    color: var(--profile-muted);
    font-size: 12px;
}

.member-consent {
    display: flex;
    grid-column: 1 / -1;
    gap: 12px;
    align-items: flex-start;
    padding: 16px;
    border-radius: 11px;
    background: #f3f8f5;
}

.member-consent span {
    display: grid;
    gap: 3px;
}

.member-form-actions {
    display: flex;
    grid-column: 1 / -1;
    justify-content: flex-end;
}

.member-verification {
    margin-top: 20px;
    padding: 18px;
    border: 1px solid #b8d6c3;
    border-radius: 12px;
    background: #f0f8f3;
}

.member-verification form {
    display: flex;
    gap: 10px;
    align-items: flex-end;
    flex-wrap: wrap;
}

.member-verification .member-field {
    flex: 1 1 230px;
}

.member-cancel {
    margin-top: 10px;
}

@media (max-width: 980px) {
    .member-layout {
        grid-template-columns: 235px minmax(0, 1fr);
        gap: 18px;
    }

    .member-layout > .content-side {
        padding: 12px 10px;
    }

    .member-support-card {
        display: none;
    }

    .saved-listing,
    .member-dashboard .listing-row {
        grid-template-columns: 110px minmax(0, 1fr);
    }

    .saved-listing-image,
    .member-dashboard .listing-row img,
    .member-dashboard .listing-row-placeholder {
        width: 110px;
        height: 76px;
    }

    .saved-actions,
    .member-dashboard .listing-row-actions {
        grid-column: 1 / -1;
        justify-content: flex-end;
    }

    .member-dashboard .listing-row-actions > div {
        min-width: 0;
        flex-direction: row;
    }
}

@media (max-width: 700px) {
    .member-dashboard {
        padding: 12px 0 50px;
    }

    .member-dashboard .wrap {
        width: min(100% - 20px, 1420px);
    }

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

    .member-layout > .content-side {
        position: static;
        display: flex;
        gap: 6px;
        overflow-x: auto;
        padding: 8px;
        border-radius: 14px;
    }

    .member-dashboard .content-side-card,
    .member-dashboard .content-side-card + .content-side-card {
        flex: 0 0 auto;
        margin: 0;
        padding: 0;
        border: 0;
    }

    .member-side-group .member-eyebrow {
        display: none;
    }

    .member-dashboard .content-link-list {
        display: flex;
    }

    .member-dashboard .content-link-list a {
        display: flex;
        min-height: 42px;
        padding: 7px 11px;
        white-space: nowrap;
    }

    .member-dashboard .content-link-list a > span:last-child {
        display: none;
    }

    .member-nav-icon {
        width: 26px;
        height: 26px;
        font-size: 15px;
    }

    .member-dashboard-hero {
        min-height: 120px;
        padding: 12px 8px;
    }

    .member-dashboard-hero h1 {
        font-size: 30px;
    }

    .member-dashboard-hero p:last-child {
        font-size: 14px;
    }

    .member-hero-message {
        display: none;
    }

    .member-card {
        padding: 18px 14px;
        border-radius: 15px;
    }

    .member-card-head {
        grid-template-columns: 44px minmax(0, 1fr) auto;
        gap: 10px;
    }

    .member-card-chevron {
        display: none;
    }

    .member-section-icon {
        width: 44px;
        height: 44px;
    }

    .member-card-title h2 {
        font-size: 18px;
    }

    .member-card-title p {
        display: none;
    }

    .member-count {
        min-height: 30px;
        padding: 0 10px;
        font-size: 12px;
    }

    .saved-listing,
    .member-dashboard .listing-row {
        grid-template-columns: 82px minmax(0, 1fr);
        gap: 12px;
        padding: 12px;
    }

    .saved-listing-image,
    .member-dashboard .listing-row img,
    .member-dashboard .listing-row-placeholder {
        width: 82px;
        height: 68px;
    }

    .saved-listing h3,
    .member-dashboard .listing-row h2 {
        font-size: 16px;
    }

    .saved-meta,
    .member-dashboard .listing-row p {
        font-size: 12px;
    }

    .saved-actions,
    .member-dashboard .listing-row-actions > div {
        display: grid;
        grid-template-columns: 1fr 1fr;
        width: 100%;
    }

    .member-button,
    .member-primary {
        min-height: 43px;
        padding: 8px 12px;
    }

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

    .member-profile-modal {
        align-items: flex-end;
        padding: 16px 0 0;
    }

    .member-profile-panel {
        width: 100%;
        max-height: calc(100dvh - 16px);
        border-radius: 20px 20px 0 0;
    }

    .member-form-actions .member-primary {
        width: 100%;
    }
}

/* Listing-style profile refresh */
.member-dashboard {
    --profile-green: #075532;
    --profile-green-dark: #063f28;
    --profile-green-soft: #edf7ef;
    --profile-ink: #142238;
    --profile-muted: #607083;
    --profile-line: #dce5e1;
    padding: 34px 0 88px;
    background:
        radial-gradient(circle at 10% 5%, rgba(101, 185, 87, .1), transparent 25rem),
        linear-gradient(180deg, #f8fbf8 0, #f3f7f5 100%);
}

.member-dashboard .wrap {
    width: min(1180px, calc(100% - 36px));
}

.member-layout {
    grid-template-columns: 270px minmax(0, 1fr);
    gap: 18px;
}

.member-layout > .content-side,
.member-card,
.member-profile-panel {
    border: 1px solid var(--profile-line);
    border-radius: 22px;
    border-top-right-radius: 0;
    border-bottom-left-radius: 0;
    background: rgba(255, 255, 255, .98);
    box-shadow: 0 14px 40px rgba(23, 60, 42, .08);
}

.member-layout > .content-side {
    top: 16px;
    padding: 12px 14px;
}

.member-dashboard .content-side-card {
    padding: 12px 0 14px;
}

.member-eyebrow {
    color: #c58a2b;
    font-size: 10px;
    letter-spacing: .18em;
}

.member-dashboard .content-link-list a {
    min-height: 46px;
    padding: 6px 10px;
    border-radius: 9px;
    color: #37465a;
    font-size: 13px;
    font-weight: 800;
}

.member-dashboard .content-link-list a:hover,
.member-dashboard .content-link-list a:focus-visible {
    color: var(--profile-green-dark);
    background: var(--profile-green-soft);
}

.member-dashboard .content-link-list a.is-active {
    color: #fff;
    background: linear-gradient(135deg, #063f24, #075532 55%, #03381f);
    box-shadow: 0 7px 18px rgba(7, 85, 50, .14);
}

.member-dashboard .content-link-list a.is-active .member-nav-icon {
    color: #fff;
}

.member-nav-icon {
    color: var(--profile-green);
}

.member-support-card {
    margin-top: 14px;
    padding: 20px 16px 44px;
    border: 1px solid #e9dfb6;
    border-radius: 14px;
    border-top-right-radius: 0;
    border-bottom-left-radius: 0;
    background: linear-gradient(135deg, #fffdf1, #f8f7ec);
}

.member-support-card strong {
    color: var(--profile-green-dark);
    font-size: 14px;
}

.member-main {
    gap: 14px;
}

.member-dashboard-hero {
    min-height: 154px;
    padding: 25px 30px;
    border-radius: 22px;
    border-top-right-radius: 0;
    border-bottom-left-radius: 0;
    color: #fff;
    background:
        radial-gradient(circle at 84% 20%, rgba(143, 198, 156, .18), transparent 30%),
        linear-gradient(135deg, #063f24 0%, #075532 48%, #03381f 100%);
    box-shadow: 0 14px 35px rgba(5, 55, 32, .16);
}

.member-dashboard-hero::after {
    width: 44%;
    opacity: .3;
    background:
        linear-gradient(175deg, transparent 53%, rgba(255, 255, 255, .25) 54% 64%, transparent 65%),
        linear-gradient(165deg, transparent 57%, rgba(143, 198, 156, .32) 58% 73%, transparent 74%);
}

.member-dashboard-hero .member-eyebrow {
    color: #efc46e;
}

.member-dashboard-hero h1 {
    color: #fff;
    font-size: clamp(29px, 4vw, 42px);
}

.member-dashboard-hero p:last-child {
    max-width: 650px;
    color: #dcebe2;
    font-size: 14px;
}

.member-card {
    padding: 20px;
}

.member-card-head {
    grid-template-columns: 44px minmax(0, 1fr) auto;
    gap: 12px;
    margin-bottom: 16px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--profile-line);
}

.member-section-icon {
    width: 44px;
    height: 44px;
    border-radius: 11px;
    color: var(--profile-green);
    background: var(--profile-green-soft);
    font-size: 19px;
}

.member-card-title h2,
.member-profile-panel h2 {
    color: var(--profile-green-dark);
    font-size: 18px;
}

.member-card-title p {
    margin-top: 3px;
    font-size: 13px;
}

.member-count {
    min-height: 30px;
    padding: 0 11px;
    border: 1px solid #cfe2d5;
    color: var(--profile-green-dark);
    background: var(--profile-green-soft);
    font-size: 11px;
}

.member-button,
.member-primary {
    min-height: 42px;
    padding: 8px 16px;
    border-radius: 9px;
    font-size: 12px;
    font-weight: 850;
}

.member-primary {
    border-color: var(--profile-green);
    background: var(--profile-green);
    box-shadow: 0 7px 18px rgba(7, 85, 50, .14);
}

.member-primary:hover,
.member-primary:focus-visible {
    color: #fff;
    background: var(--profile-green-dark);
}

.member-empty {
    border-color: #cfe0d5;
    border-radius: 12px;
    background: #f8fbf9;
}

.member-profile-modal {
    background: rgba(7, 31, 19, .66);
    backdrop-filter: blur(7px);
}

.member-profile-panel {
    border-radius: 22px;
    border-top-right-radius: 0;
    border-bottom-left-radius: 0;
}

@media (max-width: 900px) {
    .member-layout {
        grid-template-columns: 230px minmax(0, 1fr);
    }
}

@media (max-width: 700px) {
    .member-dashboard {
        padding: 14px 0 56px;
    }

    .member-dashboard .wrap {
        width: min(100% - 20px, 1180px);
    }

    .member-layout {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .member-layout > .content-side {
        display: none;
        border-radius: 14px;
        border-top-right-radius: 0;
        border-bottom-left-radius: 0;
    }

    .member-dashboard .content-link-list a.is-active {
        transform: none;
    }

    .member-dashboard-hero {
        min-height: 128px;
        padding: 22px 18px;
        border-radius: 17px;
        border-top-right-radius: 0;
        border-bottom-left-radius: 0;
    }

    .member-dashboard-hero h1 {
        font-size: 28px;
    }

    .member-card {
        padding: 15px;
        border-radius: 17px;
        border-top-right-radius: 0;
        border-bottom-left-radius: 0;
    }

    .member-card-head {
        grid-template-columns: 40px minmax(0, 1fr) auto;
    }

    .member-section-icon {
        width: 40px;
        height: 40px;
    }
}
