/* Survey & Voting hub landing pages (shared with magazine-hub patterns) */
/* Programme subheader (survey / voting landing pages) */
.part-hub-subheader {
    position: relative;
    z-index: 1015;
    background: #e8f9ff;
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
    margin-top: 0;
    margin-bottom: 0;
}

.part-hub-subheader__inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    min-height: 68px;
    padding: 0.55rem 0.75rem;
    margin-top: -39px;
}

.part-hub-subheader__links {
    list-style: none;
    margin: 0;
    padding: 0.35rem 0;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    gap: 0.125rem;
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scroll-snap-type: x proximity;
}

.part-hub-subheader__item {
    flex: 0 0 auto;
    scroll-snap-align: start;
}

.part-hub-subheader__link {
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
    padding: 0.65rem 0.55rem;
    min-height: 44px;
    font-size: 0.9375rem;
    font-weight: 700;
    color: #111827;
    text-decoration: none;
    line-height: 1.25;
    transition: color 0.15s ease;
}

.part-hub-subheader__link:hover {
    color: var(--part-hub-primary, #1e3a8a);
    text-decoration: none;
}

.part-hub-subheader__link--active {
    color: var(--part-hub-accent, #2563eb);
}

.part-hub-subheader__sep {
    font-weight: 800;
    color: #6b7280;
    white-space: pre;
}

.part-hub-subheader + .part-hub .part-hub-hero,
.part-hub-subheader + .mag-hub .mag-hub-hero {
    margin-top: 0;
}

.part-hub-subheader--voting .part-hub-subheader__link--active {
    color: #204a9b;
}

.part-hub-subheader--survey .part-hub-subheader__link--active {
    color: #1687cc;
}

.part-hub-subheader--magazine .part-hub-subheader__link--active {
    color: #2563eb;
}

@media (min-width: 992px) {
    .part-hub-subheader__inner {
        min-height: 80px;
        padding: 0.65rem 1rem;
    }

    .part-hub-subheader__links {
        flex-wrap: wrap;
        justify-content: center;
        overflow-x: visible;
        row-gap: 0.25rem;
    }

    .part-hub-subheader__link {
        font-size: 1rem;
        padding: 0.75rem 0.7rem;
        min-height: 48px;
    }
}

@media (min-width: 576px) and (max-width: 991.98px) {
    .part-hub-subheader__inner {
        min-height: 72px;
        padding: 0.5rem 0.65rem;
    }

    .part-hub-subheader__links {
        flex-wrap: wrap;
        justify-content: center;
        overflow-x: visible;
        row-gap: 0.2rem;
    }

    .part-hub-subheader__link {
        font-size: 0.9rem;
        padding: 0.6rem 0.5rem;
    }
}

@media (max-width: 991.98px) {
    .part-hub-subheader__inner {
        margin-top: -32px;
    }
}

@media (max-width: 575.98px) {
    .part-hub-subheader__inner {
        min-height: 64px;
        padding: 0.45rem 0.5rem;
        align-items: stretch;
    }

    .part-hub-subheader__links {
        justify-content: flex-start;
        flex-wrap: nowrap;
        padding-left: 0.15rem;
        padding-right: 0.15rem;
        gap: 0;
    }

    .part-hub-subheader__link {
        font-size: 0.8125rem;
        padding: 0.55rem 0.4rem;
        min-height: 42px;
    }

    .part-hub-subheader__sep {
        font-size: 0.75rem;
    }
}

.part-hub {
    --part-hub-primary: #1e3a8a;
    --part-hub-accent: #2563eb;
    --part-hub-ink: #0f172a;
    --part-hub-muted: #64748b;
    --part-hub-border: #e2e8f0;
    --part-hub-bg: #f8fafc;
    --part-hub-radius: 16px;
    --part-hub-hero-grad: linear-gradient(165deg, #0f172a 0%, #1e3a8a 45%, #1d4ed8 100%);
    --part-hub-btn-grad: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    --part-hub-btn-shadow: rgba(37, 99, 235, 0.28);
    color: var(--part-hub-ink);
}

.part-hub--survey {
    --part-hub-primary: #1687cc;
    --part-hub-accent: #1687cc;
    --part-hub-muted: #5a7185;
    --part-hub-border: #cce8f7;
    --part-hub-bg: #eef7fc;
    --part-hub-hero-grad: linear-gradient(165deg, #0b4d75 0%, #1687cc 48%, #3ba3e0 100%);
    --part-hub-btn-grad: linear-gradient(135deg, #1687cc 0%, #1270ad 100%);
    --part-hub-btn-shadow: rgba(22, 135, 204, 0.32);
}

.part-hub--voting {
    --part-hub-primary: #204a9b;
    --part-hub-accent: #204a9b;
    --part-hub-muted: #5a6478;
    --part-hub-border: #c8d4eb;
    --part-hub-bg: #eef2fa;
    --part-hub-hero-grad: linear-gradient(165deg, #0f2547 0%, #204a9b 48%, #2e5fad 100%);
    --part-hub-btn-grad: linear-gradient(135deg, #204a9b 0%, #183a78 100%);
    --part-hub-btn-shadow: rgba(32, 74, 155, 0.32);
}

.part-hub-hero {
    background:
        radial-gradient(ellipse 80% 60% at 20% 0%, rgba(255, 255, 255, 0.1) 0%, transparent 55%),
        var(--part-hub-hero-grad);
    color: #fff;
    padding: 3rem 0 3.5rem;
    margin-top: -20px;
}

.part-hub-hero__inner {
    max-width: 920px;
    margin: 0 auto;
    text-align: center;
}

.part-hub-hero__kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.35rem 0.85rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.part-hub-hero h1 {
    font-size: clamp(1.85rem, 4vw, 2.75rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.15;
    margin: 0 0 1rem;
}

.part-hub-hero__lead {
    font-size: 1.05rem;
    line-height: 1.65;
    color: rgba(226, 232, 240, 0.92);
    max-width: 680px;
    margin: 0 auto 1.75rem;
}

.part-hub-pills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
}

.part-hub-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.5rem 1rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    font-size: 0.8125rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.15s ease, transform 0.15s ease;
}

.part-hub-pill:hover {
    background: rgba(255, 255, 255, 0.18);
    color: #fff;
    transform: translateY(-1px);
}

.part-hub-body {
    padding: 2.5rem 0 4rem;
    background: var(--part-hub-bg);
}

.part-hub-section {
    margin-bottom: 3.5rem;
}

.part-hub-section__head {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.part-hub-section__title {
    font-size: clamp(1.35rem, 2.5vw, 1.75rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    margin: 0 0 0.35rem;
}

.part-hub-section__sub {
    margin: 0;
    color: var(--part-hub-muted);
    font-size: 0.9375rem;
    max-width: 560px;
}

.part-hub-year {
    display: inline-block;
    padding: 0.28rem 0.65rem;
    border-radius: 999px;
    background: #fef3c7;
    color: #b45309;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.part-hub--survey .part-hub-year {
    background: rgba(22, 135, 204, 0.14);
    color: #1687cc;
}

.part-hub--voting .part-hub-year {
    background: rgba(32, 74, 155, 0.14);
    color: #204a9b;
}

/* Program cards — survey: 4 + centred row; voting: 3 + centred row */
.part-hub-programs-layout {
    width: 100%;
}

.part-hub-card-grid {
    gap: 1.25rem;
}

.part-hub-card-grid--four {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.part-hub-card-grid--three {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.part-hub-card-grid--center {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.25rem;
    margin-top: 1.25rem;
}

/* 4-column layout: bottom cards match top cell width */
.part-hub-programs-layout--four-two .part-hub-card-grid--center .part-hub-card {
    flex: 0 1 calc((100% - 3.75rem) / 4);
    max-width: calc((100% - 3.75rem) / 4);
    min-width: 0;
}

/* 3-column layout: bottom 2 cards centred, same width as top row */
.part-hub-programs-layout--three-two .part-hub-card-grid--center .part-hub-card {
    flex: 0 1 calc((100% - 2.5rem) / 3);
    max-width: calc((100% - 2.5rem) / 3);
    min-width: 0;
}

@media (max-width: 1199.98px) {
    .part-hub-card-grid--four,
    .part-hub-card-grid--three {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .part-hub-programs-layout--four-two .part-hub-card-grid--center .part-hub-card,
    .part-hub-programs-layout--three-two .part-hub-card-grid--center .part-hub-card {
        flex: 0 1 calc((100% - 1.25rem) / 2);
        max-width: calc((100% - 1.25rem) / 2);
    }
}

@media (max-width: 575.98px) {
    .part-hub-card-grid--four,
    .part-hub-card-grid--three {
        grid-template-columns: 1fr;
    }

    .part-hub-card-grid--center {
        flex-direction: column;
        align-items: stretch;
    }

    .part-hub-programs-layout--four-two .part-hub-card-grid--center .part-hub-card,
    .part-hub-programs-layout--three-two .part-hub-card-grid--center .part-hub-card {
        flex: 1 1 100%;
        max-width: 100%;
    }
}

.part-hub-card {
    background: #fff;
    border: 1px solid var(--part-hub-border);
    border-radius: var(--part-hub-radius);
    padding: 1.35rem 1.35rem 1.25rem;
    display: flex;
    flex-direction: column;
    min-height: 100%;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.04);
    transition: box-shadow 0.15s ease, transform 0.15s ease;
}

.part-hub-card:hover {
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.08);
    transform: translateY(-2px);
}

.part-hub-card__tag {
    display: inline-block;
    padding: 0.22rem 0.55rem;
    border-radius: 999px;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 0.85rem;
    width: fit-content;
}

.part-hub--survey .part-hub-card__tag {
    background: rgba(22, 135, 204, 0.12);
    color: #1687cc;
}

.part-hub--voting .part-hub-card__tag {
    background: rgba(32, 74, 155, 0.12);
    color: #204a9b;
}

.part-hub-card__region {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--part-hub-muted);
    margin-bottom: 0.35rem;
}

.part-hub-card__title {
    font-size: 1.15rem;
    font-weight: 800;
    line-height: 1.25;
    margin: 0 0 0.65rem;
    letter-spacing: -0.02em;
}

.part-hub-card__title-line {
    display: block;
}

.part-hub-card__desc {
    font-size: 0.875rem;
    color: var(--part-hub-muted);
    line-height: 1.55;
    margin: 0 0 1.15rem;
    flex-grow: 1;
}

.part-hub-card__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    padding: 0.6rem 1.15rem;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.8125rem;
    text-decoration: none;
    background: var(--part-hub-btn-grad);
    color: #fff !important;
    box-shadow: 0 4px 14px var(--part-hub-btn-shadow);
    transition: transform 0.15s ease;
    width: fit-content;
}

.part-hub-card__btn:hover {
    transform: translateY(-1px);
    color: #fff !important;
}

.part-hub--survey .part-hub-section__title {
    color: #1687cc;
}

.part-hub--voting .part-hub-section__title {
    color: #204a9b;
}

/* Survey card accents — #1687cc family */
.part-hub--survey .part-hub-card--sur-1 { border-top: 3px solid #1687cc; }
.part-hub--survey .part-hub-card--sur-2 { border-top: 3px solid #3ba3e0; }
.part-hub--survey .part-hub-card--sur-3 { border-top: 3px solid #1270ad; }
.part-hub--survey .part-hub-card--sur-4 { border-top: 3px solid #5bb8e8; }
.part-hub--survey .part-hub-card--sur-5 { border-top: 3px solid #0d5a75; }
.part-hub--survey .part-hub-card--sur-6 { border-top: 3px solid #42a5e0; }

/* Voting card accents — #204a9b family */
.part-hub--voting .part-hub-card--vot-1 { border-top: 3px solid #204a9b; }
.part-hub--voting .part-hub-card--vot-2 { border-top: 3px solid #2e5fad; }
.part-hub--voting .part-hub-card--vot-3 { border-top: 3px solid #183a78; }
.part-hub--voting .part-hub-card--vot-4 { border-top: 3px solid #4a6fbd; }
.part-hub--voting .part-hub-card--vot-5 { border-top: 3px solid #1a3d85; }

/* How it works — 4-step journey */
.part-hub-journey-intro {
    background: #fff;
    border: 1px solid var(--part-hub-border);
    border-radius: var(--part-hub-radius);
    padding: 1.15rem 1.35rem;
    margin-bottom: 1.5rem;
}

.part-hub-journey-intro p {
    margin: 0;
    font-size: 0.9375rem;
    line-height: 1.65;
    color: var(--part-hub-muted);
}

.part-hub-journey-intro strong {
    color: var(--part-hub-primary);
}

.part-hub-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.part-hub-steps--journey {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

@media (max-width: 1199.98px) {
    .part-hub-steps--journey {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767.98px) {
    .part-hub-steps,
    .part-hub-steps--journey {
        grid-template-columns: 1fr;
    }
}

.part-hub-step {
    background: #fff;
    border: 1px solid var(--part-hub-border);
    border-radius: var(--part-hub-radius);
    padding: 1.5rem;
    text-align: center;
    position: relative;
}

.part-hub-step--journey {
    padding: 1.35rem 1.15rem 1.25rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
}

.part-hub-step--active {
    border-color: var(--part-hub-primary);
    box-shadow: 0 8px 28px var(--part-hub-btn-shadow);
    background: linear-gradient(180deg, #fff 0%, rgba(255, 255, 255, 0.92) 100%);
}

.part-hub-step__arrow {
    display: none;
}

@media (min-width: 1200px) {
    .part-hub-step--journey .part-hub-step__arrow {
        display: flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        right: -0.65rem;
        top: 50%;
        transform: translateY(-50%);
        width: 1.3rem;
        height: 1.3rem;
        border-radius: 50%;
        background: var(--part-hub-primary);
        color: #fff;
        font-size: 0.65rem;
        z-index: 2;
        box-shadow: 0 2px 8px var(--part-hub-btn-shadow);
    }

    .part-hub-step--journey:last-child .part-hub-step__arrow {
        display: none;
    }
}

.part-hub-step__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--part-hub-border);
    color: var(--part-hub-primary);
    font-size: 1.1rem;
    margin-bottom: 0.65rem;
}

.part-hub-step--active .part-hub-step__icon {
    background: var(--part-hub-btn-grad);
    border-color: transparent;
    color: #fff;
}

.part-hub-step__link {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    margin-top: auto;
    padding-top: 0.85rem;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--part-hub-primary);
    text-decoration: none;
}

.part-hub-step__link:hover {
    text-decoration: underline;
    color: var(--part-hub-primary);
}

.part-hub-step__here {
    display: inline-block;
    margin-top: auto;
    padding: 0.28rem 0.65rem;
    border-radius: 999px;
    background: var(--part-hub-btn-grad);
    color: #fff;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.part-hub-step__num {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--part-hub-btn-grad);
    color: #fff;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.85rem;
    font-size: 1rem;
}

.part-hub-step--journey p {
    flex-grow: 1;
}

.part-hub-step h3 {
    font-size: 1rem;
    font-weight: 800;
    margin: 0 0 0.5rem;
}

.part-hub-step p {
    font-size: 0.875rem;
    color: var(--part-hub-muted);
    margin: 0;
    line-height: 1.55;
}

/* Cross-link band */
.part-hub-cross {
    background: #fff;
    border: 1px solid var(--part-hub-border);
    border-radius: var(--part-hub-radius);
    padding: 1.75rem 2rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.part-hub-cross h3 {
    font-size: 1.1rem;
    font-weight: 800;
    margin: 0 0 0.35rem;
}

.part-hub-cross p {
    margin: 0;
    color: var(--part-hub-muted);
    font-size: 0.875rem;
}

.part-hub-cross__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
}

.part-hub-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.65rem 1.25rem;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.875rem;
    text-decoration: none;
    transition: transform 0.15s ease;
}

.part-hub-btn:hover {
    transform: translateY(-1px);
    text-decoration: none;
}

.part-hub-btn--primary {
    background: var(--part-hub-btn-grad);
    color: #fff !important;
    box-shadow: 0 6px 18px var(--part-hub-btn-shadow);
}

.part-hub-btn--ghost {
    background: #fff;
    color: var(--part-hub-primary) !important;
    border: 1px solid var(--part-hub-border);
}

.part-hub-btn--ghost:hover {
    background: rgba(255, 255, 255, 0.95);
    color: var(--part-hub-primary) !important;
    border-color: var(--part-hub-accent);
}

.part-hub--survey .part-hub-cross {
    border-color: #cce8f7;
    border-left: 4px solid #1687cc;
}

.part-hub--voting .part-hub-cross {
    border-color: #c8d4eb;
    border-left: 4px solid #204a9b;
}

.part-hub--survey .part-hub-step {
    border-color: #cce8f7;
}

.part-hub--voting .part-hub-step {
    border-color: #c8d4eb;
}

.part-hub--survey .part-hub-card:hover {
    box-shadow: 0 12px 32px rgba(22, 135, 204, 0.12);
}

.part-hub--voting .part-hub-card:hover {
    box-shadow: 0 12px 32px rgba(32, 74, 155, 0.12);
}

.part-hub-cta-band {
    background: var(--part-hub-hero-grad);
    border-radius: var(--part-hub-radius);
    padding: 2rem;
    text-align: center;
    color: #fff;
}

.part-hub-cta-band h3 {
    font-size: clamp(1.2rem, 2.5vw, 1.5rem);
    font-weight: 800;
    margin: 0 0 0.5rem;
}

.part-hub-cta-band p {
    margin: 0 0 1.25rem;
    color: rgba(226, 232, 240, 0.9);
    font-size: 0.9375rem;
}

.part-hub-cta-band__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.65rem;
}

.part-hub-btn--light {
    background: #fff;
    color: var(--part-hub-primary) !important;
}

.part-hub-btn--outline-light {
    background: transparent;
    color: #fff !important;
    border: 1px solid rgba(255, 255, 255, 0.35);
}

.part-hub-btn--outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff !important;
}

.part-hub-btn--sm {
    padding: 0.45rem 0.95rem;
    font-size: 0.8125rem;
}

/* Major cities — regional cards */
.part-hub-cities-layout {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
}

@media (max-width: 991.98px) {
    .part-hub-cities-layout {
        grid-template-columns: 1fr;
    }
}

.part-hub-city-region {
    background: #fff;
    border: 1px solid var(--part-hub-border);
    border-radius: var(--part-hub-radius);
    padding: 1.35rem 1.35rem 1.25rem;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.04);
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
}

.part-hub--survey .part-hub-city-region--north-india {
    border-top: 3px solid #1687cc;
}

.part-hub--survey .part-hub-city-region--maharashtra {
    border-top: 3px solid #3ba3e0;
}

.part-hub--voting .part-hub-city-region--north-india {
    border-top: 3px solid #204a9b;
}

.part-hub--voting .part-hub-city-region--maharashtra {
    border-top: 3px solid #4a6fbd;
}

.part-hub-city-region__head {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
}

.part-hub-city-region__title-wrap {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

.part-hub-city-region__icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.part-hub--survey .part-hub-city-region__icon {
    background: rgba(22, 135, 204, 0.12);
    color: #1687cc;
}

.part-hub--voting .part-hub-city-region__icon {
    background: rgba(32, 74, 155, 0.12);
    color: #204a9b;
}

.part-hub-city-region__title {
    font-size: 1.1rem;
    font-weight: 800;
    margin: 0 0 0.15rem;
    letter-spacing: -0.02em;
}

.part-hub-city-region__meta {
    margin: 0;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--part-hub-muted);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.part-hub-city-region__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    align-items: center;
}

.part-hub-city-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.part-hub-city-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.42rem 0.85rem 0.42rem 0.7rem;
    border-radius: 999px;
    font-size: 0.8125rem;
    font-weight: 600;
    text-decoration: none;
    border: 1px solid var(--part-hub-border);
    background: var(--part-hub-bg);
    color: var(--part-hub-ink);
    transition: background 0.15s ease, border-color 0.15s ease, transform 0.15s ease, color 0.15s ease;
}

.part-hub-city-chip__icon {
    font-size: 0.75rem;
    opacity: 0.85;
}

.part-hub-city-chip__arrow {
    font-size: 1.1rem;
    margin-left: -0.15rem;
    opacity: 0;
    transform: translateX(-4px);
    transition: opacity 0.15s ease, transform 0.15s ease;
}

a.part-hub-city-chip:hover {
    text-decoration: none;
    transform: translateY(-1px);
}

.part-hub--survey a.part-hub-city-chip:hover {
    background: rgba(22, 135, 204, 0.1);
    border-color: rgba(22, 135, 204, 0.35);
    color: #1270ad;
}

.part-hub--voting a.part-hub-city-chip:hover {
    background: rgba(32, 74, 155, 0.1);
    border-color: rgba(32, 74, 155, 0.35);
    color: #204a9b;
}

a.part-hub-city-chip:hover .part-hub-city-chip__arrow {
    opacity: 1;
    transform: translateX(0);
}

.part-hub-city-chip--static {
    cursor: default;
}

.part-hub--survey .part-hub-city-chip--static {
    background: rgba(22, 135, 204, 0.06);
    border-color: rgba(22, 135, 204, 0.18);
}

.part-hub--voting .part-hub-city-chip--static {
    background: rgba(32, 74, 155, 0.06);
    border-color: rgba(32, 74, 155, 0.18);
}
