/* =========================
   Base / Layout
========================= */

:root {
    --main-w: 78vw;
    --side-w: 22vw;
    /* --header-h: 39vh; */
    --header-h: 36vh;
    --footer-h: 15vh;

    --pad-x: 5.2vw;
    --pad-y: 2rem;

    --c-bg: #ffffff;
    --c-content-bg: #ffdfd2;
    --c-text: #000;
    --c-accent: #ff9966;
    --c-accent-2: #ec9e6c;

    --radius: 6px;
}

html,
body {
    margin: 0;
    padding: 0;
    height: 100%;
    overflow: hidden;
    /* scroll happens in .content / #main-content */
    /* scroll-behavior: auto; */
}

body {
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bold;
    color: var(--c-text);
    background: var(--c-bg);
}

body.is-legislation #main-content {
    padding-top: var(--header-h);
}

picture {
    display: contents;
}

/* =========================
   Footer lock behavior
========================= */

body.footer-lock .sidebar .nav-btn {
    opacity: 0.4;
    pointer-events: none;
    transition: opacity 0.2s ease, pointer-events 0.2s ease;
}

body.footer-lock .sidebar .nav-btn[data-target="about"],
body.footer-lock .sidebar .nav-home-btn {
    opacity: 1;
    pointer-events: auto;
}

/* =========================
   Header / Sidebar / Footer
========================= */

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: var(--main-w);
    height: var(--header-h);
    z-index: 1000;
    background: var(--c-bg);
}

.sidebar {
    position: fixed;
    top: 0;
    right: 0;
    width: var(--side-w);
    height: 100vh;
    z-index: 1200;
    background: var(--c-bg);
}

.footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: var(--main-w);
    height: var(--footer-h);
    z-index: 1100;
    background: var(--c-bg);
}

/* =========================
   Scrolling containers
========================= */

#main-content {
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}

#main-content section[id] {
    scroll-margin-top: 80px;
}

.content {
    position: absolute;
    top: calc(var(--header-h) + 0.5vh);
    left: 0;
    width: var(--main-w);
    height: calc(100vh - var(--header-h) - var(--footer-h));
    overflow-y: auto;
    z-index: 900;
    background-color: var(--c-bg);
    scrollbar-width: none;
}

.content::-webkit-scrollbar {
    display: none;
}

/* =========================
   Header images
========================= */

.header-logo {
    position: absolute;
    top: 6vh;
    left: 5.2vw;
    /* width: 23vw;
    height: auto; */
    --logo-h: calc(var(--header-h) - 11vh);
    height: var(--logo-h);
    width: calc(var(--logo-h) * (2 / 1.19));
    max-width: 100%;
    object-fit: contain;
    display: block;
    
}

.home-logo {
    position: absolute;
    top: 24vh;
    right: 6.5vw;
    height: 9vh;
    width: auto;
    cursor: pointer;
}

.side-img {
    position: fixed;
    top: 6.7vh;
    right: 4.9vw;
    width: 16.3vw;
    height: auto;
    z-index: 1800;
}

/* =========================
   Nav + Footer buttons
========================= */

.nav-menu,
.footer-btn {
    position: absolute;
    font-family: Arial, sans-serif;
    font-weight: bold;
    color: var(--c-text);
}

.nav-menu {
    display: flex;
    flex-direction: column;
    top: 33.5vh;
    right: 7.8vw;
    text-align: center;
    margin-bottom: 2.4vh !important;
    gap: 8px;
}

/* CLAMP CHANGE:
   - max changed from em to rem for predictability */
.nav-btn {
    font-size: clamp(0.8rem, 1.4vw, 1.9rem);
    cursor: pointer;
    opacity: 1;
    transition: opacity 0.2s ease;
}

.nav-btn.active {
    color: var(--c-accent);
}

.nav-menu:has(.nav-btn:hover) .nav-btn {
    opacity: 0.4;
}

.nav-menu:has(.nav-btn:hover) .nav-btn:hover,
.nav-menu:has(.nav-btn:hover) .nav-btn.active {
    opacity: 1;
}

