@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600&family=Manrope:wght@500;600;700&display=swap');


/* =========================================================
   VARIABLES + GENERAL
   ========================================================= */

:root {
    --bg: #f6f5f1;
    --ink: #151515;
    --muted: #696762;
    --line: #d8d5cd;
    --violet: #7440df;
    --deep: #271943;
    --soft: #eee8fa;
    --paper: #fff;
    --pink: #d96672;
    --max: 1160px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--ink);
    font-family: "DM Sans", sans-serif;
    line-height: 1.58;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    color: inherit;
}

.wrap {
    width: min(calc(100% - 40px), var(--max));
    margin: auto;
}

/* =========================================================
   HEADER + NAVIGATION
   ========================================================= */

.header {
    width: 100%;
    height: 82px;

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

    padding: 0 max(20px, calc((100% - var(--max)) / 2));

    position: sticky;
    top: 0;
    z-index: 1000;

    background: rgba(246, 245, 241, 0.96);

    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    border-bottom: 1px solid var(--line);
}


/* FemmunityX logo */

.group-logo {
    display: flex;
    align-items: center;

    flex: 0 0 auto;

    text-decoration: none;
}

.group-logo img {
    display: block;

    width: auto;
    height: 44px;

    max-width: 170px;

    object-fit: contain;
}


/* Navigation */

.header nav {
    display: flex;
    align-items: center;
    gap: 28px;

    margin-left: auto;
}

.header nav a {
    text-decoration: none;

    font-size: 0.88rem;
    font-weight: 500;

    color: var(--ink);

    transition: color 0.2s ease;
}

.header nav a:hover {
    color: var(--violet);
}


/* Mobile menu button */

.menu {
    display: none;

    border: 0;
    background: transparent;

    color: var(--ink);

    font-family: "DM Sans", sans-serif;
    font-size: 0.88rem;
    font-weight: 600;

    cursor: pointer;
}

/* =========================================================
   LANGUAGE SWITCH
   ========================================================= */

.language-switch {
    display: flex;
    align-items: center;
    gap: 6px;

    margin-left: 16px;
    padding-left: 16px;

    border-left: 1px solid var(--line);

    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.08em;
}

.language-switch a {
    color: var(--muted);
    text-decoration: none;
}

.language-switch a:hover {
    color: var(--violet);
}

.language-switch a.active {
    color: var(--ink);
    font-weight: 700;
}

.language-switch span {
    color: var(--line);
}


/* =========================================================
   TYPOGRAPHY
   ========================================================= */

.overline {
    margin: 0 0 20px;
    font-size: 0.72rem;
    letter-spacing: 0.17em;
    font-weight: 600;
    color: var(--violet);
}

.light {
    color: #c7b3f0;
}

.pink {
    color: var(--pink);
}

h1,
h2,
h3 {
    font-family: "Manrope", sans-serif;
    letter-spacing: -0.055em;
    line-height: 1.02;
}


/* FEMMUNITYX · BONN */

.femmunity-title {
    color: #151515;
}

.femmunity-title .purple-x {
    color: #7440df;
    font-size: 26px;
    font-weight: 700;
    display: inline-block;
    margin-left: 1px;
    margin-right: 3px;
    vertical-align: -3px;
}


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

.hero {
    min-height: 80vh;
    padding: 90px 0 110px;

    display: grid;
    grid-template-columns: 1fr 0.9fr;
    gap: 70px;

    align-items: center;
}

.hero h1 {
    font-size: clamp(4rem, 8vw, 7.5rem);
    margin: 0;
}

.subhead {
    font-size: clamp(1.35rem, 2.2vw, 1.9rem);
    max-width: 650px;
    margin: 28px 0 14px;
}

.intro {
    max-width: 630px;
    color: var(--muted);
    font-size: 1.05rem;
}

.cta {
    display: inline-flex;
    gap: 16px;

    margin-top: 28px;

    text-decoration: none;
    font-weight: 600;

    border-bottom: 1px solid;
    padding-bottom: 5px;
}


/* =========================================================
   HERO — MAPPING FEMALE IMMUNITY
   ========================================================= */


