/* =========================================================
   NASSLB - COMMUNITY DETAIL PAGES
   Infographic Style - No Phone Mockup
========================================================= */

.community-detail-page {
    --blue: #173a56;
    --blue-2: #245d7d;
    --orange: #f3a84f;
    --orange-soft: #fff3e4;
    --soft: #f7f9fc;
    --soft-blue: #eef6fa;
    --text: #294358;
    --muted: #6d7f8e;
    --border: rgba(23, 58, 86, 0.10);
    --shadow: 0 18px 50px rgba(23, 58, 86, 0.09);

    background: #fff;
}

/* English uses the exact community-page design with mirrored reading flow. */
html[dir="ltr"] .community-detail-page {
    direction: ltr;
    text-align: left;
}

html[dir="ltr"] .community-detail-page :where(
    h1, h2, h3, h4, h5, h6,
    p, li, dt, dd, blockquote, label
) {
    direction: ltr;
    text-align: left;
}

html[dir="ltr"] .community-list,
html[dir="ltr"] .community-detail-page ul:not([class*="nav"]) {
    padding-right: 0;
    padding-left: 22px;
}

html[dir="ltr"] .community-lead-card,
html[dir="ltr"] .neighbourhood-intro-card,
html[dir="ltr"] .neighbourhood-highlight-text,
html[dir="ltr"] .trust-new-intro,
html[dir="ltr"] .club-new-intro,
html[dir="ltr"] .club-new-highlight {
    border-right: 0;
    border-left: 4px solid var(--orange);
}

html[dir="ltr"] .community-lead-card {
    border-left-width: 3px;
}

@media (max-width: 760px) {
    html[dir="ltr"] .neighbourhood-feature-strip article,
    html[dir="ltr"] .trust-new-questions div,
    html[dir="ltr"] .club-new-process div,
    html[dir="ltr"] .club-new-member-flow article {
        text-align: left;
    }
}


.community-detail-page * {
    box-sizing: border-box;
}


.community-detail-page .container {
    width: min(1180px, calc(100% - 40px));
    margin-inline: auto;
}


.community-detail-page img {
    max-width: 100%;
}


.community-detail-page a {
    text-decoration: none;
}



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

.community-detail-hero {
    padding: 46px 0 58px;
}


.community-detail-hero__box {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;

    min-height: 520px;

    overflow: hidden;

    border: 1px solid var(--border);
    border-radius: 30px;

    background:
        linear-gradient(
            135deg,
            #f7fbfd 0%,
            #fff8ef 100%
        );

    box-shadow: var(--shadow);
}


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

.community-detail-hero__visual {
    position: relative;

    min-height: 520px;

    overflow: hidden;
}


.community-detail-hero__visual > img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
    object-position: center;
}


.community-detail-hero__visual::after {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            270deg,
            rgba(255, 255, 255, 0.95) 0%,
            rgba(255, 255, 255, 0.22) 25%,
            transparent 55%
        );

    pointer-events: none;
}


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

.community-detail-hero__content {
    position: relative;
    z-index: 2;

    display: flex;
    flex-direction: column;
    justify-content: center;

    padding: 58px 55px;
}


.community-badge {
    display: inline-flex;

    width: max-content;
    max-width: 100%;

    padding: 9px 18px;

    border-radius: 999px;

    background: var(--orange);

    color: var(--blue);

    font-size: 14px;
    font-weight: 800;
    line-height: 1.6;
}


.community-detail-hero h1 {
    margin: 18px 0 2px;

    color: var(--blue);

    font-size: clamp(42px, 5vw, 64px);
    font-weight: 800;
    line-height: 1.25;
}