.footer-btn {
    bottom: 2.1vh;
    text-align: left;
    line-height: 1.2 !important;
    cursor: pointer;
    transition: color 0.2s ease;
}

#ftr-btn-1 {
    left: 5.1vw;
}

#ftr-btn-2 {
    left: 22.5vw;
}

#ftr-btn-3 {
    left: 43.5vw;
}

#ftr-btn-4 {
    left: 63.5vw;
}

.footer-btn:hover,
.footer-btn.active {
    color: var(--c-accent);
}

#footer-btn-group.has-active .footer-btn:not(.active):not(:hover) {
    color: rgba(0, 0, 0, 0.4);
}

#footer-btn-group.has-active .footer-btn:not(.active):hover {
    color: var(--c-text);
}

#footer-btn-group .footer-btn.active,
#footer-btn-group .footer-btn[aria-disabled="true"] {
    pointer-events: none;
}

/* CLAMP CHANGE:
   - max changed from em to rem */
.footer-btn .btn-line1 {
    font-size: clamp(1rem, 1.6vw, 2.8rem);
}

.footer-btn .btn-line2 {
    font-size: clamp(1.5rem, 2.5vw, 4rem);
}

/* =========================
   Sections
========================= */

#about>div, #wayfinder>div, #team>div, #funding>div, #nep>div, #legislation>div {
    padding-right: 4.5rem;
}

section {
    min-height: calc(100vh - var(--header-h) - var(--footer-h));
    height: auto;
    padding: var(--pad-y) var(--pad-x) 8vh;
    background-color: var(--c-bg);
}

/* CLAMP CHANGE:
   - max changed from em to rem */
section>div>p,
.fund-sect {
    font-weight: normal;
    /* font-size: clamp(1.1rem, 1.5vw, 1.6rem); */
}

/* CLAMP CHANGE:
   - max changed from em to rem 
.sect-title {
    font-size: clamp(1.2rem, 1.4vw, 1.9rem);

}
*/

#contact>div>p {
    padding-bottom: 1rem !important;
}

a {
    text-decoration: none;
    color: var(--c-text);
}

a:hover {
    color: var(--c-accent);
}

/* =========================
   Mobile nav icon
========================= */

.navbar-dark .navbar-toggler-icon {
    background-image: none;
}

.navbar-dark .navbar-toggler-icon::after {
    content: "\f0c9";
    font-family: "FontAwesome";
    font-size: 22px;
    color: #333;
}

#mobileNavCollapse,
#navbarToggleExternalContent {
    background-color: var(--c-bg);
}

#mobileNavCollapse .nav-btn,
#navbarToggleExternalContent .nav-btn {
    color: var(--c-text);
}

#mobileNavCollapse .nav-btn:hover,
#mobileNavCollapse .nav-btn.active,
#navbarToggleExternalContent .nav-btn:hover,
#navbarToggleExternalContent .nav-btn.active {
    color: var(--c-accent);
}

.mob-nav {
    font-size: 1rem !important;
}

body.footer-lock #navbarToggleExternalContent .nav-btn,
body.footer-lock #mobileNavCollapse .nav-btn {
    opacity: 0.3;
    pointer-events: none;
    transition: opacity 0.2s ease, pointer-events 0.2s ease;
}

body.footer-lock #navbarToggleExternalContent .nav-btn[data-target="about"],
body.footer-lock #mobileNavCollapse .nav-btn[data-target="about"],
body.footer-lock #navbarToggleExternalContent .nav-home-btn,
body.footer-lock #mobileNavCollapse .nav-home-btn {
    opacity: 1;
    pointer-events: auto;
}

/* =========================
   Team grayscale overlay
========================= */

.team-card-default .img-link {
    position: relative;
    overflow: hidden;
    display: block;
}

.team-card-default .img-link img {
    display: block;
    width: 100%;
    filter: grayscale(100%);
    position: relative;
    z-index: 1;
}

.team-card-default .img-link::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: rgba(236, 158, 108, 0);
    mix-blend-mode: color;
    transition: background-color 0.3s ease;
    pointer-events: none;
    z-index: 2;
}

.team-card-default .img-link:hover::before {
    background-color: rgba(236, 158, 108, 0.7);
}

