/* Pratipaksha — commitment tracker (aligned with ChangeNepal basic template) */

/* Slightly larger base type for this section (child rem rules unchanged; inherit for body text) */
.pratipaksha-page {
    font-size: 1.125rem;
    line-height: 1.62;
}

.pratipaksha-hero {
    position: relative;
    border-radius: 10px;
    padding: 1.35rem 1.4rem;
    margin-bottom: 1.5rem;
    background: hsl(0 0% 100%);
    border: 1px solid hsl(220 13% 91%);
    box-shadow: 0 1px 2px hsl(220 14% 72% / 0.12);
    overflow: hidden;
}

.pratipaksha-hero__inner {
    position: relative;
}

.pratipaksha-bilingual__secondary {
    font-size: 0.92em;
    font-weight: 400;
    line-height: 1.45;
    margin-bottom: 0;
    margin-top: 0.35rem;
    opacity: 0.9;
}

.pratipaksha-hero__title {
    font-weight: 700;
    font-size: clamp(1.45rem, 2.6vw, 2rem);
    margin-bottom: 0;
    color: hsl(222 47% 11%);
    letter-spacing: -0.02em;
}

.pratipaksha-hero .pratipaksha-bilingual__secondary {
    color: hsl(215 16% 35%);
    font-size: clamp(1.02rem, 1.85vw, 1.22rem);
    font-weight: 500;
    opacity: 1;
}

.pratipaksha-hero__subtitle {
    color: hsl(215 14% 38%);
    font-size: 0.98em;
    max-width: 52rem;
    margin-bottom: 0;
    line-height: 1.55;
}

.pratipaksha-hero__subtitle--dim {
    color: hsl(215 12% 46%);
}

.pratipaksha-hero__meta {
    margin-top: 0.9rem;
    padding-top: 0.75rem;
    border-top: 1px solid hsl(220 13% 92%);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.15rem 0;
    row-gap: 0.2rem;
    font-size: 0.88em;
    font-weight: 500;
    color: hsl(215 12% 42%);
    letter-spacing: 0.01em;
}