.community-en {
    display: block;

    margin-bottom: 22px;

    color: #2d63a6;

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


.community-lead-card {
    padding: 23px 25px;

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

    border: 1px solid var(--border);
    border-right: 3px solid var(--orange);
    border-radius: 20px;

    box-shadow:
        0 10px 30px
        rgba(23, 58, 86, 0.06);
}


.community-lead-card p {
    margin: 0;

    color: var(--text);

    font-size: 16px;
    line-height: 2;
}


.community-lead-card p + p {
    margin-top: 12px;
}



/* =========================================================
   SECTIONS
========================================================= */

.community-block {
    padding: 76px 0;
}


.community-block--soft {
    background:
        linear-gradient(
            180deg,
            #f9fbfd 0%,
            #f5f8fb 100%
        );
}


.community-heading {
    max-width: 850px;

    margin: 0 auto 42px;

    text-align: center;
}


.community-heading h2,
.community-copy h2 {
    margin: 0 0 14px;

    color: var(--blue);

    font-size: clamp(30px, 4vw, 43px);
    font-weight: 800;
    line-height: 1.45;
}


.community-heading h2::after {
    content: "";

    display: block;

    width: 66px;
    height: 3px;

    margin: 14px auto 0;

    border-radius: 10px;

    background: var(--orange);
}


.community-heading p {
    margin: 14px 0 0;

    color: var(--muted);

    font-size: 16px;
    line-height: 2;
}


.community-copy h3 {
    margin: 28px 0 8px;

    color: var(--blue);

    font-size: 22px;
}


.community-copy p,
.community-copy li {
    color: var(--muted);

    line-height: 2;
}



/* =========================================================
   TWO COLUMN
========================================================= */

.community-two-col {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 55px;

    align-items: center;
}


.community-photo {
    position: relative;

    overflow: hidden;

    border-radius: 26px;

    background: #eef3f6;

    box-shadow: var(--shadow);
}


.community-photo img {
    width: 100%;
    height: 430px;

    display: block;

    object-fit: cover;
    object-position: center;

    transition:
        transform 0.8s ease;
}


.community-photo:hover img {
    transform: scale(1.03);
}



/* =========================================================
   FLOW / HOW IT WORKS
========================================================= */

.community-flow {
    display: grid;

    grid-template-columns:
        1fr auto 1fr auto 1fr;

    gap: 18px;

    align-items: stretch;

    max-width: 1000px;

    margin: 0 auto;
}


.flow-card {
    position: relative;

    min-width: 0;

    padding: 28px 22px;

    text-align: center;

    background: #fff;

    border: 1px solid var(--border);
    border-radius: 20px;

    box-shadow:
        0 12px 30px
        rgba(23, 58, 86, 0.06);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}


.flow-card::before {
    content: "";

    position: absolute;

    top: 0;
    right: 20px;
    left: 20px;

    height: 3px;

    border-radius: 0 0 10px 10px;

    background: var(--orange);
}


.flow-card:hover {
    transform: translateY(-4px);

    box-shadow:
        0 18px 38px
        rgba(23, 58, 86, 0.10);
}


.flow-card strong {
    display: block;

    margin-bottom: 9px;

    color: var(--blue);

    font-size: 18px;
    font-weight: 800;
}


.flow-card span {
    display: block;

    color: var(--muted);

    font-size: 14px;
    line-height: 1.8;
}


.flow-arrow {
    display: flex;

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

    color: var(--blue);

    font-size: 30px;
    font-weight: 800;
}



/* =========================================================
   CARDS
========================================================= */

.community-card-grid {
    display: grid;

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

    gap: 20px;
}


.community-card-grid--4 {
    grid-template-columns:
        repeat(4, minmax(0, 1fr));
}


.info-card,
.role-card,
.path-card {
    position: relative;

    min-width: 0;
    height: 100%;

    padding: 26px;

    overflow-wrap: break-word;

    background: #fff;

    border: 1px solid var(--border);
    border-radius: 20px;

    box-shadow:
        0 12px 30px
        rgba(23, 58, 86, 0.055);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}


.info-card:hover,
.role-card:hover,
.path-card:hover {
    transform: translateY(-4px);

    box-shadow:
        0 18px 40px
        rgba(23, 58, 86, 0.10);
}


.info-card h3,
.role-card h3,
.path-card h3 {
    margin: 0 0 9px;

    color: var(--blue);

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


.info-card p,
.role-card p,
.path-card p {
    margin: 0;

    color: var(--muted);

    font-size: 14px;
    line-height: 1.9;
}


.role-card > strong {
    display: block;

    margin-bottom: 8px;

    color: #e89037;

    font-size: 14px;
    font-weight: 800;
}


.path-card > span {
    display: inline-flex;

    margin-bottom: 11px;
    padding: 6px 12px;

    border-radius: 999px;

    background: var(--orange-soft);

    color: #b96f24;

    font-size: 12px;
    font-weight: 800;
}



/* =========================================================
   CHIPS
========================================================= */

.community-chips {
    display: flex;

    flex-wrap: wrap;

    gap: 10px;

    align-items: center;
}


.community-chips span {
    padding: 10px 15px;

    border-radius: 999px;

    background:
        linear-gradient(
            135deg,
            #fff1df,
            #fff7ed
        );

    border: 1px solid
        rgba(243, 168, 79, 0.14);

    color: var(--blue);

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



/* =========================================================
   LISTS
========================================================= */

.community-list {
    padding-right: 22px;
}


.community-list li {
    margin: 8px 0;
}



/* =========================================================
   TRANSPARENCY
========================================================= */

.transparency-box {
    display: grid;

    grid-template-columns:
        0.8fr 1.2fr;

    gap: 55px;

    align-items: center;

    padding: 46px;

    border: 1px solid var(--border);
    border-radius: 28px;

    background:
        linear-gradient(
            135deg,
            #f5fafc 0%,
            #fff6e9 100%
        );

    box-shadow: var(--shadow);
}


/* بدل الموكاب نخلي الصورة نفسها كصورة عادية */

.app-screen-wrap {
    display: flex;

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

    min-height: 430px;

    padding: 22px;

    overflow: hidden;

    border-radius: 24px;

    background:
        radial-gradient(
            circle,
            rgba(243, 168, 79, 0.13),
            transparent 66%
        );
}


.app-screen-wrap img {
    width: 100%;
    height: 400px;

    display: block;

    object-fit: contain;

    filter:
        drop-shadow(
            0 16px 22px
            rgba(23, 58, 86, 0.13)
        );
}


.transparency-points {
    display: grid;

    gap: 12px;

    margin-top: 20px;
}


.transparency-point {
    display: flex;

    gap: 13px;

    align-items: flex-start;

    padding: 15px;

    background: #fff;

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


.transparency-point > span {
    flex: 0 0 34px;

    width: 34px;
    height: 34px;

    display: grid;

    place-items: center;

    border-radius: 50%;

    background: var(--blue);

    color: #fff;

    font-size: 14px;
    font-weight: 800;
}


.transparency-point strong {
    color: var(--blue);
}


.transparency-point p {
    margin: 3px 0 0 !important;

    color: var(--muted);

    font-size: 14px;
    line-height: 1.8;
}



/* =========================================================
   JOURNEY / TIMELINE
========================================================= */

.journey {
    display: grid;

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

    gap: 14px;
}


.journey-step {
    position: relative;

    padding: 23px 15px;

    text-align: center;

    background: #fff;

    border: 1px solid var(--border);
    border-radius: 19px;

    box-shadow:
        0 10px 25px
        rgba(23, 58, 86, 0.05);
}


.journey-step::after {
    content: "";

    position: absolute;

    top: 50%;
    left: -15px;

    width: 15px;
    height: 2px;

    background: var(--orange);
}


.journey-step:first-child::after {
    display: none;
}


.journey-step strong {
    width: 38px;
    height: 38px;

    display: grid;

    place-items: center;

    margin: 0 auto 10px;

    border-radius: 50%;

    background: var(--blue);

    color: #fff;

    font-size: 14px;
}


.journey-step span {
    display: block;

    color: var(--text);

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



/* =========================================================
   CTA
========================================================= */

.community-cta {
    padding: 40px 0 90px;
}


.community-cta__box {
    display: flex;

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

    gap: 30px;

    padding: 44px 48px;

    border-radius: 28px;

    background:
        linear-gradient(
            135deg,
            #f8b063,
            #f2a04b
        );

    box-shadow:
        0 18px 42px
        rgba(242, 160, 75, 0.20);
}


.community-cta h2 {
    margin: 0 0 8px;

    color: var(--blue);

    font-size: 32px;
    line-height: 1.45;
}


.community-cta p {
    margin: 0;

    color:
        rgba(23, 58, 86, 0.78);

    line-height: 1.8;
}


.community-cta a {
    flex: none;

    padding: 14px 24px;

    border-radius: 14px;

    background: var(--blue);

    color: #fff;

    font-weight: 800;
}



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

@media (max-width: 900px) {

    .community-detail-hero__box {
        grid-template-columns: 1fr;
    }


    .community-detail-hero__visual {
        min-height: 400px;
    }


    .community-detail-hero__visual::after {
        background:
            linear-gradient(
                180deg,
                transparent 55%,
                rgba(255, 255, 255, 0.95) 100%
            );
    }


    .community-detail-hero__content {
        padding: 40px 32px;
    }


    .community-two-col,
    .transparency-box {
        grid-template-columns: 1fr;
    }


    .community-two-col {
        gap: 32px;
    }


    .transparency-box {
        gap: 32px;

        padding: 32px;
    }


    .community-card-grid--4 {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }


    .journey {
        grid-template-columns:
            repeat(3, minmax(0, 1fr));
    }


    .journey-step::after {
        display: none;
    }

}



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

@media (max-width: 650px) {

    .community-detail-page .container {
        width:
            calc(100% - 28px);
    }


    .community-detail-hero {
        padding: 22px 0 38px;
    }


    .community-detail-hero__box {
        min-height: 0;

        border-radius: 22px;
    }


    .community-detail-hero__visual {
        min-height: 285px;
    }


    .community-detail-hero__content {
        padding: 28px 22px 32px;
    }


    .community-detail-hero h1 {
        font-size: 34px;
        line-height: 1.35;
    }


    .community-en {
        font-size: 16px;
    }


    .community-badge {
        max-width: 100%;

        white-space: normal;

        font-size: 12px;
        line-height: 1.7;
    }


    .community-block {
        padding: 52px 0;
    }


    .community-heading {
        margin-bottom: 30px;
    }


    .community-heading h2,
    .community-copy h2 {
        font-size: 28px;
        line-height: 1.5;
    }


    .community-heading p,
    .community-copy p,
    .community-copy li,
    .community-lead-card p {
        font-size: 14px;
        line-height: 2;
    }


    .community-two-col,
    .community-card-grid,
    .community-card-grid--4 {
        grid-template-columns: 1fr;
    }


    .community-photo {
        border-radius: 20px;
    }


    .community-photo img {
        height: 285px;
    }


    .community-flow {
        grid-template-columns: 1fr;

        gap: 12px;
    }


    .flow-arrow {
        transform: rotate(90deg);

        font-size: 24px;
        line-height: 1;
    }


    .flow-card,
    .info-card,
    .role-card,
    .path-card {
        padding: 20px;

        border-radius: 17px;
    }


    .community-chips {
        gap: 8px;
    }


    .community-chips span {
        padding: 8px 12px;

        font-size: 12px;
    }


    .transparency-box {
        padding: 20px;

        gap: 26px;

        border-radius: 20px;
    }


    .app-screen-wrap {
        min-height: 310px;

        padding: 12px;
    }


    .app-screen-wrap img {
        width: 100%;
        height: 290px;

        object-fit: contain;
    }


    .transparency-point {
        padding: 12px;
    }


    .journey {
        grid-template-columns: 1fr;

        gap: 12px;
    }


    .journey-step {
        padding: 18px;
    }


    .community-cta {
        padding: 25px 0 65px;
    }


    .community-cta__box {
        flex-direction: column;

        padding: 32px 22px;

        text-align: center;

        border-radius: 21px;
    }


    .community-cta h2 {
        font-size: 27px;
    }

}
/* =========================================================
   NEIGHBOURHOOD COMMUNITY
   مجتمع حتتنا
========================================================= */

.neighbourhood-community-page {
    background: #ffffff;
    color: #173a56;
}

.neighbourhood-community-page main {
    overflow: hidden;
}

.neighbourhood-community-page .container {
    width: min(1180px, calc(100% - 40px));
    margin-inline: auto;
}


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

.neighbourhood-hero {
    padding: 55px 0 65px;
    background:
        linear-gradient(
            180deg,
            #f7fafc 0%,
            #ffffff 100%
        );
}

.neighbourhood-hero__box {
    display: grid;
    grid-template-columns:
        minmax(0, 1.02fr)
        minmax(0, .98fr);
    align-items: center;
    gap: 55px;

    background: #ffffff;

    border: 1px solid #e7edf2;
    border-radius: 30px;

    padding: 34px;

    box-shadow:
        0 20px 60px rgba(23, 58, 86, .08);
}


/* HERO IMAGE */

.neighbourhood-hero__visual {
    min-width: 0;
    height: 480px;
    overflow: hidden;

    border-radius: 24px;
}

.neighbourhood-hero__visual img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
    object-position: center;
}


/* HERO CONTENT */

.neighbourhood-hero__content {
    min-width: 0;
}

.neighbourhood-label {
    display: inline-flex;

    padding: 8px 17px;
    margin-bottom: 18px;

    border-radius: 999px;

    background: #fff3e4;
    color: #ef8d22;

    font-size: 14px;
    font-weight: 800;
}

.neighbourhood-hero__content h1 {
    margin: 0;

    color: #173a56;

    font-size: clamp(38px, 5vw, 66px);
    line-height: 1.15;
    font-weight: 900;
}

.neighbourhood-en {
    display: block;

    margin-top: 8px;

    color: #6f8494;

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

    direction: ltr;
    text-align: right;
}

.neighbourhood-intro-card {
    margin-top: 28px;
    padding: 23px 25px;

    background: #f8fafc;

    border-right: 4px solid #ef8d22;
    border-radius: 16px;
}

.neighbourhood-intro-card p {
    margin: 0 0 13px;

    color: #526878;

    font-size: 16px;
    line-height: 2;
}

.neighbourhood-intro-card p:last-child {
    margin-bottom: 0;
}

.neighbourhood-intro-card strong {
    color: #173a56;
}


/* =========================================================
   GENERAL SECTIONS
========================================================= */

.neighbourhood-section {
    padding: 80px 0;
    background: #ffffff;
}

.neighbourhood-section--soft {
    background: #f7f9fb;
}


/* HEADINGS */

.neighbourhood-heading {
    max-width: 820px;

    margin: 0 auto 42px;

    text-align: center;
}

.neighbourhood-small-label {
    display: inline-block;

    margin-bottom: 9px;

    color: #ef8d22;

    font-size: 13px;
    font-weight: 900;
}

.neighbourhood-heading h2,
.neighbourhood-copy h2 {
    margin: 0 0 16px;

    color: #173a56;

    font-size: clamp(27px, 3.5vw, 40px);
    line-height: 1.35;
    font-weight: 900;
}

.neighbourhood-heading p {
    margin: 0 auto;

    max-width: 760px;

    color: #617686;

    font-size: 16px;
    line-height: 2;
}

.neighbourhood-heading strong {
    color: #173a56;
}


/* =========================================================
   SPLIT SECTIONS
========================================================= */

.neighbourhood-split {
    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(340px, .9fr);

    align-items: center;

    gap: 65px;
}

.neighbourhood-split--reverse .neighbourhood-copy {
    order: 2;
}

.neighbourhood-split--reverse .neighbourhood-photo {
    order: 1;
}

.neighbourhood-copy {
    min-width: 0;
}

.neighbourhood-copy p {
    margin: 0 0 17px;

    color: #607483;

    font-size: 16px;
    line-height: 2;
}

.neighbourhood-copy strong {
    color: #173a56;
}

.neighbourhood-highlight-text {
    margin-top: 24px !important;

    padding: 17px 20px;

    background: #fff7ed;

    border-right: 4px solid #ef8d22;
    border-radius: 13px;
}


/* IMAGES */

.neighbourhood-photo {
    height: 360px;

    overflow: hidden;

    border-radius: 24px;

    box-shadow:
        0 16px 40px rgba(23, 58, 86, .10);
}

.neighbourhood-photo img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
    object-position: center;
}


/* =========================================================
   SIMPLE LIST
========================================================= */

.neighbourhood-simple-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 11px;

    margin: 25px 0;
}

.neighbourhood-simple-list div {
    position: relative;

    padding: 15px 18px 15px 15px;

    background: #ffffff;

    border: 1px solid #e3e9ee;
    border-radius: 12px;

    color: #173a56;

    font-size: 14px;
    font-weight: 800;
}

.neighbourhood-simple-list div::before {
    content: "";

    display: inline-block;

    width: 7px;
    height: 7px;

    margin-left: 9px;

    background: #ef8d22;

    border-radius: 50%;
}


/* =========================================================
   FAYOUM FEATURE STRIP
========================================================= */

.neighbourhood-feature-strip {
    display: grid;

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

    gap: 14px;
}

.neighbourhood-feature-strip article {
    min-width: 0;

    padding: 25px 18px;

    background: #ffffff;

    border: 1px solid #e3e9ee;
    border-radius: 17px;

    text-align: center;

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

.neighbourhood-feature-strip article:hover {
    transform: translateY(-4px);

    border-color: #f1c99c;

    box-shadow:
        0 13px 30px rgba(23, 58, 86, .08);
}

.neighbourhood-feature-strip strong {
    display: block;

    margin-bottom: 8px;

    color: #173a56;

    font-size: 15px;
    font-weight: 900;
}

.neighbourhood-feature-strip span {
    display: block;

    color: #718391;

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


/* =========================================================
   NOTE
========================================================= */

.neighbourhood-note {
    max-width: 850px;

    margin: 30px auto 0;
    padding: 20px 25px;

    background: #ffffff;

    border: 1px solid #e2e8ed;
    border-radius: 15px;

    text-align: center;
}

.neighbourhood-note--wide {
    max-width: 920px;
}

.neighbourhood-note p {
    margin: 0 0 12px;

    color: #617483;

    font-size: 15px;
    line-height: 2;
}

.neighbourhood-note p:last-child {
    margin-bottom: 0;
}

.neighbourhood-note strong {
    color: #173a56;
}


/* =========================================================
   CARDS
========================================================= */

.neighbourhood-cards {
    display: grid;
    gap: 18px;
}

.neighbourhood-cards--4 {
    grid-template-columns:
        repeat(4, minmax(0, 1fr));
}

.neighbourhood-cards--3 {
    grid-template-columns:
        repeat(3, minmax(0, 1fr));
}

.neighbourhood-card {
    min-width: 0;

    padding: 28px 24px;

    background: #ffffff;

    border: 1px solid #e3e9ee;
    border-radius: 18px;

    box-shadow:
        0 7px 25px rgba(23, 58, 86, .045);

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

.neighbourhood-card:hover {
    transform: translateY(-4px);

    border-color: #f0c99e;

    box-shadow:
        0 14px 35px rgba(23, 58, 86, .08);
}

.neighbourhood-card h3 {
    margin: 0 0 11px;

    color: #173a56;

    font-size: 18px;
    line-height: 1.5;
    font-weight: 900;
}

.neighbourhood-card h3::after {
    content: "";

    display: block;

    width: 34px;
    height: 3px;

    margin-top: 11px;

    background: #ef8d22;

    border-radius: 999px;
}

.neighbourhood-card p {
    margin: 0;

    color: #6c7f8e;

    font-size: 14px;
    line-height: 1.9;
}


/* =========================================================
   TAGS
========================================================= */

.neighbourhood-tags {
    display: flex;
    flex-wrap: wrap;

    gap: 9px;

    margin: 23px 0;
}

.neighbourhood-tags--center {
    justify-content: center;

    max-width: 950px;

    margin: 0 auto;
}

.neighbourhood-tags span {
    display: inline-flex;

    padding: 9px 15px;

    background: #ffffff;

    border: 1px solid #dfe6eb;
    border-radius: 999px;

    color: #173a56;

    font-size: 13px;
    font-weight: 800;
}


/* =========================================================
   ACTIVITIES
========================================================= */

.neighbourhood-activity-grid {
    display: grid;

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

    gap: 0;

    overflow: hidden;

    background: #ffffff;

    border: 1px solid #e1e7ec;
    border-radius: 20px;
}

.neighbourhood-activity-grid > div {
    min-width: 0;

    padding: 24px 25px;

    border-left: 1px solid #e8edf1;
    border-bottom: 1px solid #e8edf1;
}

.neighbourhood-activity-grid > div:nth-child(3n) {
    border-left: 0;
}

.neighbourhood-activity-grid strong {
    display: block;

    margin-bottom: 7px;

    color: #173a56;

    font-size: 15px;
    font-weight: 900;
}

.neighbourhood-activity-grid span {
    display: block;

    color: #718391;

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


/* =========================================================
   EXAMPLES
========================================================= */

.neighbourhood-example-list {
    display: flex;
    flex-wrap: wrap;

    justify-content: center;

    gap: 10px;

    max-width: 1000px;

    margin: 0 auto;
}

.neighbourhood-example-list span {
    padding: 11px 17px;

    background: #ffffff;

    border: 1px solid #e1e7ec;
    border-radius: 10px;

    color: #526a7a;

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


/* =========================================================
   FLOW
========================================================= */

.neighbourhood-flow-list {
    display: grid;

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

    gap: 12px;
}

.neighbourhood-flow-list > div {
    position: relative;

    min-width: 0;

    padding: 25px 16px;

    background: #f8fafc;

    border: 1px solid #e1e7ec;
    border-radius: 16px;

    text-align: center;
}

.neighbourhood-flow-list strong,
.neighbourhood-flow-list span,
.neighbourhood-flow-list b {
    display: block;
}

.neighbourhood-flow-list strong {
    color: #ef8d22;

    font-size: 13px;
    font-weight: 900;
}

.neighbourhood-flow-list span {
    margin: 10px 0;

    color: #718391;

    font-size: 13px;
}

.neighbourhood-flow-list b {
    color: #173a56;

    font-size: 14px;
    line-height: 1.6;
    font-weight: 900;
}


/* =========================================================
   FINAL GOAL
========================================================= */

.neighbourhood-goal {
    padding: 80px 0;

    background: #ffffff;
}

.neighbourhood-goal__box {
    position: relative;

    overflow: hidden;

    max-width: 1100px;

    margin: 0 auto;

    padding: 55px 60px;

    background:
        linear-gradient(
            135deg,
            #173a56 0%,
            #102f4a 100%
        );

    border-radius: 27px;

    text-align: center;

    box-shadow:
        0 20px 50px rgba(23, 58, 86, .17);
}

.neighbourhood-goal__box > span {
    display: inline-block;

    margin-bottom: 10px;

    color: #f3a348;

    font-size: 14px;
    font-weight: 900;
}

.neighbourhood-goal__box h2 {
    max-width: 750px;

    margin: 0 auto 15px;

    color: #ffffff;

    font-size: clamp(27px, 4vw, 42px);
    line-height: 1.45;
    font-weight: 900;
}

.neighbourhood-goal__box > p {
    margin: 0 0 27px;

    color: rgba(255, 255, 255, .78);

    font-size: 16px;
}

.neighbourhood-goal__items {
    display: flex;
    flex-wrap: wrap;

    justify-content: center;

    gap: 10px;

    max-width: 850px;

    margin: 0 auto;
}

.neighbourhood-goal__items span {
    padding: 10px 16px;

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

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

    color: #ffffff;

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

.neighbourhood-goal__final {
    display: block;

    max-width: 700px;

    margin: 31px auto 0;
    padding-top: 25px;

    border-top:
        1px solid rgba(255, 255, 255, .15);

    color: #ffffff;

    font-size: 20px;
    line-height: 1.7;
    font-weight: 900;
}


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

@media (max-width: 1000px) {

    .neighbourhood-hero__box {
        gap: 35px;
    }

    .neighbourhood-hero__visual {
        height: 420px;
    }

    .neighbourhood-feature-strip {
        grid-template-columns:
            repeat(3, minmax(0, 1fr));
    }

    .neighbourhood-cards--4 {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    .neighbourhood-flow-list {
        grid-template-columns:
            repeat(3, minmax(0, 1fr));
    }

}


/* =========================================================
   MOBILE / SMALL TABLET
========================================================= */

@media (max-width: 800px) {

    .neighbourhood-community-page .container {
        width: min(100% - 28px, 1180px);
    }


    /* HERO */

    .neighbourhood-hero {
        padding: 25px 0 45px;
    }

    .neighbourhood-hero__box {
        grid-template-columns: 1fr;

        gap: 28px;

        padding: 20px;

        border-radius: 22px;
    }

    .neighbourhood-hero__visual {
        height: 350px;
        order: 2;

        border-radius: 18px;
    }

    .neighbourhood-hero__content {
        order: 1;
    }

    .neighbourhood-hero__content h1 {
        font-size: 42px;
    }


    /* SECTIONS */

    .neighbourhood-section,
    .neighbourhood-goal {
        padding: 58px 0;
    }

    .neighbourhood-heading {
        margin-bottom: 30px;
    }


    /* SPLIT */

    .neighbourhood-split {
        grid-template-columns: 1fr;

        gap: 30px;
    }

    .neighbourhood-split--reverse .neighbourhood-copy,
    .neighbourhood-split--reverse .neighbourhood-photo {
        order: initial;
    }

    .neighbourhood-photo {
        height: 330px;
    }


    /* GRIDS */

    .neighbourhood-feature-strip {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    .neighbourhood-cards--3 {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    .neighbourhood-activity-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    .neighbourhood-activity-grid > div,
    .neighbourhood-activity-grid > div:nth-child(3n) {
        border-left: 1px solid #e8edf1;
    }

    .neighbourhood-activity-grid > div:nth-child(2n) {
        border-left: 0;
    }

    .neighbourhood-flow-list {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }


    /* GOAL */

    .neighbourhood-goal__box {
        padding: 45px 25px;

        border-radius: 22px;
    }

}


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

@media (max-width: 600px) {

    .neighbourhood-community-page .container {
        width: calc(100% - 24px);
    }


    /* HERO */

    .neighbourhood-hero {
        padding-top: 16px;
    }

    .neighbourhood-hero__box {
        padding: 16px;

        border-radius: 18px;
    }

    .neighbourhood-label {
        margin-bottom: 14px;

        font-size: 12px;
    }

    .neighbourhood-hero__content h1 {
        font-size: 35px;
    }

    .neighbourhood-en {
        font-size: 13px;
    }

    .neighbourhood-intro-card {
        margin-top: 21px;

        padding: 18px;
    }

    .neighbourhood-intro-card p {
        font-size: 14px;
        line-height: 1.9;
    }

    .neighbourhood-hero__visual {
        height: 270px;
    }


    /* SECTIONS */

    .neighbourhood-section,
    .neighbourhood-goal {
        padding: 45px 0;
    }

    .neighbourhood-heading h2,
    .neighbourhood-copy h2 {
        font-size: 27px;
    }

    .neighbourhood-heading p,
    .neighbourhood-copy p {
        font-size: 14px;
        line-height: 1.9;
    }


    /* START SMALL */

    .neighbourhood-simple-list {
        grid-template-columns: 1fr;
    }


    /* PHOTOS */

    .neighbourhood-photo {
        height: 260px;

        border-radius: 18px;
    }


    /* FEATURE STRIP */

    .neighbourhood-feature-strip {
        grid-template-columns: 1fr;
    }

    .neighbourhood-feature-strip article {
        padding: 19px;

        text-align: right;
    }


    /* CARDS */

    .neighbourhood-cards--4,
    .neighbourhood-cards--3 {
        grid-template-columns: 1fr;
    }

    .neighbourhood-card {
        padding: 22px 20px;
    }


    /* ACTIVITIES */

    .neighbourhood-activity-grid {
        grid-template-columns: 1fr;
    }

    .neighbourhood-activity-grid > div,
    .neighbourhood-activity-grid > div:nth-child(2n),
    .neighbourhood-activity-grid > div:nth-child(3n) {
        border-left: 0;
        border-bottom: 1px solid #e8edf1;
    }

    .neighbourhood-activity-grid > div:last-child {
        border-bottom: 0;
    }


    /* FLOW */

    .neighbourhood-flow-list {
        grid-template-columns: 1fr;
    }


    /* TAGS */

    .neighbourhood-tags--center {
        justify-content: flex-start;
    }


    /* FINAL */

    .neighbourhood-goal__box {
        padding: 38px 18px;

        border-radius: 18px;
    }

    .neighbourhood-goal__box h2 {
        font-size: 27px;
    }

    .neighbourhood-goal__items {
        align-items: stretch;
        flex-direction: column;
    }

    .neighbourhood-goal__items span {
        width: 100%;

        border-radius: 10px;
    }

    .neighbourhood-goal__final {
        font-size: 17px;
    }

}
/* =========================================================
   TRUST CIRCLES - NEW CLEAN DESIGN
========================================================= */

.trust-community-page {
    background: #fff;
}

.trust-community-page main {
    overflow: hidden;
}


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

.trust-new-hero {
    padding: 55px 0 65px;
    background: linear-gradient(180deg,#f7fafc,#fff);
}

.trust-new-hero__box {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 55px;
    align-items: center;

    padding: 34px;

    background: #fff;

    border: 1px solid #e4eaef;
    border-radius: 30px;

    box-shadow: 0 20px 60px rgba(23,58,86,.08);
}

.trust-new-hero__visual {
    height: 500px;

    overflow: hidden;

    border-radius: 24px;
}

.trust-new-hero__visual img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
    object-position: center;
}

.trust-new-label,
.trust-new-small-label {
    display: inline-flex;

    padding: 8px 16px;

    background: #fff2df;
    border-radius: 999px;

    color: #e58c30;

    font-size: 13px;
    font-weight: 800;
}

.trust-new-hero__content h1 {
    margin: 17px 0 3px;

    color: #173a56;

    font-size: clamp(39px,5vw,62px);
    line-height: 1.25;
}

.trust-new-en {
    display: block;

    margin-bottom: 24px;

    color: #3567a5;

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

.trust-new-intro {
    padding: 23px 25px;

    background: #f8fafc;

    border-right: 4px solid #f3a84f;
    border-radius: 17px;
}

.trust-new-intro p {
    margin: 0 0 12px;

    color: #5c7181;

    line-height: 2;
}

.trust-new-intro p:last-child {
    margin-bottom: 0;
}

.trust-new-intro strong {
    color: #173a56;
}


/* =========================================================
   GENERAL
========================================================= */

.trust-new-section {
    padding: 80px 0;
}

.trust-new-section--soft {
    background: #f7f9fb;
}

.trust-new-section--highlight {
    background:
        linear-gradient(
            135deg,
            #f3f8fb,
            #fff7ed
        );
}

.trust-new-heading {
    max-width: 850px;

    margin: 0 auto 42px;

    text-align: center;
}

.trust-new-heading > span {
    color: #e89037;

    font-size: 13px;
    font-weight: 800;
}

.trust-new-heading h2,
.trust-new-copy h2 {
    margin: 9px 0 15px;

    color: #173a56;

    font-size: clamp(29px,4vw,42px);
    line-height: 1.4;
}

.trust-new-heading p,
.trust-new-copy p {
    color: #667b8b;

    line-height: 2;
}

.trust-new-heading strong,
.trust-new-copy strong {
    color: #173a56;
}


/* =========================================================
   HOW IT WORKS
========================================================= */

.trust-new-parties {
    display: grid;
    grid-template-columns: repeat(3,minmax(0,1fr));

    gap: 18px;

    max-width: 1000px;

    margin: auto;
}

.trust-new-parties article {
    padding: 28px 24px;

    background: #fff;

    border: 1px solid #e3e9ee;
    border-radius: 19px;

    text-align: center;
}

.trust-new-parties__main {
    background: #fff8ef !important;
    border-color: #f2c997 !important;
}

.trust-new-parties article > span {
    display: inline-block;

    margin-bottom: 8px;

    color: #e89037;

    font-size: 12px;
    font-weight: 800;
}

.trust-new-parties h3 {
    margin: 0 0 9px;

    color: #173a56;
}

.trust-new-parties p {
    margin: 0;

    color: #6b7e8c;

    font-size: 14px;
    line-height: 1.9;
}


/* =========================================================
   NOTE
========================================================= */

.trust-new-note {
    max-width: 900px;

    margin: 30px auto 0;
    padding: 20px 24px;

    background: #fff;

    border: 1px solid #e2e8ed;
    border-radius: 15px;

    text-align: center;
}

.trust-new-note p {
    margin: 0;

    color: #607483;

    line-height: 2;
}

.trust-new-note strong {
    color: #173a56;
}


/* =========================================================
   GRID / CARDS
========================================================= */

.trust-new-grid {
    display: grid;

    gap: 17px;
}

.trust-new-grid--5 {
    grid-template-columns:
        repeat(5,minmax(0,1fr));
}

.trust-new-grid--4 {
    grid-template-columns:
        repeat(4,minmax(0,1fr));
}

.trust-new-card {
    padding: 25px 22px;

    background: #fff;

    border: 1px solid #e3e9ee;
    border-radius: 18px;

    box-shadow:
        0 8px 25px rgba(23,58,86,.045);
}

.trust-new-card h3 {
    margin: 0 0 10px;

    color: #173a56;

    font-size: 18px;
}

.trust-new-card h3::after {
    content: "";

    display: block;

    width: 35px;
    height: 3px;

    margin-top: 10px;

    border-radius: 10px;

    background: #f3a84f;
}

.trust-new-card p {
    margin: 0;

    color: #6a7d8c;

    font-size: 14px;
    line-height: 1.9;
}

.trust-new-card-label {
    display: block;

    margin-bottom: 7px;

    color: #e89037;

    font-size: 12px;
    font-weight: 800;
}


/* =========================================================
   SPLIT
========================================================= */

.trust-new-split {
    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 65px;

    align-items: center;
}

.trust-new-simple-list {
    display: grid;
    grid-template-columns: repeat(2,minmax(0,1fr));

    gap: 12px;
}

.trust-new-simple-list div {
    padding: 16px 18px;

    background: #fff;

    border: 1px solid #e1e7ec;
    border-radius: 13px;

    color: #173a56;

    font-size: 14px;
    font-weight: 800;
}


/* =========================================================
   TRANSPARENCY
========================================================= */

.trust-new-transparency {
    display: grid;

    grid-template-columns:
        .8fr 1.2fr;

    gap: 55px;

    align-items: start;
}

.trust-new-transparency-list {
    display: grid;
    grid-template-columns: repeat(2,minmax(0,1fr));

    gap: 13px;
}

.trust-new-transparency-list article {
    padding: 20px;

    background: #fff;

    border: 1px solid rgba(23,58,86,.09);
    border-radius: 15px;
}

.trust-new-transparency-list strong {
    display: block;

    margin-bottom: 6px;

    color: #173a56;
}

.trust-new-transparency-list p {
    margin: 0;

    color: #718391;

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

.trust-new-note--dark {
    background: #173a56;

    border: 0;
}

.trust-new-note--dark p,
.trust-new-note--dark strong {
    color: #fff;
}


/* =========================================================
   QUESTIONS
========================================================= */

.trust-new-questions {
    display: grid;

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

    gap: 13px;
}

.trust-new-questions div {
    display: flex;
    align-items: center;

    min-height: 120px;

    padding: 20px;

    background: #f8fafc;

    border: 1px solid #e2e8ed;
    border-radius: 16px;

    color: #173a56;

    font-size: 14px;
    font-weight: 800;
    line-height: 1.8;

    text-align: center;
}


/* =========================================================
   JOURNEY
========================================================= */

.trust-new-journey {
    display: grid;

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

    gap: 11px;
}

.trust-new-journey article {
    padding: 20px 13px;

    background: #fff;

    border: 1px solid #e2e8ed;
    border-radius: 16px;

    text-align: center;
}

.trust-new-journey article > strong {
    display: block;

    margin-bottom: 10px;

    color: #e89037;

    font-size: 14px;
}

.trust-new-journey h3 {
    margin: 0 0 8px;

    color: #173a56;

    font-size: 15px;
}

.trust-new-journey p {
    margin: 0;

    color: #718391;

    font-size: 12px;
    line-height: 1.75;
}


/* =========================================================
   FINAL
========================================================= */

.trust-new-final {
    padding: 75px 0 90px;
}

.trust-new-final__box {
    padding: 55px;

    background:
        linear-gradient(
            135deg,
            #173a56,
            #102f4a
        );

    border-radius: 27px;

    text-align: center;
}

.trust-new-final__box > span {
    color: #f3a84f;

    font-weight: 800;
}

.trust-new-final__box h2 {
    margin: 10px 0;

    color: #fff;

    font-size: clamp(29px,4vw,42px);
}

.trust-new-final__box > p {
    color: rgba(255,255,255,.75);
}

.trust-new-final__questions {
    display: flex;
    flex-wrap: wrap;

    justify-content: center;

    gap: 9px;

    margin-top: 27px;
}

.trust-new-final__questions span {
    padding: 10px 15px;

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

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

    border-radius: 999px;

    color: #fff;

    font-size: 13px;
}

.trust-new-final__text {
    display: block;

    max-width: 780px;

    margin: 30px auto 0;
    padding-top: 25px;

    border-top:
        1px solid rgba(255,255,255,.15);

    color: #fff;

    font-size: 18px;
    line-height: 1.9;
}


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

@media (max-width: 1000px) {

    .trust-new-grid--5 {
        grid-template-columns:
            repeat(3,minmax(0,1fr));
    }

    .trust-new-grid--4 {
        grid-template-columns:
            repeat(2,minmax(0,1fr));
    }

    .trust-new-questions {
        grid-template-columns:
            repeat(3,minmax(0,1fr));
    }

    .trust-new-journey {
        grid-template-columns:
            repeat(4,minmax(0,1fr));
    }

}


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

@media (max-width: 800px) {

    .trust-new-hero__box,
    .trust-new-split,
    .trust-new-transparency {
        grid-template-columns: 1fr;
    }

    .trust-new-hero__box {
        gap: 30px;
        padding: 20px;
    }

    .trust-new-hero__visual {
        height: 350px;
        order: 2;
    }

    .trust-new-hero__content {
        order: 1;
    }

    .trust-new-parties {
        grid-template-columns: 1fr;
    }

}


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

@media (max-width: 600px) {

    .trust-new-hero,
    .trust-new-section,
    .trust-new-final {
        padding: 45px 0;
    }

    .trust-new-hero__box {
        padding: 16px;

        border-radius: 20px;
    }

    .trust-new-hero__visual {
        height: 275px;
    }

    .trust-new-hero__content h1 {
        font-size: 35px;
    }

    .trust-new-intro {
        padding: 18px;
    }

    .trust-new-grid--5,
    .trust-new-grid--4,
    .trust-new-questions,
    .trust-new-journey,
    .trust-new-transparency-list {
        grid-template-columns: 1fr;
    }

    .trust-new-simple-list {
        grid-template-columns: 1fr;
    }

    .trust-new-questions div {
        min-height: 0;

        text-align: right;
    }

    .trust-new-final__box {
        padding: 38px 18px;

        border-radius: 20px;
    }

    .trust-new-final__questions {
        flex-direction: column;
    }

    .trust-new-final__questions span {
        width: 100%;

        border-radius: 10px;
    }

}
/* =========================================================
   CLUB COMMUNITY - CLEAN INFOGRAPHIC DESIGN
========================================================= */

.club-community-page {
    background: #fff;
}

.club-community-page main {
    overflow: hidden;
}


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

.club-new-hero {
    padding: 55px 0 65px;

    background:
        linear-gradient(
            180deg,
            #f7fafc,
            #ffffff
        );
}

.club-new-hero__box {
    display: grid;

    grid-template-columns:
        1fr 1fr;

    align-items: center;

    gap: 55px;

    padding: 34px;

    background: #fff;

    border: 1px solid #e4eaef;
    border-radius: 30px;

    box-shadow:
        0 20px 60px rgba(23,58,86,.08);
}

.club-new-hero__visual {
    height: 490px;

    overflow: hidden;

    border-radius: 24px;
}

.club-new-hero__visual img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
    object-position: center;
}

.club-new-label,
.club-new-small-label {
    display: inline-flex;

    max-width: 100%;

    padding: 8px 17px;

    background: #fff2df;
    border-radius: 999px;

    color: #e58c30;

    font-size: 13px;
    line-height: 1.6;
    font-weight: 800;
}

.club-new-hero__content h1 {
    margin: 17px 0 3px;

    color: #173a56;

    font-size: clamp(40px,5vw,62px);
    line-height: 1.25;
}

.club-new-en {
    display: block;

    margin-bottom: 24px;

    color: #3567a5;

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

.club-new-intro {
    padding: 23px 25px;

    background: #f8fafc;

    border-right: 4px solid #f3a84f;
    border-radius: 17px;
}

.club-new-intro p {
    margin: 0 0 12px;

    color: #5e7282;

    line-height: 2;
}

.club-new-intro p:last-child {
    margin-bottom: 0;
}

.club-new-intro strong {
    color: #173a56;
}


/* =========================================================
   GENERAL
========================================================= */

.club-new-section {
    padding: 80px 0;
}

.club-new-section--soft {
    background: #f7f9fb;
}

.club-new-heading {
    max-width: 850px;

    margin: 0 auto 42px;

    text-align: center;
}

.club-new-heading > span {
    color: #e89037;

    font-size: 13px;
    font-weight: 800;
}

.club-new-heading h2,
.club-new-copy h2,
.club-new-panel h2 {
    margin: 9px 0 15px;

    color: #173a56;

    font-size: clamp(29px,4vw,42px);
    line-height: 1.4;
}

.club-new-heading p,
.club-new-copy p {
    color: #667b8b;

    font-size: 16px;
    line-height: 2;
}

.club-new-heading strong,
.club-new-copy strong {
    color: #173a56;
}


/* =========================================================
   TAGS
========================================================= */

.club-new-tags {
    display: flex;
    flex-wrap: wrap;

    gap: 9px;
}

.club-new-tags--center {
    justify-content: center;

    max-width: 950px;

    margin: 0 auto;
}

.club-new-tags span {
    padding: 10px 15px;

    background: #fff;

    border: 1px solid #e0e6eb;
    border-radius: 999px;

    color: #173a56;

    font-size: 13px;
    font-weight: 800;
}


/* =========================================================
   SPLIT
========================================================= */

.club-new-split {
    display: grid;

    grid-template-columns:
        1fr .9fr;

    align-items: center;

    gap: 65px;
}

.club-new-photo {
    height: 370px;

    overflow: hidden;

    border-radius: 24px;

    box-shadow:
        0 16px 40px rgba(23,58,86,.09);
}

.club-new-photo img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
}

.club-new-highlight {
    margin-top: 25px !important;

    padding: 18px 20px;

    background: #fff7ed;

    border-right: 4px solid #f3a84f;
    border-radius: 14px;
}


/* =========================================================
   GRID
========================================================= */

.club-new-grid {
    display: grid;

    gap: 18px;
}

.club-new-grid--4 {
    grid-template-columns:
        repeat(4,minmax(0,1fr));
}

.club-new-grid--2 {
    grid-template-columns:
        repeat(2,minmax(0,1fr));
}

.club-new-card {
    padding: 25px 22px;

    background: #fff;

    border: 1px solid #e3e9ee;
    border-radius: 18px;

    box-shadow:
        0 8px 25px rgba(23,58,86,.045);
}

.club-new-card h3 {
    margin: 0 0 10px;

    color: #173a56;

    font-size: 18px;
}

.club-new-card h3::after {
    content: "";

    display: block;

    width: 34px;
    height: 3px;

    margin-top: 10px;

    background: #f3a84f;

    border-radius: 10px;
}

.club-new-card p {
    margin: 0;

    color: #6c7f8d;

    font-size: 14px;
    line-height: 1.9;
}


/* =========================================================
   COMMUNITY PROCESS
========================================================= */

.club-new-process {
    display: grid;

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

    gap: 12px;
}

.club-new-process div {
    min-width: 0;

    padding: 21px 14px;

    background: #fff;

    border: 1px solid #e2e8ed;
    border-radius: 16px;

    text-align: center;
}

.club-new-process strong {
    display: block;

    margin-bottom: 7px;

    color: #e89037;

    font-size: 13px;
}

.club-new-process span {
    color: #173a56;

    font-size: 14px;
    line-height: 1.7;
    font-weight: 800;
}


/* =========================================================
   NOTE
========================================================= */

.club-new-note {
    max-width: 900px;

    margin: 30px auto 0;
    padding: 21px 25px;

    background: #f8fafc;

    border: 1px solid #e2e8ed;
    border-radius: 15px;

    text-align: center;
}

.club-new-note p {
    margin: 0 0 10px;

    color: #617483;

    line-height: 2;
}

.club-new-note p:last-child {
    margin-bottom: 0;
}

.club-new-note strong {
    color: #173a56;
}


/* =========================================================
   MEMBER FLOW
========================================================= */

.club-new-member-flow {
    display: grid;

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

    gap: 11px;
}

.club-new-member-flow article {
    padding: 20px 13px;

    background: #fff;

    border: 1px solid #e2e8ed;
    border-radius: 16px;

    text-align: center;
}

.club-new-member-flow article > strong {
    display: block;

    margin-bottom: 9px;

    color: #e89037;

    font-size: 13px;
}

.club-new-member-flow h3 {
    margin: 0 0 8px;

    color: #173a56;

    font-size: 14px;
    line-height: 1.6;
}

.club-new-member-flow p {
    margin: 0;

    color: #718391;

    font-size: 12px;
    line-height: 1.75;
}


/* =========================================================
   PANELS
========================================================= */

.club-new-panel {
    padding: 32px 30px;

    background: #f8fafc;

    border: 1px solid #e1e7ec;
    border-radius: 20px;
}

.club-new-panel > span {
    color: #e89037;

    font-size: 13px;
    font-weight: 800;
}


/* =========================================================
   FINAL
========================================================= */

.club-new-final {
    padding: 75px 0 90px;
}

.club-new-final__box {
    padding: 55px;

    background:
        linear-gradient(
            135deg,
            #173a56,
            #102f4a
        );

    border-radius: 27px;

    text-align: center;
}

.club-new-final__box > span {
    color: #f3a84f;

    font-size: 14px;
    font-weight: 800;
}

.club-new-final__box h2 {
    max-width: 850px;

    margin: 12px auto 16px;

    color: #fff;

    font-size: clamp(28px,4vw,42px);
    line-height: 1.5;
}

.club-new-final__box p {
    max-width: 760px;

    margin: 0 auto;

    color: rgba(255,255,255,.75);

    line-height: 2;
}

.club-new-final__box strong {
    display: block;

    max-width: 760px;

    margin: 29px auto 0;
    padding-top: 24px;

    border-top:
        1px solid rgba(255,255,255,.15);

    color: #fff;

    font-size: 18px;
    line-height: 1.8;
}


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

@media (max-width: 1000px) {

    .club-new-grid--4 {
        grid-template-columns:
            repeat(2,minmax(0,1fr));
    }

    .club-new-process {
        grid-template-columns:
            repeat(3,minmax(0,1fr));
    }

    .club-new-member-flow {
        grid-template-columns:
            repeat(4,minmax(0,1fr));
    }

}


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

@media (max-width: 800px) {

    .club-new-hero__box,
    .club-new-split {
        grid-template-columns: 1fr;
    }

    .club-new-hero__box {
        gap: 30px;

        padding: 20px;
    }

    .club-new-hero__visual {
        height: 350px;

        order: 2;
    }

    .club-new-hero__content {
        order: 1;
    }

    .club-new-grid--2 {
        grid-template-columns: 1fr;
    }

}


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

@media (max-width: 600px) {

    .club-new-hero,
    .club-new-section,
    .club-new-final {
        padding: 45px 0;
    }

    .club-new-hero__box {
        padding: 16px;

        border-radius: 20px;
    }

    .club-new-hero__visual {
        height: 275px;
    }

    .club-new-hero__content h1 {
        font-size: 35px;
    }

    .club-new-intro {
        padding: 18px;
    }

    .club-new-grid--4,
    .club-new-process,
    .club-new-member-flow {
        grid-template-columns: 1fr;
    }

    .club-new-process div,
    .club-new-member-flow article {
        text-align: right;
    }

    .club-new-photo {
        height: 270px;
    }

    .club-new-tags--center {
        justify-content: flex-start;
    }

    .club-new-final__box {
        padding: 38px 18px;

        border-radius: 20px;
    }

    .club-new-final__box h2 {
        font-size: 27px;
    }

}

/* Final LTR guard for all three community templates. */
html[dir="ltr"] .community-detail-page,
html[dir="ltr"] .community-detail-page :where(
    h1, h2, h3, h4, h5, h6,
    p, li, dt, dd, blockquote, label
) {
    direction: ltr;
    text-align: left;
}

html[dir="ltr"] .community-list,
html[dir="ltr"] .community-detail-page ul:not([class*="nav"]) {
    padding-right: 0;
    padding-left: 22px;
}

html[dir="ltr"] .community-lead-card,
html[dir="ltr"] .neighbourhood-intro-card,
html[dir="ltr"] .neighbourhood-highlight-text,
html[dir="ltr"] .trust-new-intro,
html[dir="ltr"] .club-new-intro,
html[dir="ltr"] .club-new-highlight {
    border-right: 0;
    border-left: 4px solid var(--orange);
}

html[dir="ltr"] .community-lead-card {
    border-left-width: 3px;
}

@media (max-width: 760px) {
    html[dir="ltr"] .neighbourhood-feature-strip article,
    html[dir="ltr"] .trust-new-questions div,
    html[dir="ltr"] .club-new-process div,
    html[dir="ltr"] .club-new-member-flow article {
        text-align: left;
    }
}