.member-name {
    font-weight: normal !important;
    /* font-size: clamp(1.1rem, 1.5vw, 1.6rem) !important; */
    margin-bottom: 0;
}

/* =========================
   Category cards
========================= */

.cat-card {
    aspect-ratio: 1 / 1;
    background: #f2f2f2;
}

.cat-card-img {
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
    filter: blur(3px);
}

.cat-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, .6), rgba(0, 0, 0, 1));
    opacity: 0.7;
    transition: opacity 0.25s ease;
}

/* kept (this clamp is already clean and readable)
.cat-card-bottom {
    position: absolute;
    left: .75rem;
    right: .75rem;
    bottom: .75rem;
    font-size: clamp(12px, calc(12px + 0.4vw), 19px);
    line-height: 1.2;
    font-weight: 500;
    letter-spacing: .02em;
    color: #fff;
    text-shadow: 0 1px 1px rgba(0, 0, 0, .4);
    pointer-events: none;
}
*/

.cat-card-center {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    text-align: center;
    pointer-events: none;
}

/* CLAMP CHANGE:
   - unified to ONE clamp curve (no separate >=1800 override)
   - increased max so it can actually grow on large screens */
.cat-card-title {
    color: #fff;
    font-weight: 600;
    line-height: 1.2;
    /* font-size: clamp(18px, calc(6px + 1vw), 26px); */
    font-size: clamp(1rem, calc(1rem + 0.35vw), 1.4rem);
    text-shadow: 0 2px 6px rgba(0, 0, 0, .5);
}

.cat-card:hover .cat-card-img {
    transform: scale(1.1);
}

.cat-card:hover .cat-card-overlay {
    opacity: 0.8;
}

.category-grid-row>[class*="col-"] {
    padding-left: .75rem;
    padding-right: .75rem;
}

/* =========================
   NEP list
========================= */

.nep-list-container {
    padding-left: 0.4rem;
}

.nep-list-item {
    position: relative;
    padding-left: 2.2rem;
    color: var(--c-text);
}

.nep-link {
    color: inherit;
    text-decoration: none;
}

.nep-link:hover {
    text-decoration: underline;
}

.nep-list-item::before {
    content: "•";
    position: absolute;
    /*
    left: 0.1rem;
    top: -2rem;
    font-size: 3rem;
    */
    left: 0.5rem;
    top: -1.6rem;
    font-size: 2.3rem;
    line-height: 2;
    color: currentColor;
    pointer-events: none;
}

.nep-list-item:hover {
    color: var(--c-accent);
}

.nep-static {
    cursor: default;
}

.nep-static:hover {
    color: inherit;
}

/* =========================
   Post page + lightbox
========================= */

.post-page {
    min-height: calc(100vh - var(--header-h) - var(--footer-h));
    height: auto;
    padding: 0.5rem 1vw 4.4vw 5.2vw;
}

.post-breadcrumb {
    z-index: 2;
}

.post-breadcrumb-category {
    font-weight: 400;
}

.post-breadcrumb-title {
    font-weight: 600;
    /* font-size: clamp(1.1rem, 1.5vw, 1.6rem) !important; */
}

.post-meta {
    font-size: 18px;
}

/* keep as in your file’s general intent */
.post-pretitle {
    font-weight: 500;
    /* font-size: clamp(1.1rem, 1.5vw, 1.6rem) !important;*/
}

.post-cover-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    margin: 0 auto;
    transition: transform 0.3s ease, filter 0.3s ease;
}

#post-cover-wrapper {
    overflow: hidden;
}

.post-cover-img:hover {
    transform: scale(0.96);
    filter: saturate(0.6);
    cursor: pointer;
}

/* CLAMP CHANGE:
   - your old one wasn't really fluid (preferred was fixed 1.5rem)
   - max changed to rem (no em) */
.post-description {
    font-weight: normal;
    /* font-size: clamp(1.1rem, 1.5vw, 1.6rem); */
}

.list-unstyled>li>a {
    /* font-size: clamp(1.1rem, 1.5vw, 1.6rem) !important; */
    font-weight: normal;
}

.post-photo-box {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: var(--radius);
}