.pratipaksha-hero__meta > span {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.pratipaksha-hero__meta > span + span::before {
    content: "·";
    margin-right: 0.5rem;
    color: hsl(220 9% 72%);
    font-weight: 700;
    font-size: 1.1em;
    line-height: 1;
    pointer-events: none;
}

.pratipaksha-countdown {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0;
    margin: 0;
    border-radius: 0;
    background: none;
    border: none;
    box-shadow: none;
    color: hsl(222 40% 18%);
    font-variant-numeric: tabular-nums;
    font-weight: 600;
    font-size: 1em;
}

.pratipaksha-stats {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.pratipaksha-stat {
    border-radius: 10px;
    padding: 0.9rem 1.05rem;
    background: hsl(220 20% 99%);
    border: 1px solid hsl(220 13% 91%);
}

.pratipaksha-stat__value {
    font-size: 1.42rem;
    font-weight: 700;
    color: var(--base-h, #0d6efd);
    line-height: 1.2;
}

.pratipaksha-stat__label {
    font-size: 0.76em;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: hsl(215 12% 42%);
    margin-top: 0.25rem;
}

.pratipaksha-overall {
    margin-bottom: 1.5rem;
}

.pratipaksha-overall__bar {
    height: 10px;
    border-radius: 999px;
    background: hsl(220 14% 92%);
    overflow: hidden;
}

.pratipaksha-overall__fill {
    height: 100%;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--base-h, #0d6efd), color-mix(in srgb, var(--base-h, #0d6efd) 70%, #22c55e));
    transition: width 0.4s ease;
}

.pratipaksha-filters .form--control,
.pratipaksha-filters .form-control {
    border-radius: 8px;
}

/* —— Index listing cards (commitment grid) —— */
.pratipaksha-list-card {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    min-height: 100%;
    background: hsl(0 0% 100%);
    border: 1px solid hsl(214 32% 91%);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 22px hsl(222 47% 11% / 0.07);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.pratipaksha-list-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 40px hsl(222 47% 11% / 0.12);
}

.pratipaksha-list-card__stripe {
    width: 4px;
    flex-shrink: 0;
    background: hsl(215 14% 72%);
}

.pratipaksha-list-card--not_started .pratipaksha-list-card__stripe {
    background: hsl(215 14% 68%);
}

.pratipaksha-list-card--in_progress .pratipaksha-list-card__stripe {
    background: #2563eb;
}

.pratipaksha-list-card--completed .pratipaksha-list-card__stripe {
    background: #059669;
}

.pratipaksha-list-card--broken .pratipaksha-list-card__stripe {
    background: #dc2626;
}

.pratipaksha-list-card--stalled .pratipaksha-list-card__stripe {
    background: #d97706;
}

.pratipaksha-list-card--manifesto_only .pratipaksha-list-card__stripe {
    background: #b91c1c;
}

.pratipaksha-list-card__main {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.pratipaksha-list-card__pad {
    padding: 1rem 1.15rem 0.9rem;
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
}

.pratipaksha-list-card__head {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.65rem;
    margin-bottom: 0.85rem;
}

.pratipaksha-list-card__titles {
    min-width: 0;
    width: 100%;
}

.pratipaksha-list-card__title {
    margin: 0;
    font-size: clamp(1.02rem, 1.9vw, 1.22rem);
    font-weight: 700;
    line-height: 1.28;
    letter-spacing: -0.02em;
    color: hsl(222 47% 11%);
}

.pratipaksha-list-card__title a {
    color: inherit;
    text-decoration: none;
}

.pratipaksha-list-card__title a:hover {
    color: var(--base-h, #2563eb);
}

.pratipaksha-list-card__title-sub {
    margin: 0.4rem 0 0;
    font-size: 0.875rem;
    font-weight: 500;
    line-height: 1.42;
    color: hsl(215 16% 38%);
}

.pratipaksha-list-card__status {
    flex-shrink: 0;
    align-self: flex-start;
    font-size: 0.625rem;
    font-weight: 800;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    padding: 0.38rem 0.72rem;
    border-radius: 999px;
    line-height: 1.2;
    text-align: center;
    max-width: 100%;
}

.pratipaksha-list-card--not_started .pratipaksha-list-card__status {
    background: hsl(210 40% 96%);
    color: hsl(215 19% 28%);
}

.pratipaksha-list-card--in_progress .pratipaksha-list-card__status {
    background: hsl(214 95% 93%);
    color: hsl(224 64% 33%);
}

.pratipaksha-list-card--completed .pratipaksha-list-card__status {
    background: hsl(152 76% 92%);
    color: hsl(152 71% 22%);
}

.pratipaksha-list-card--broken .pratipaksha-list-card__status {
    background: hsl(0 93% 94%);
    color: hsl(0 72% 32%);
}

.pratipaksha-list-card--stalled .pratipaksha-list-card__status {
    background: hsl(48 96% 89%);
    color: hsl(32 81% 28%);
}

.pratipaksha-list-card--manifesto_only .pratipaksha-list-card__status {
    background: hsl(0 86% 94%);
    color: hsl(350 67% 32%);
}

.pratipaksha-list-card__category {
    display: flex;
    gap: 0.65rem;
    align-items: flex-start;
    padding: 0.55rem 0.72rem;
    margin-bottom: 0.85rem;
    background: hsl(210 40% 98%);
    border: 1px solid hsl(214 32% 91%);
    border-radius: 10px;
}

.pratipaksha-list-card__category-icon {
    color: var(--base-h, #2563eb);
    font-size: 1.38rem;
    line-height: 1;
    margin-top: 0.06rem;
    flex-shrink: 0;
}

.pratipaksha-list-card__category-text {
    display: flex;
    flex-direction: column;
    gap: 0.12rem;
    min-width: 0;
}

.pratipaksha-list-card__category-primary {
    font-size: 0.8125rem;
    font-weight: 700;
    color: hsl(222 30% 22%);
    line-height: 1.32;
}

.pratipaksha-list-card__category-secondary {
    font-size: 0.78rem;
    font-weight: 500;
    color: hsl(215 12% 42%);
    line-height: 1.38;
}

.pratipaksha-list-card__notes {
    margin-bottom: 0.85rem;
    padding: 0.65rem 0.78rem;
    background: hsl(214 32% 95%);
    border-radius: 12px;
}

.pratipaksha-list-card__notes-label {
    display: block;
    font-size: 0.625rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: hsl(215 12% 45%);
    margin-bottom: 0.42rem;
}

.pratipaksha-list-card__notes-body {
    margin: 0;
    font-size: 0.875rem;
    line-height: 1.52;
    color: hsl(222 25% 26%);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.pratipaksha-list-card__progress-block {
    margin-top: auto;
    padding-top: 0.15rem;
}

.pratipaksha-list-card__progress-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 0.42rem;
}

.pratipaksha-list-card__progress-label {
    font-size: 0.75rem;
    font-weight: 700;
    color: hsl(215 14% 36%);
}

.pratipaksha-list-card__progress-pct {
    font-size: 0.95rem;
    font-weight: 800;
    font-variant-numeric: tabular-nums;
    color: hsl(222 47% 14%);
}

.pratipaksha-list-card__bar {
    height: 8px;
    border-radius: 999px;
    background: hsl(214 32% 91%);
    overflow: hidden;
}

.pratipaksha-list-card__bar-fill {
    height: 100%;
    border-radius: 999px;
    transition: width 0.35s ease;
    min-width: 0;
}

.pratipaksha-list-card--not_started .pratipaksha-list-card__bar-fill {
    background: hsl(215 14% 58%);
}

.pratipaksha-list-card--in_progress .pratipaksha-list-card__bar-fill {
    background: #2563eb;
}

.pratipaksha-list-card--completed .pratipaksha-list-card__bar-fill {
    background: #059669;
}

.pratipaksha-list-card--broken .pratipaksha-list-card__bar-fill {
    background: #dc2626;
}

.pratipaksha-list-card--stalled .pratipaksha-list-card__bar-fill {
    background: #d97706;
}

.pratipaksha-list-card--manifesto_only .pratipaksha-list-card__bar-fill {
    background: #b91c1c;
}

.pratipaksha-list-card__deadline {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    margin: 0.72rem 0 0;
    font-size: 0.84rem;
    font-weight: 600;
    color: hsl(215 14% 38%);
}

.pratipaksha-list-card__deadline i {
    font-size: 1.12rem;
    opacity: 0.88;
}

.pratipaksha-list-card__deadline.is-expired {
    color: hsl(0 72% 38%);
}

.pratipaksha-list-card__cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    margin: 0;
    margin-top: 0.85rem;
    padding: 0.92rem 1rem;
    font-size: 0.94rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-decoration: none;
    color: #fff !important;
    background: var(--base-h, #1e3a8a);
    border: none;
    border-radius: 0 0 14px 0;
    transition: filter 0.15s ease, background 0.15s ease;
}

.pratipaksha-list-card__cta:hover {
    filter: brightness(1.07);
    color: #fff !important;
}

.pratipaksha-list-card__cta i {
    font-size: 1.15rem;
    line-height: 1;
}

/* Detail page / legacy: thin progress (if reused) */
.pratipaksha-progress {
    height: 6px;
    border-radius: 999px;
    background: hsl(0 0% 0% / 0.08);
    overflow: hidden;
    margin-top: 0.5rem;
}

.pratipaksha-progress__fill {
    height: 100%;
    border-radius: 999px;
    background: var(--base-h, #0d6efd);
}

.pratipaksha-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.22rem 0.58rem;
    border-radius: 6px;
    font-size: 0.76em;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.pratipaksha-badge--not_started {
    background: hsl(220 14% 90%);
    color: hsl(220 10% 35%);
}

.pratipaksha-badge--in_progress {
    background: color-mix(in srgb, var(--base-h, #0d6efd) 18%, transparent);
    color: var(--base-h, #0d6efd);
}

.pratipaksha-badge--completed {
    background: hsl(142 76% 92%);
    color: hsl(142 71% 28%);
}

.pratipaksha-badge--broken {
    background: hsl(0 84% 94%);
    color: hsl(0 72% 35%);
}

.pratipaksha-badge--stalled {
    background: hsl(38 92% 92%);
    color: hsl(32 85% 32%);
}

.pratipaksha-detail__section {
    margin-bottom: 1.75rem;
}

.pratipaksha-detail__section h4 {
    font-size: 1.12em;
    margin-bottom: 0.65rem;
    color: var(--base-h, #0d6efd);
}

.pratipaksha-detail__body {
    line-height: 1.65;
    white-space: pre-wrap;
}

/* —— Commitment detail page (reference layout) —— */
.pratipaksha-detail {
    max-width: 52rem;
}

.pratipaksha-detail-id {
    font-size: 0.82em;
    font-weight: 600;
    color: hsl(220 9% 55%);
    letter-spacing: 0.04em;
    margin-bottom: 0.5rem;
}

.pratipaksha-detail-status-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    background: hsl(220 14% 94%);
    color: hsl(220 10% 28%);
    font-size: 0.72em;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.pratipaksha-detail-status-pill__dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--base-h, #0d6efd);
    flex-shrink: 0;
}

.pratipaksha-detail-status-pill--in_progress .pratipaksha-detail-status-pill__dot {
    background: var(--base-h, #2563eb);
}

.pratipaksha-detail-status-pill--completed .pratipaksha-detail-status-pill__dot {
    background: hsl(142 71% 36%);
}

.pratipaksha-detail-status-pill--broken .pratipaksha-detail-status-pill__dot {
    background: hsl(0 72% 45%);
}

.pratipaksha-detail-status-pill--stalled .pratipaksha-detail-status-pill__dot {
    background: hsl(32 90% 42%);
}

.pratipaksha-detail-status-pill--manifesto_only .pratipaksha-detail-status-pill__dot {
    background: hsl(350 72% 40%);
}

.pratipaksha-detail-title-np {
    font-size: clamp(1.35rem, 3.2vw, 1.85rem);
    font-weight: 700;
    line-height: 1.35;
    color: hsl(222 47% 11%);
    margin: 0 0 0.5rem;
    letter-spacing: -0.02em;
}

.pratipaksha-detail-title-en {
    font-size: 1.05em;
    font-weight: 400;
    line-height: 1.5;
    color: hsl(215 14% 40%);
    margin: 0 0 0.25rem;
    max-width: 48rem;
}

.pratipaksha-detail-meta-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.65rem;
    margin-top: 1.35rem;
}

@media (max-width: 575.98px) {
    .pratipaksha-detail-meta-grid {
        grid-template-columns: 1fr;
    }
}

.pratipaksha-detail-meta-cell {
    background: hsl(40 18% 97%);
    border-radius: 10px;
    padding: 0.85rem 1rem;
}

.pratipaksha-detail-meta-label {
    font-size: 0.68rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: hsl(215 12% 48%);
    margin-bottom: 0.35rem;
}

.pratipaksha-detail-meta-value {
    font-size: 0.95em;
    font-weight: 700;
    color: hsl(222 47% 11%);
    line-height: 1.4;
}

.pratipaksha-detail-meta-value__secondary {
    font-size: 0.88em;
    font-weight: 600;
    color: hsl(215 14% 36%);
    margin-top: 0.2rem;
}

.pratipaksha-detail-meta__highlight {
    color: var(--base-h, #2563eb);
    font-weight: 700;
}

.pratipaksha-detail-meta__highlight--success {
    color: hsl(142 71% 28%);
}

.pratipaksha-detail-meta__highlight--danger {
    color: hsl(0 72% 40%);
}

.pratipaksha-detail-progress-block {
    margin-top: 1.15rem;
    padding-top: 1.1rem;
    border-top: 1px solid hsl(220 13% 91%);
}

.pratipaksha-detail-progress-row {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    margin-top: 0.45rem;
}

.pratipaksha-detail-progress-bar {
    flex: 1;
    min-width: 0;
    height: 14px;
    border-radius: 999px;
    background: hsl(220 14% 91%);
    overflow: hidden;
}

.pratipaksha-detail-progress-bar__fill {
    height: 100%;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--base-h, #2563eb), color-mix(in srgb, var(--base-h, #2563eb) 65%, #22c55e));
    transition: width 0.35s ease;
}

.pratipaksha-detail-progress-pct {
    font-size: 0.9em;
    font-weight: 700;
    color: hsl(222 47% 18%);
    min-width: 2.75rem;
    text-align: right;
    font-variant-numeric: tabular-nums;
}

.pratipaksha-detail-share {
    margin-top: 1.15rem;
    padding-top: 1rem;
    border-top: 1px solid hsl(220 13% 91%);
}

.pratipaksha-detail-share__btn {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
}

.pratipaksha-detail-card {
    border-radius: 12px;
    background: hsl(0 0% 100%);
    box-shadow: 0 1px 3px hsl(220 14% 72% / 0.14);
    overflow: hidden;
}

.pratipaksha-detail-card__inner {
    padding: 1.2rem 1.35rem 1.25rem 1.25rem;
    border-left: 5px solid hsl(220 13% 78%);
}

.pratipaksha-detail-card--blue .pratipaksha-detail-card__inner {
    border-left-color: var(--base-h, #2563eb);
}

.pratipaksha-detail-card--green .pratipaksha-detail-card__inner {
    border-left-color: hsl(142 71% 38%);
}

.pratipaksha-detail-card--amber .pratipaksha-detail-card__inner {
    border-left-color: hsl(32 95% 44%);
}

.pratipaksha-detail-card--slate .pratipaksha-detail-card__inner {
    border-left-color: hsl(220 13% 72%);
}

.pratipaksha-detail-card--violet .pratipaksha-detail-card__inner {
    border-left-color: hsl(263 70% 50%);
}

.pratipaksha-detail-card--muted .pratipaksha-detail-card__inner {
    background: hsl(220 14% 98%);
}

.pratipaksha-detail-card--muted .pratipaksha-detail-card__body {
    color: hsl(215 12% 42%);
    font-style: italic;
}

.pratipaksha-evidence-list__item--divider {
    border-bottom: 1px solid hsl(220 14% 90%);
}

.pratipaksha-evidence-list__text {
    margin-bottom: 0;
}

.pratipaksha-evidence-list__link {
    font-size: 0.92em;
    font-weight: 600;
    color: var(--base-h, #2563eb);
    text-decoration: none;
}

.pratipaksha-evidence-list__link:hover {
    text-decoration: underline;
}

.pratipaksha-detail-card__label {
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: hsl(215 12% 46%);
    margin: 0 0 0.65rem;
}

.pratipaksha-detail-card__body {
    font-size: 0.98em;
    line-height: 1.68;
    color: hsl(215 16% 30%);
    white-space: pre-wrap;
    margin: 0;
}

/* Category strip: horizontal slider + clickable pills */
.pratipaksha-cat-slider {
    position: relative;
}

.pratipaksha-cat-slider__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 0.35rem;
}

.pratipaksha-cat-slider__label {
    letter-spacing: 0.04em;
}

.pratipaksha-cat-slider__arrows {
    display: flex;
    gap: 0.35rem;
    flex-shrink: 0;
}

.pratipaksha-cat-slider__btn {
    width: 2.25rem;
    height: 2.25rem;
    padding: 0;
    border-radius: 50%;
    border: 1px solid hsl(0 0% 0% / 0.12);
    background: hsl(0 0% 100% / 0.95);
    color: var(--base-h, #0d6efd);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    line-height: 1;
    cursor: pointer;
    transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.pratipaksha-cat-slider__btn:hover {
    background: color-mix(in srgb, var(--base-h, #0d6efd) 14%, white);
    border-color: color-mix(in srgb, var(--base-h, #0d6efd) 35%, transparent);
}

.pratipaksha-cat-slider__btn:focus-visible {
    outline: 2px solid var(--base-h, #0d6efd);
    outline-offset: 2px;
}

.pratipaksha-cat-slider__viewport {
    position: relative;
    margin-left: -0.25rem;
    margin-right: -0.25rem;
    mask-image: linear-gradient(to right, transparent, #000 12px, #000 calc(100% - 12px), transparent);
}

.pratipaksha-cat-slider__track {
    display: flex;
    flex-wrap: nowrap;
    gap: 0.65rem;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 0.4rem 0.5rem 0.7rem;
    scroll-snap-type: x proximity;
    scroll-padding-inline: 0.5rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: hsl(0 0% 0% / 0.25) transparent;
}

.pratipaksha-cat-slider__track::-webkit-scrollbar {
    height: 7px;
}

.pratipaksha-cat-slider__track::-webkit-scrollbar-thumb {
    background: hsl(0 0% 0% / 0.22);
    border-radius: 999px;
}

.pratipaksha-cat-pill {
    flex: 0 0 auto;
    scroll-snap-align: start;
    font-size: 0.92em;
    padding: 0.55rem 0.85rem;
    border-radius: 14px;
    background: hsl(0 0% 0% / 0.04);
    border: 1px solid hsl(0 0% 0% / 0.1);
    text-decoration: none;
    color: inherit;
    min-width: 11.75rem;
    max-width: 15rem;
    transition: border-color 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
}

.pratipaksha-cat-pill:hover {
    border-color: color-mix(in srgb, var(--base-h, #0d6efd) 40%, transparent);
    background: color-mix(in srgb, var(--base-h, #0d6efd) 7%, transparent);
    color: inherit;
}

.pratipaksha-cat-pill:focus-visible {
    outline: 2px solid var(--base-h, #0d6efd);
    outline-offset: 2px;
}

.pratipaksha-cat-pill.is-active {
    border-color: var(--base-h, #0d6efd);
    background: color-mix(in srgb, var(--base-h, #0d6efd) 11%, white);
    box-shadow: 0 1px 0 color-mix(in srgb, var(--base-h, #0d6efd) 20%, transparent);
}

.pratipaksha-cat-pill__secondary {
    font-size: 0.9em;
    opacity: 0.88;
    line-height: 1.35;
}

.pratipaksha-cat-pill__meta {
    font-size: 0.82em;
    opacity: 0.72;
    line-height: 1.3;
}

.pratipaksha-empty {
    text-align: center;
    padding: 3rem 1.5rem;
}

.pratipaksha-empty__icon {
    font-size: 3.15rem;
}

@media (max-width: 575.98px) {
    .pratipaksha-hero {
        padding: 1.25rem 1rem;
    }
}

/* Cabinet Wealth Map (minister asset declarations) */
.cabinet-wealth-breadcrumb .breadcrumb {
    background: transparent;
    padding: 0;
    font-size: 0.9rem;
}

.cabinet-wealth-disclaimer {
    border-left: 3px solid color-mix(in srgb, var(--base-h, #0d6efd) 55%, transparent);
}

.cabinet-wealth-province-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    min-height: 3.5rem;
    align-items: stretch;
}

.cabinet-wealth-province-strip__seg {
    min-width: 3.5rem;
    border-radius: 8px;
    padding: 0.45rem 0.55rem;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    line-height: 1.25;
    transition: transform 0.15s ease;
}

.cabinet-wealth-province-strip__seg:hover {
    transform: translateY(-2px);
}

.cabinet-wealth-province-strip__label {
    font-size: 0.72rem;
    font-weight: 600;
    opacity: 0.95;
}

.cabinet-wealth-province-strip__val {
    font-size: 0.78rem;
    font-weight: 700;
}

.cabinet-wealth-province-strip__seg--koshi { background: linear-gradient(135deg, #0ea5e9, #0369a1); }
.cabinet-wealth-province-strip__seg--madhesh { background: linear-gradient(135deg, #22c55e, #15803d); }
.cabinet-wealth-province-strip__seg--bagmati { background: linear-gradient(135deg, #a855f7, #6d28d9); }
.cabinet-wealth-province-strip__seg--gandaki { background: linear-gradient(135deg, #f97316, #c2410c); }
.cabinet-wealth-province-strip__seg--lumbini { background: linear-gradient(135deg, #eab308, #a16207); }
.cabinet-wealth-province-strip__seg--karnali { background: linear-gradient(135deg, #64748b, #334155); }
.cabinet-wealth-province-strip__seg--sudurpashchim { background: linear-gradient(135deg, #14b8a6, #0f766e); }
.cabinet-wealth-province-strip__seg--other { background: linear-gradient(135deg, #94a3b8, #475569); }

.cabinet-wealth-chart-wrap {
    position: relative;
    height: 280px;
}

.cabinet-wealth-chart-wrap--doughnut {
    max-width: 360px;
    margin: 0 auto;
}

/* Cabinet — minister detail cards */
.cabinet-wealth-section-title {
    font-weight: 700;
    font-size: clamp(1.15rem, 2.2vw, 1.35rem);
    letter-spacing: -0.02em;
    color: hsl(222 47% 11%);
    margin-bottom: 0.35rem;
}

.cabinet-wealth-section-lead {
    max-width: 40rem;
    line-height: 1.55;
}

.cabinet-wealth-minister {
    position: relative;
    border-radius: 16px;
    background: hsl(0 0% 100%);
    border: 1px solid hsl(220 13% 91%);
    box-shadow:
        0 1px 2px hsl(220 14% 72% / 0.08),
        0 12px 28px hsl(220 20% 50% / 0.06);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.cabinet-wealth-minister:hover {
    box-shadow:
        0 2px 4px hsl(220 14% 72% / 0.1),
        0 16px 36px hsl(220 20% 45% / 0.08);
    transform: translateY(-2px);
}

.cabinet-wealth-minister::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 4px;
    border-radius: 16px 16px 0 0;
    opacity: 1;
}

.cabinet-wealth-minister--a0::before { background: linear-gradient(90deg, #0ea5e9, #6366f1); }
.cabinet-wealth-minister--a1::before { background: linear-gradient(90deg, #a855f7, #ec4899); }
.cabinet-wealth-minister--a2::before { background: linear-gradient(90deg, #22c55e, #14b8a6); }
.cabinet-wealth-minister--a3::before { background: linear-gradient(90deg, #f97316, #eab308); }
.cabinet-wealth-minister--a4::before { background: linear-gradient(90deg, #64748b, #334155); }
.cabinet-wealth-minister--a5::before { background: linear-gradient(90deg, #06b6d4, #3b82f6); }

.cabinet-wealth-minister__header {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem 1.35rem 1rem;
    padding-top: calc(1.25rem + 4px);
    border-bottom: 1px solid hsl(220 14% 94%);
    background: linear-gradient(180deg, hsl(220 20% 99%) 0%, hsl(0 0% 100%) 100%);
}

.cabinet-wealth-minister__avatar {
    flex-shrink: 0;
    width: 3.25rem;
    height: 3.25rem;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.65rem;
    line-height: 1;
    background: linear-gradient(145deg, hsl(220 14% 96%), hsl(220 14% 90%));
    border: 1px solid hsl(220 13% 88%);
    box-shadow: inset 0 1px 0 hsl(0 0% 100% / 0.8);
}

.cabinet-wealth-minister__identity {
    min-width: 0;
}

.cabinet-wealth-minister__name {
    font-size: clamp(1.08rem, 2vw, 1.22rem);
    font-weight: 700;
    line-height: 1.3;
    margin: 0 0 0.25rem;
    color: hsl(222 47% 11%);
    letter-spacing: -0.02em;
}

.cabinet-wealth-minister__role {
    font-size: 0.9rem;
    color: hsl(215 14% 38%);
    margin: 0 0 0.45rem;
    line-height: 1.45;
}

.cabinet-wealth-minister__party {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 0.2rem 0.55rem;
    border-radius: 6px;
    background: hsl(220 14% 94%);
    color: hsl(215 16% 32%);
    border: 1px solid hsl(220 13% 88%);
}

.cabinet-wealth-minister__body {
    padding: 1.1rem 1.35rem 1.25rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cabinet-wealth-minister__total {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    padding: 0.85rem 1rem;
    border-radius: 12px;
    background: linear-gradient(135deg, hsl(220 40% 98%), hsl(210 40% 97%));
    border: 1px solid hsl(220 14% 90%);
}

.cabinet-wealth-minister__total-label {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: hsl(215 12% 42%);
}

.cabinet-wealth-minister__total-amount {
    font-size: clamp(1.2rem, 2.4vw, 1.45rem);
    font-weight: 800;
    font-variant-numeric: tabular-nums;
    letter-spacing: -0.02em;
    color: hsl(222 47% 18%);
}

.cabinet-wealth-minister__facts {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.5rem 0.75rem;
    margin: 0;
}

.cabinet-wealth-minister__fact {
    margin: 0;
    padding: 0.5rem 0.65rem;
    border-radius: 10px;
    background: hsl(220 14% 98%);
    border: 1px solid hsl(220 13% 92%);
}

.cabinet-wealth-minister__fact--wide {
    grid-column: 1 / -1;
}

.cabinet-wealth-minister__fact dt {
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: hsl(215 12% 45%);
    margin: 0 0 0.15rem;
}

.cabinet-wealth-minister__fact dd {
    margin: 0;
    font-size: 0.88rem;
    font-weight: 600;
    font-variant-numeric: tabular-nums;
    color: hsl(222 40% 16%);
}

.cabinet-wealth-minister__highlight {
    padding: 0.75rem 0.9rem;
    border-radius: 12px;
    border-left: 4px solid hsl(217 91% 55%);
    background: hsl(214 100% 97% / 0.65);
}

.cabinet-wealth-minister__highlight-label {
    display: block;
    font-size: 0.68rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: hsl(217 55% 38%);
    margin-bottom: 0.35rem;
}

.cabinet-wealth-minister__highlight-text {
    margin: 0;
    font-size: 0.92rem;
    line-height: 1.55;
    color: hsl(222 35% 18%);
}

.cabinet-wealth-minister__income {
    padding: 0.65rem 0.85rem;
    border-radius: 10px;
    background: hsl(45 100% 97% / 0.85);
    border: 1px solid hsl(45 60% 88%);
}

.cabinet-wealth-minister__income-label {
    display: block;
    font-size: 0.68rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: hsl(32 30% 38%);
    margin-bottom: 0.3rem;
}

.cabinet-wealth-minister__income-text {
    margin: 0;
    font-size: 0.88rem;
    line-height: 1.5;
    color: hsl(28 25% 22%);
}

.cabinet-wealth-minister__land-head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 0.5rem;
    margin-top: 0.15rem;
    padding-top: 0.85rem;
    border-top: 1px dashed hsl(220 14% 88%);
}

.cabinet-wealth-minister__land-title {
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: hsl(215 14% 35%);
}

.cabinet-wealth-minister__land-meta {
    font-size: 0.75rem;
    font-weight: 600;
    color: hsl(215 12% 48%);
    font-variant-numeric: tabular-nums;
}

.cabinet-wealth-minister__plots {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}

.cabinet-wealth-plot {
    border-radius: 12px;
    padding: 0.65rem 0.8rem;
    background: hsl(0 0% 100%);
    border: 1px solid hsl(220 13% 90%);
    border-left-width: 4px;
    box-shadow: 0 1px 0 hsl(220 14% 96%);
}

.cabinet-wealth-plot--koshi { border-left-color: #0ea5e9; }
.cabinet-wealth-plot--madhesh { border-left-color: #22c55e; }
.cabinet-wealth-plot--bagmati { border-left-color: #a855f7; }
.cabinet-wealth-plot--gandaki { border-left-color: #f97316; }
.cabinet-wealth-plot--lumbini { border-left-color: #eab308; }
.cabinet-wealth-plot--karnali { border-left-color: #64748b; }
.cabinet-wealth-plot--sudurpashchim { border-left-color: #14b8a6; }
.cabinet-wealth-plot--other { border-left-color: #94a3b8; }

.cabinet-wealth-plot__top {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.35rem 0.75rem;
    margin-bottom: 0.4rem;
}

.cabinet-wealth-plot__location {
    font-weight: 600;
    font-size: 0.9rem;
    line-height: 1.45;
    color: hsl(222 40% 14%);
    flex: 1;
    min-width: 0;
}

.cabinet-wealth-plot__badge {
    flex-shrink: 0;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    padding: 0.2rem 0.45rem;
    border-radius: 6px;
    background: hsl(220 14% 94%);
    color: hsl(215 14% 32%);
    border: 1px solid hsl(220 13% 86%);
    max-width: 100%;
    text-align: center;
}

.cabinet-wealth-plot__bottom {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.35rem;
}

.cabinet-wealth-plot__owner {
    font-size: 0.82rem;
    color: hsl(215 12% 42%);
    line-height: 1.4;
    flex: 1;
    min-width: 0;
}

.cabinet-wealth-plot__value {
    font-size: 0.88rem;
    font-weight: 800;
    font-variant-numeric: tabular-nums;
    color: hsl(222 47% 18%);
}

.cabinet-wealth-minister__footer {
    padding: 0.65rem 1.35rem 1rem;
    margin-top: auto;
    border-top: 1px solid hsl(220 14% 94%);
    background: hsl(220 20% 99%);
}

.cabinet-wealth-minister__source {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.82rem;
    font-weight: 600;
    color: hsl(217 55% 42%);
    text-decoration: none;
}

.cabinet-wealth-minister__source:hover {
    color: hsl(217 70% 36%);
    text-decoration: underline;
}

@media (max-width: 575.98px) {
    .cabinet-wealth-minister__facts {
        grid-template-columns: 1fr;
    }
}