/* ---------------------------------------------------------
   MAIN MAP CONTAINER
   --------------------------------------------------------- */

.map {
    height: 550px;
    position: relative;

    border-radius: 30px;

    background: #ebe9e3;

    overflow: hidden;

    /* Creates a clean stacking context */
    isolation: isolate;
}


/* ---------------------------------------------------------
   MOVING PURPLE GLOW
   --------------------------------------------------------- */

.map::before {
    content: "";

    position: absolute;

    width: 70%;
    height: 70%;

    left: 15%;
    top: 15%;

    border-radius: 50%;

    background: radial-gradient(
        circle,
        rgba(116, 64, 223, 0.22) 0%,
        rgba(116, 64, 223, 0.14) 30%,
        rgba(116, 64, 223, 0.07) 50%,
        rgba(116, 64, 223, 0.03) 62%,
        transparent 75%
    );

    filter: blur(20px);

    z-index: 0;

    pointer-events: none;

    animation: movePurpleGlow 16s ease-in-out infinite;
}


/* Purple glow movement */

@keyframes movePurpleGlow {

    0% {
        transform: translate(-18%, -12%) scale(1);
    }

    20% {
        transform: translate(12%, -15%) scale(1.06);
    }

    40% {
        transform: translate(22%, 8%) scale(1);
    }

    60% {
        transform: translate(10%, 22%) scale(1.08);
    }

    80% {
        transform: translate(-20%, 15%) scale(1.03);
    }

    100% {
        transform: translate(-18%, -12%) scale(1);
    }
}


/* ---------------------------------------------------------
   CONCENTRIC RINGS
   --------------------------------------------------------- */

.ring {
    position: absolute;

    left: 50%;
    top: 50%;

    transform: translate(-50%, -50%);

    border: 1px solid rgba(116, 64, 223, 0.18);
    border-radius: 50%;

    z-index: 1;
}

.r1 {
    width: 42%;
    aspect-ratio: 1;
}

.r2 {
    width: 67%;
    aspect-ratio: 1;
}

.r3 {
    width: 90%;
    aspect-ratio: 1;
}


/* ---------------------------------------------------------
   SWIRLY LINES + DOTS
   --------------------------------------------------------- */

.map svg {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    z-index: 2;

    pointer-events: none;
}

.curve {
    fill: none;

    stroke: rgba(116, 64, 223, 0.25);

    stroke-width: 2;
}

.curve.b {
    stroke: rgba(20, 20, 20, 0.12);

    stroke-width: 1.4;
}


/* Purple outlined dots */

.map svg circle {
    fill: var(--bg);

    stroke: var(--violet);

    stroke-width: 2;
}


/* ---------------------------------------------------------
   CENTRAL CIRCLE
   --------------------------------------------------------- */

.core {
    position: absolute;

    left: 50%;
    top: 50%;

    transform: translate(-50%, -50%);

    width: 145px;
    height: 145px;

    border-radius: 50%;

    background: var(--ink);
    color: white;

    display: grid;
    place-content: center;

    text-align: center;

    z-index: 4;
}

.core small {
    font-size: 0.62rem;

    letter-spacing: 0.16em;

    line-height: 1.2;

    margin-bottom: 6px;
}

.core strong {
    font-size: 1.05rem;

    line-height: 1.25;
}


/* ---------------------------------------------------------
   FACTOR LABELS
   --------------------------------------------------------- */

.node {
    position: absolute;

    background: rgba(255, 255, 255, 0.95);

    border: 1px solid rgba(0, 0, 0, 0.08);

    border-radius: 999px;

    padding: 9px 14px;

    font-size: 0.82rem;
    font-weight: 600;

    z-index: 4;
}


/* Hormones */

.n1 {
    left: 8%;
    top: 17%;
}


/* Metabolism */

.n2 {
    right: 6%;
    top: 23%;
}


/* Environment */

.n3 {
    left: 6%;
    bottom: 17%;
}


/* Time */

.n4 {
    right: 17%;
    bottom: 12%;
}


/* Tissue */

.n5 {
    right: 2%;
    top: 52%;
}


/* ---------------------------------------------------------
   ACCESSIBILITY — REDUCE MOTION
   --------------------------------------------------------- */