.post-photo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Lightbox */
.post-lightbox {
    position: fixed;
    inset: 0;
    z-index: 2000;
}

.post-lightbox.d-none {
    display: none;
}

.post-lightbox-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
}

.post-lightbox-body {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 82vw;
    max-width: 90vw;
    max-height: 90vh;
    text-align: center;
    color: #fff;
}

.post-lightbox-image {
    max-width: 100%;
    max-height: 80vh;
    display: block;
    margin: 0 auto;
}

.post-lightbox-caption {
    font-size: 14px;
    opacity: 0.9;
    margin-top: 0.5rem;
}

.post-lightbox-close,
.post-lightbox-prev,
.post-lightbox-next {
    position: absolute;
    background: transparent;
    border: 0;
    color: #fff;
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
}

.post-lightbox.single-image-mode .post-lightbox-prev,
.post-lightbox.single-image-mode .post-lightbox-next {
    display: none;
}

.post-lightbox-close {
    top: -2.5rem;
    right: -0.3rem;
}

.post-lightbox-prev,
.post-lightbox-next {
    top: 50%;
    transform: translateY(-50%);
}

.post-lightbox-prev {
    left: -35px;
}

.post-lightbox-next {
    right: -35px;
}

#post-article {
    margin-bottom: 25vh !important;
}

.post-data-title {
    font-weight: bold;
    font-size: 18px;
}

/* =========================
   Flex helper
========================= */

.flex-item {
    flex: 0 0 50%;
    max-width: 50%;
}

/* =========================
   Breakpoints
========================= */

@media (max-width: 1499px) {
    .cat-card-center {
        align-items: center;
    }
}

@media (max-width: 1200px) {
    .footer-btn {
        bottom: 3vh;
    }

    .header-logo {
        --logo-h: calc(var(--header-h) - 15.5vh);
        height: var(--logo-h);
        width: calc(var(--logo-h) * (2 / 1.19));
    }
}

/* ≤991.98px */
@media (max-width: 991.98px) {
    :root {
        --main-w: 100vw;
        --side-w: 0vw;
        --header-h: 28vh;
        --footer-h: 15vh;
    }

    html,
    body {
        overscroll-behavior: none;
    }

    /* If your main scroll area is a specific wrapper, target it too */
    #main-content,
    .content {
        overscroll-behavior: contain;
        overflow-x: hidden;
    }

    .mobile-nav {
        top: var(--header-h) !important;
    }

    .nav-menu {
        top: calc(var(--header-h) + 50px) !important;
        width: 100%;
        right: 0;
    }

    .mob-menu {
        /* border-bottom: 2px solid var(--c-accent-2) !important; */
        background-image: linear-gradient(to top,
                var(--c-accent-2) 0 2px,
                #fff 2px 4px,
                var(--c-accent-2) 4px 6px,
                #fff 6px 8px,
                var(--c-accent-2) 8px 10px);
        background-repeat: no-repeat;
        background-position: left bottom;
        background-size: 100% 10px;
    }

    .mob-menu>div {
        padding-top: .2rem !important;
        padding-bottom: .2rem !important;
    }

    .sidebar {
        display: none !important;
    }

    .footer {
        width: 100vw;
        left: 0;
        bottom: 0;
        display: flex !important;
        padding: 1rem 0;
        height: auto;
        z-index: 1300;
        background-image: linear-gradient(to bottom,
                var(--c-accent-2) 0 2px,
                #fff 2px 4px,
                var(--c-accent-2) 4px 6px,
                #fff 6px 8px,
                var(--c-accent-2) 8px 10px);
        background-repeat: no-repeat;
        background-position: left top;
        background-size: 100% 10px;
    }

    .footer-btn {
        position: static !important;
        width: 50%;
        max-width: 50%;
        text-align: center;
        margin: 0.4rem 0;
    }

    .content {
        top: calc(var(--header-h) + 54px);
        width: 100vw;
        height: calc(100vh - var(--header-h) - 54px - var(--footer-h));
    }

    section {
        min-height: calc(100vh - var(--header-h) - 54px - var(--footer-h));
    }

    .header-logo {
        --logo-h: calc(var(--header-h) - 4vh);
        /* width: 35vw; */
        height: var(--logo-h);
        top: 2.5vh;
        left: 5.2vw;
    }

    .home-logo {
        display: none !important;
    }

    .side-img {
        --sun-h: calc(var(--header-h) - 5vh);
        position: absolute !important;
        /* top: 1rem !important;
        right: 1rem !important;
        width: 30vw !important; */
        top: 5.5vh;
        right: 5.2vw;
        height: var(--sun-h);
        /* width: 28vw; */
        width: calc(var(--sun-h)* (1.29 / 1));
        max-width: 100%;
        object-fit: contain;
        display: block;
        z-index: 1300;
    }

    /*
    .mobile-nav {
        top: 24vh !important;
    }
    */

    .cat-card-center {
        align-items: center;
    }

    #about>div,
    #wayfinder>div,
    #team>div,
    #funding>div,
    #nep>div,
    #legislation>div {
        padding-right: 0;
    }

    #post-breadcrumb-post-title,
    .post-breadcrumb-category {
        font-size: 18px !important;
        line-height: 12px !important;
    }

    .post-page {
        padding: 0.5rem 5vw 4.4vw 5vw;
    }

}

/* ≤768px */
@media (max-width: 768px) {

    :root {
    --header-h: 24vh;
    }

    .header-logo {
        /* width: 18vw; */
        height: var(--header-h);
        width: calc(var(--header-h) * (1 / 1.19));
        z-index: 20;
    }

    /* .side-img {
        width: 24vw !important;
        top: 5.5vh !important;
    } */

    .nav-menu {
        top: calc(var(--header-h) + 50px) !important;
        width: 100%;
        right: 0;
    }

    .content {
        top: calc(var(--header-h) + 54px) !important;
        /* height: calc(100vh - var(--header-h) - 54px - var(--footer-h)) !important; */
        height: calc(100vh - var(--header-h) - 54px) !important;
    }

    /* Disable hover dimming on touch screens */
    .nav-menu:has(.nav-btn:hover) .nav-btn {
        opacity: 1 !important;
    }

    .footer {
        /* border-top: 2px solid var(--c-accent-2) !important; */       
    }

    .footer-btn {
        width: 100% !important;
        max-width: 100% !important;
    }

    #footer-btn-group.has-active .footer-btn:not(.active):not(:hover) {
        color: rgba(0, 0, 0, 1);
    }

    .post-page {
        padding: 0.5rem 4vw 4vw;
    }

    .list-unstyled>li>a,
    .post-meta {
        font-size: 18px;
    }

    #post-breadcrumb-post-title,
    .post-breadcrumb-category {
        font-size: 18px !important;
        line-height: 12px !important;
    }

    .cat-card-center {
        align-items: center;
    }


    /* footer hide mobile */

        #footer-btn-group {
            position: fixed;
            left: 0;
            right: 0;
            bottom: 0;
            transform: translateY(0);
            transition: transform 350ms ease;
            z-index: 1050;
            will-change: transform;
        }
    
        body.footer-hidden #footer-btn-group {
            transform: translateY(calc(var(--footer-h) * 2)) !important;
        }

        #main-content {
            padding-bottom: var(--footer-h);
        }

    /* ------------------ */
}

/* ≤576px */
@media (max-width: 576px) {

    :root {
        --header-h: 22vh;
    }

    .header-logo {
        /* height: 38vw; */
        /* height: calc(var(--header-h)- 4vh);  */
        z-index: 20;
        /* width: auto; */
    }

    .side-img {
        /* width: 39vw !important; */
        --sideimg-h: calc(var(--header-h) - 6vh);
        height: var(--sideimg-h);
        width: calc(var(--sideimg-h) * (1.29 / 1));
        /* top: 1.4rem !important; */
    }

    .nav-menu {
        top: calc(var(--header-h) + 50px) !important;
        width: 100%;
        right: 0;
    }
       
    .cat-card-center {
        align-items: center;
    }
}