@media (prefers-reduced-motion: reduce) {

    .map::before {
        animation: none;

        transform: translate(0, 10%) scale(1.05);
    }
}

/* =========================================================
   VISION
   ========================================================= */

.vision {
    background: var(--deep);
    color: white;

    padding: 110px 0;
}

.vision-grid {
    display: grid;
    grid-template-columns: 0.35fr 1fr;
    gap: 70px;
}

.vision h2,
.framework h2,
.study h2,
.bridge h2,
.research h2,
.methods h2,
.pubs h2,
.people h2,
.join h2 {
    font-size: clamp(2.8rem, 5vw, 5rem);
    margin: 0;
}

.vision .big {
    font-size: clamp(1.5rem, 2.5vw, 2.2rem);
    line-height: 1.3;

    max-width: 850px;

    color: #eee8fa;
}

.vision .small {
    max-width: 760px;

    color: #bdb4cb;

    font-size: 1.08rem;
}


/* =========================================================
   RESEARCH FRAMEWORK
   ========================================================= */

.framework {
    padding: 120px 0;
}

.framework-head {
    display: grid;
    grid-template-columns: 0.55fr 1fr;
    gap: 60px;

    align-items: end;

    margin-bottom: 70px;
}

.dimensions {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
}

.dimensions article {
    border-top: 2px solid var(--ink);

    padding: 24px 12px 20px 0;
}

.dimensions b {
    color: var(--violet);
    font-size: 0.8rem;
}

.dimensions h3 {
    font-size: 1.2rem;
    margin: 34px 0 8px;
}

.dimensions p {
    color: var(--muted);
    font-size: 0.9rem;
}


/* =========================================================
   FEMMUNITY STUDY
   ========================================================= */

.study {
    padding: 120px 0;
    border-top: 1px solid var(--line);
}

.study-head {
    display: grid;
    grid-template-columns: 0.7fr 1.3fr;
    gap: 70px;
}

.fem-logo {
    display: block;

    width: auto;
    height: 160px;

    max-width: 500px;

    object-fit: contain;
    object-position: left center;
}

.study-head > div:last-child p {
    font-size: 1.12rem;
    color: var(--muted);

    max-width: 700px;
}


/* JOIN FEMMUNITY BUTTON */

.femmunity-join {
    display: inline-flex;
    align-items: center;

    margin-top: 22px;

    padding: 12px 20px;

    background: var(--violet);
    color: white;

    border-radius: 999px;

    text-decoration: none;

    font-size: 0.9rem;
    font-weight: 600;

    transition:
        transform 0.2s ease,
        background 0.2s ease;
}

.femmunity-join:hover {
    background: var(--deep);
    transform: translateY(-2px);
}

.femmunity-phone {
    margin-top: 16px;
    font-size: 0.9rem;
    color: var(--muted);
}

.femmunity-phone a {
    color: var(--ink);
    text-decoration: none;
    font-weight: 600;
}

.femmunity-phone a:hover {
    color: var(--violet);
}


/* =========================================================
   FEMMUNITY — CIRCULATION TO TISSUE
   ========================================================= */
.progress {
    width: 100%;
    margin: 70px 0 28px;

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

    gap: 22px;

    font-size: 0.64rem;
    font-weight: 600;
    letter-spacing: 0.14em;

    color: var(--muted);
}


/* LEFT + RIGHT LABELS */

.progress > span {
    flex: 0 0 auto;
    white-space: nowrap;
}


/* CENTRAL JOURNEY LINE */

.progress > div {
    position: relative;

    flex: 1 1 auto;
    max-width: 520px;
    height: 22px;

    display: flex;
    align-items: center;
    justify-content: space-around;
}


/* COLORED LINE */

.progress > div::before {
    content: "";

    position: absolute;

    left: 0;
    right: 0;
    top: 50%;

    height: 2px;

    transform: translateY(-50%);

    background: linear-gradient(
        90deg,
        #e78b00 0%,
        #d96672 50%,
        #7440df 100%
    );
}


/* THREE PROJECT DOTS */