/* ≤375px */
@media (max-width: 375px) {
    :root {
        --header-h: 16vh;
        --footer-h: 12vh;
    }

    .header {
        position: relative;
        width: 100vw;
        height: var(--header-h);
    }

    .mobile-nav {
        /* top: 16vh !important; */
        top: var(--header-h) !important;
    }

    .nav-menu {
        top: calc(var(--header-h) + 50px) !important;
        width: 100%;
        right: 0;
    }

    .header-logo {
        /* width: 30vw; */
        /* height: calc(var(--header-h)- 4vh); */
        /* top: 1rem;
        left: 1rem; */
        top: 1.7vh;
        left: 4vw;
        z-index: 20;
    }

    .side-img {
        /* width: 38vw !important; */
        height: calc(var(--header-h) - 4vh);
        width: calc(var(--header-h) + 0vh * (1.29 / 1));
        /* top: 1.3rem !important;
        right: 1rem !important; */
        top: 3.7vh !important;
        right: 3vw !important;
    }

    .content {
        top: calc(var(--header-h) + 54px) !important;
        /* height: calc(100vh - var(--header-h) - 54px - var(--footer-h)) !important; */
        height: calc(100vh - var(--header-h) - 54px) !important;
    }

    .footer {
        padding: 0.8rem 0 0.5rem 0 !important;
    }

    section {
        min-height: calc(100vh - var(--header-h) - var(--footer-h));
        padding: 2rem 5vw 4vh !important;
    }

    .custom-col {
        margin: 0 26px !important;
    }

    .mobile-nav {
        top: 16vh;
    }

    .cat-card-center {
        align-items: center;
    }
}

@media (min-width: 2300px) {
    .nav-menu {
        right: 8vw;
    }

    .side-img {
        width: 375px;
        height: auto;
    }
}

/* ≥1500px */
@media (min-width: 1400px) {
    .header-logo {
        --logo-h: calc(var(--header-h) - 15.5vh);
        height: var(--logo-h);
        width: calc(var(--logo-h) * (2 / 1.19));
    }
}

@media (min-width: 1200px) {
    .header-logo {
    --logo-h: calc(var(--header-h) - 12vh);
        height: var(--logo-h);
        width: calc(var(--logo-h) * (2 / 1.19));
    }

    .custom-row {
        width: 100% !important;
        /* padding-right: 2vw !important; */
        gap: 0 !important;
    }

    .custom-col {
        /* width: calc((100% - 4 * 0.1vw) / 5); */
        width: calc(100% / 5);
    }
}

/* ≥992px */
@media (min-width: 992px) {
    .flex-item {
        flex: 0 0 25%;
        max-width: 25%;
    }
}

@media (min-width: 992px) and (max-width: 1980px) and (min-height: 500px) and (max-height: 1100px) {
    .nav-menu {
            top: 37vh !important;
    }
    .nav-btn {
        margin-top: 0.3rem !important;
        margin-bottom: 0.2rem !important;
    }

    .header-logo {
        /* width: 21.3vw; */
        /* height: calc(var(--header-h)- 4vh); */
    }

    .footer-btn {
        bottom: 1.9vh;
    }

    .side-img {
        top: 6vh;
        right: 5.5vw;
        width: 15.2vw;
    }

    .cat-card-title {
        /* font-size: clamp(1rem, 1.2vw, 1.6rem); */
        font-size: clamp(0.9rem, calc(0.9rem + 0.2vw), 1.4rem);
    }

    /*
    .cat-card-bottom {
        font-size: clamp(1rem, 1vw, 1.3rem);
    }
    */

    .cat-card-center {
        align-items: center;
    }

    .post-breadcrumb-category, .post-pretitle, .post-description, .post-data-title{
        /*font-size: clamp(1.1rem, 1.5vw, 1.6rem) !important; */
        font-size: clamp(1rem, calc(1rem + 0.3vw), 1.5rem) !important;
    }
}

section>div>p, .sect-title, .fund-sect, .list-unstyled>li>a, .post-description, .post-pretitle, .post-breadcrumb-title {
    font-size: clamp(1.1rem, calc(1rem + 0.2vw), 1.5rem) !important;
}

.member-name {
    font-size: clamp(1rem, calc(1rem + 0.1vw), 1.2rem) !important;
}