.progress i {
    position: relative;
    z-index: 2;

    display: block;

    width: 10px;
    height: 10px;

    background: var(--bg);

    border: 2px solid var(--violet);
    border-radius: 50%;
}

.progress i:nth-child(1) {
    border-color: #e78b00;
}

.progress i:nth-child(2) {
    border-color: #d96672;
}

.progress i:nth-child(3) {
    border-color: #7440df;
}


/* =========================================================
   FEMMUNITY PROJECTS
   ========================================================= */

.project-row {
    width: 100%;

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

    gap: 16px;
}

.project {
    background: var(--paper);

    border: 1px solid var(--line);
    border-radius: 22px;

    padding: 25px;
}

.logo-box {
    height: 170px;

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

    padding: 15px;

    margin-bottom: 22px;
}

.logo-box img {
    display: block;

    width: auto;
    height: auto;

    max-width: 100%;

    object-fit: contain;
}

.orange .logo-box img,
.red .logo-box img {
    max-height: 110px;
}

.purple .logo-box img {
    max-height: 128px;
}

.step {
    font-size: 0.68rem;
    letter-spacing: 0.12em;

    font-weight: 600;
}

.orange .step {
    color: #e78b00;
}

.red .step {
    color: #c93932;
}

.purple .step {
    color: #7650a2;
}

.project h3 {
    font-size: 1.55rem;
    margin: 12px 0;
}

.project > p:last-child {
    color: var(--muted);
    font-size: 0.95rem;
}


/* =========================================================
   VISION / INTEGRATION BRIDGE
   ========================================================= */

.bridge {
    background: #181818;
    color: white;

    padding: 110px 0;
}

.bridge-grid {
    display: grid;
    grid-template-columns: 0.7fr 1.3fr;

    gap: 80px;

    align-items: center;
}

.bridge p:last-child {
    color: #bcbcbc;

    font-size: 1.12rem;

    max-width: 700px;
}

.bridge-map {
    height: 350px;
    position: relative;
}

.br {
    position: absolute;

    left: 50%;
    top: 50%;

    transform: translate(-50%, -50%);

    border: 1px solid rgba(174, 137, 239, 0.35);
    border-radius: 50%;
}

.br1 {
    width: 130px;
    height: 130px;
}

.br2 {
    width: 230px;
    height: 230px;
}

.br3 {
    width: 330px;
    height: 330px;
}

.bc {
    position: absolute;

    left: 50%;
    top: 50%;

    transform: translate(-50%, -50%);

    width: 100px;
    height: 100px;

    border-radius: 50%;

    background: var(--violet);

    display: grid;
    place-items: center;

    font-size: 0.7rem;
    letter-spacing: 0.12em;

    font-weight: 600;
}

.bd {
    position: absolute;

    width: 12px;
    height: 12px;

    background: white;

    border-radius: 50%;
}

.bd.d1 {
    left: 15%;
    top: 40%;
}

.bd.d2 {
    right: 12%;
    top: 27%;
}

.bd.d3 {
    right: 20%;
    bottom: 17%;
}


/* =========================================================
   BROADER RESEARCH
   ========================================================= */

.research {
    padding: 120px 0;
}

.research-head {
    max-width: 850px;
    margin-bottom: 60px;
}

.research-items {
    border-top: 1px solid var(--line);
}

.research-items article {
    display: grid;
    grid-template-columns: 0.35fr 0.85fr 1fr;

    gap: 30px;

    padding: 34px 0;

    border-bottom: 1px solid var(--line);
}

.label {
    color: var(--violet);
    font-weight: 600;
}

.research-items h3 {
    font-size: 1.6rem;
    margin: 0;
}

.research-items p:last-child {
    margin: 0;
    color: var(--muted);
}


/* =========================================================
   METHODS
   ========================================================= */

.methods {
    padding: 100px 0;

    border-top: 1px solid var(--line);
}

.methods h2 {
    max-width: 900px;
}

.method-line {
    display: grid;
    grid-template-columns: repeat(4, 1fr);

    gap: 10px;

    margin-top: 60px;
}

.method-line span {
    border-top: 2px solid var(--ink);

    padding-top: 18px;

    font-weight: 600;
}


/* =========================================================
   PUBLICATIONS
   ========================================================= */

.pubs {
    padding: 110px 0;

    border-top: 1px solid var(--line);

    display: grid;
    grid-template-columns: 0.5fr 1.5fr;

    gap: 70px;
}

.pubs article {
    border-top: 1px solid var(--line);

    padding-top: 25px;
}

.pubs article span {
    font-size: 0.82rem;

    color: var(--violet);

    font-weight: 600;
}

.pubs article h3 {
    font-size: 1.65rem;
}

.pubs article p {
    color: var(--muted);

    max-width: 700px;
}

.pubs article a {
    text-decoration: none;
    font-weight: 600;
}


/* =========================================================
   PEOPLE
   ========================================================= */

.people {
    padding: 110px 0;

    border-top: 1px solid var(--line);

    display: grid;
    grid-template-columns: 0.5fr 1.5fr;

    gap: 70px;
}

.people-intro {
    max-width: 430px;
    margin: 22px 0 0;

    color: var(--muted);

    font-size: 1rem;
    line-height: 1.65;
}

.people-intro + .people-intro {
    margin-top: 12px;
}

.people-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));

    gap: 28px;

    align-items: start;
}

.people-grid article {
    min-width: 0;
}


/* TEAM PHOTOS */

.portrait {
    width: 100%;

    aspect-ratio: 600 / 650;

    object-fit: cover;

    border-radius: 18px;

    display: block;

    margin-bottom: 18px;
}


/* NAMES */

.people-grid h3 {
    margin: 0 0 4px;

    font-size: 1.15rem;
    line-height: 1.25;
}


/* ROLE */

.people-grid article > span {
    display: block;

    margin-bottom: 10px;

    font-size: 0.88rem;
    font-weight: 500;

    color: var(--ink);
}


/* RESEARCH INTERESTS */

.people-grid article > p {
    margin: 0;

    color: var(--muted);

    font-size: 0.88rem;
    line-height: 1.5;
}


/* =========================================================
   JOIN
   ========================================================= */

.join {
    margin-top: 30px;
    margin-bottom: 100px;

    padding: 70px;

    background: var(--soft);

    border-radius: 28px;
}

.join p:not(.overline) {
    max-width: 700px;

    color: #514663;

    font-size: 1.08rem;
}

.join a {
    display: inline-block;

    margin-top: 12px;

    background: var(--ink);
    color: white;

    padding: 12px 19px;

    border-radius: 999px;

    text-decoration: none;
    font-weight: 600;
}


/* =========================================================
   FOOTER
   ========================================================= */

.footer {
    padding: 50px 0;
    border-top: 1px solid var(--line);

    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 40px;
    align-items: center;

    color: var(--muted);
    font-size: 0.82rem;
}


/* Footer logos */

.footer-logos {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-shrink: 0;
}

.footer-logos img {
    display: block;
    width: auto;
    object-fit: contain;
}


/* Individual logo sizes */

.footer-logos .logo-femmunity {
    height: 42px;
}

.footer-logos .logo-dzne {
    height: 42px;
}

.footer-logos .logo-bonn {
    height: 38px;
}

.footer-logos .logo-immuno {
    height: 42px;
}

/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 880px) {

    /* HEADER */

    .header {
        height: 76px;
    }

    .group-logo img {
        height: 34px;
        max-width: 145px;
    }


    /* NAVIGATION */

    .menu {
        display: block;
        margin-left: auto;
    }

    .header nav {
        display: none;

        position: absolute;

        top: 76px;
        left: 20px;
        right: 20px;

        margin: 0;

        padding: 20px;

        background: rgba(246, 245, 241, 0.98);

        border: 1px solid var(--line);
        border-radius: 15px;

        flex-direction: column;
        align-items: flex-start;

        gap: 15px;

        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
    }

    .header nav.open {
        display: flex;
    }

    .header nav a {
        width: 100%;
        font-size: 0.95rem;
    }


    /* MAIN LAYOUT */

    .hero,
    .vision-grid,
    .framework-head,
    .study-head,
    .bridge-grid,
    .pubs,
    .people {
        grid-template-columns: 1fr;
    }

    .hero {
        padding-top: 65px;
    }

    .map {
        height: 430px;
    }

    .dimensions {
        grid-template-columns: repeat(2, 1fr);
    }

   .progress {
    margin-top: 55px;
    gap: 14px;
}

.progress > div {
    max-width: 360px;
}

    .project-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

    .research-items article {
        grid-template-columns: 1fr;
    }

    .method-line {
        grid-template-columns: repeat(2, 1fr);
    }


    /* PEOPLE */

    .people-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 32px 24px;
    }


    /* FEMMUNITY STUDY LOGO */

    .fem-logo {
        height: 120px;
        max-width: 90%;
    }

    .logo-box {
        height: 150px;
    }


    /* FOOTER */

.footer {
    grid-template-columns: 1fr;
    gap: 22px;
    align-items: start;
}

.footer-logos {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
}

.footer-logos .logo-femmunity {
    height: 40px;
}

.footer-logos .logo-dzne {
    height: 40px;
}

.footer-logos .logo-bonn {
    height: 36px;
}

.footer-logos .logo-immuno {
    height: 40px;
}

}

/* =========================================================
   PHONE
   ========================================================= */

@media (max-width: 520px) {

    .wrap {
        width: min(calc(100% - 24px), var(--max));
    }


    /* HEADER */

    .header {
        height: 68px;

        padding-left: 14px;
        padding-right: 14px;
    }

    .group-logo img {
        height: 31px;
        max-width: 135px;
    }

    .header nav {
        top: 68px;

        left: 12px;
        right: 12px;
    }


    /* HERO */

    .hero h1 {
        font-size: 3.65rem;
    }

    .hero {
        min-height: auto;
    }

    .map {
        height: 340px;
    }

    .node {
        font-size: 0.68rem;
        padding: 7px 9px;
    }

    .core {
        width: 115px;
        height: 115px;
    }


    /* SECTIONS */

    .vision,
    .framework,
    .study,
    .bridge,
    .research,
    .methods,
    .pubs,
    .people {
        padding-top: 75px;
        padding-bottom: 75px;
    }

    .dimensions {
        grid-template-columns: 1fr;
    }

   .project-row {
    grid-template-columns: 1fr;
}

    .progress {
    margin: 45px 0 24px;
    gap: 9px;

    font-size: 0.5rem;
    letter-spacing: 0.09em;
}

.progress > span {
    white-space: nowrap;
}

.progress > div {
    min-width: 100px;
    max-width: none;
}

    .method-line {
        grid-template-columns: 1fr;
    }


    /* PEOPLE */

    .people-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .people-grid article {
        max-width: 360px;
    }


    /* FEMMUNITY STUDY LOGO */

    .fem-logo {
        height: 110px;
        max-width: 90%;
    }


    /* JOIN */

    .join {
        padding: 42px 24px;
    }


    /* FOOTER */

.footer {
    grid-template-columns: 1fr;
    gap: 20px;
}

.footer-logos {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px;
}

.footer-logos .logo-femmunity {
    height: 34px;
}

.footer-logos .logo-dzne {
    height: 34px;
}

.footer-logos .logo-bonn {
    height: 31px;
}

.footer-logos .logo-immuno {
    height: 34px;
}
}

/* =========================================================
   FIX FEMMUNITY PROJECT LAYOUT
   ========================================================= */

.femmunity-projects {
    width: 100% !important;
    display: block !important;
    grid-column: 1 / -1 !important;
    clear: both !important;
    margin-top: 70px;
}

.femmunity-projects .progress {
    width: 100% !important;

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

    gap: 24px;

    margin: 0 0 32px 0 !important;
}

.femmunity-projects .progress > span {
    white-space: nowrap;
    flex: 0 0 auto;
}

.femmunity-projects .progress > div {
    position: relative;

    width: 420px;
    max-width: 45vw;
    height: 20px;

    display: flex;
    align-items: center;
    justify-content: space-around;
}

.femmunity-projects .project-row {
    width: 100% !important;

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

    gap: 16px;
}

.femmunity-projects .progress > span {
    font-size: 0.78rem !important;
    font-weight: 600;
    letter-spacing: 0.14em;
    white-space: nowrap;
}
