/* Affordability & Salary Guide – site-aligned blue theme + infographic-style visuals */

.guide-page {
    --guide-accent: #2563eb;
    --guide-accent-soft: rgba(37, 99, 235, 0.12);
    --guide-accent-border: rgba(37, 99, 235, 0.25);
    --guide-dark: #1e293b;
    --guide-text: #1e293b;
    --guide-muted: #64748b;
    --guide-bg: #f8fafc;
    --guide-card: #ffffff;
    --guide-border: #e2e8f0;
    --guide-radius: 16px;
    --guide-radius-sm: 10px;
    --guide-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    --guide-font: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.guide-page body,
.guide-page {
    font-family: var(--guide-font);
    background: var(--guide-bg);
    color: var(--guide-text);
    line-height: 1.65;
}

/* Hero */
.guide-hero {
    text-align: center;
    padding: 48px 24px 40px;
    max-width: 720px;
    margin: 0 auto;
}

.guide-hero .guide-breadcrumb {
    font-size: 0.875rem;
    color: var(--guide-muted);
    margin-bottom: 12px;
}

.guide-hero .guide-breadcrumb a {
    color: var(--guide-accent);
    text-decoration: none;
    font-weight: 500;
}

.guide-hero .guide-breadcrumb a:hover { text-decoration: underline; }

.guide-hero h1 {
    font-size: clamp(1.85rem, 4.5vw, 2.5rem);
    font-weight: 700;
    color: var(--guide-dark);
    line-height: 1.2;
    margin-bottom: 16px;
}

.guide-hero .guide-tagline {
    font-size: 1.1rem;
    color: var(--guide-muted);
    line-height: 1.6;
}

.guide-content {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 24px 64px;
}

.guide-content p {
    margin-bottom: 1rem;
    font-size: 1rem;
    color: var(--guide-text);
}

.guide-content p:last-child { margin-bottom: 0; }

/* Section + infographic wrapper */
.guide-section {
    margin-top: 48px;
}

.guide-section-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--guide-dark);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.guide-section-title .guide-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: var(--guide-accent-soft);
    color: var(--guide-accent);
    font-family: var(--guide-font);
    font-size: 1rem;
    font-weight: 700;
}

.guide-section-desc {
    font-size: 0.95rem;
    color: var(--guide-muted);
    margin-bottom: 24px;
    max-width: 60ch;
}

/* Infographic panel – visual section with icon */
.guide-infographic {
    background: var(--guide-card);
    border-radius: var(--guide-radius);
    box-shadow: var(--guide-shadow);
    border: 1px solid var(--guide-border);
    overflow: hidden;
    margin-top: 20px;
}

.guide-infographic-header {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background: linear-gradient(135deg, var(--guide-accent-soft) 0%, rgba(37, 99, 235, 0.06) 100%);
    border-bottom: 1px solid var(--guide-border);
}

.guide-infographic-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: var(--guide-accent);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.guide-infographic-icon svg {
    width: 28px;
    height: 28px;
}

.guide-infographic-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--guide-dark);
    margin: 0;
}

/* Salary by city: infographic with bar chart + cards */
.guide-salary-infographic {
    margin-top: 20px;
}

.guide-salary-bars {
    padding: 24px;
}

.guide-salary-bar-row {
    margin-bottom: 16px;
}

.guide-salary-bar-row:last-child { margin-bottom: 0; }

.guide-salary-bar-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--guide-text);
}

.guide-salary-bar-label span:last-child {
    color: var(--guide-accent);
    font-weight: 700;
}

.guide-salary-bar-track {
    height: 24px;
    background: #f1f5f9;
    border-radius: 12px;
    overflow: hidden;
}

.guide-salary-bar-fill {
    height: 100%;
    border-radius: 12px;
    background: linear-gradient(90deg, var(--guide-accent), #3b82f6);
    min-width: 8px;
    transition: width 0.5s ease;
}

/* Salary by city: single table (SEO-friendly, no truncation) */
.guide-salary-table-wrap {
    margin-top: 24px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    background: var(--guide-card);
    border-radius: var(--guide-radius);
    box-shadow: var(--guide-shadow);
    border: 1px solid var(--guide-border);
}

.guide-salary-table {
    width: 100%;
    min-width: 320px;
    border-collapse: collapse;
    font-size: 0.9375rem;
}

.guide-salary-table th,
.guide-salary-table td {
    padding: 14px 16px;
    text-align: left;
    border-bottom: 1px solid var(--guide-border);
}

.guide-salary-table th {
    font-weight: 700;
    color: var(--guide-dark);
    background: linear-gradient(180deg, rgba(248, 250, 252, 0.8) 0%, rgba(241, 245, 249, 0.5) 100%);
}

.guide-salary-table th:not(:first-child) {
    text-align: right;
}

.guide-salary-table tbody tr:last-child td {
    border-bottom: none;
}

.guide-salary-table td {
    color: var(--guide-text);
}

.guide-salary-table td:not(:first-child) {
    text-align: right;
    font-weight: 600;
    white-space: nowrap;
}

.guide-salary-table td strong {
    display: block;
    margin-bottom: 2px;
}

.guide-table-note {
    display: block;
    font-size: 0.8125rem;
    font-weight: 400;
    color: var(--guide-muted);
}

.guide-assumptions {
    margin-top: 24px;
    padding: 20px 24px;
    background: var(--guide-accent-soft);
    border: 1px solid var(--guide-accent-border);
    border-radius: var(--guide-radius-sm);
}

.guide-assumptions h4 {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--guide-dark);
    margin-bottom: 10px;
}

.guide-assumptions ul {
    margin: 0;
    padding-left: 1.25rem;
    font-size: 0.9rem;
    color: var(--guide-muted);
    line-height: 1.7;
}

/* 50-30-20: visual blocks in site blue */
.guide-rule-blocks {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0;
    margin-top: 24px;
    border-radius: var(--guide-radius);
    overflow: hidden;
    box-shadow: var(--guide-shadow);
}

.guide-rule-block {
    padding: 28px 20px;
    text-align: center;
    min-height: 140px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.guide-rule-block:nth-child(1) {
    background: linear-gradient(180deg, #2563eb 0%, #1d4ed8 100%);
    color: #fff;
}

.guide-rule-block:nth-child(2) {
    background: linear-gradient(180deg, #60a5fa 0%, #3b82f6 100%);
    color: #fff;
}

.guide-rule-block:nth-child(3) {
    background: linear-gradient(180deg, #bfdbfe 0%, #93c5fd 100%);
    color: #1e293b;
}

.guide-rule-block .guide-rule-pct {
    font-size: 2.25rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 4px;
    font-family: var(--guide-font);
}

.guide-rule-block .guide-rule-label {
    font-size: 0.9rem;
    font-weight: 600;
    opacity: 0.95;
}

.guide-rule-tight {
    margin-top: 16px;
    padding: 14px 18px;
    background: #fef3c7;
    border-left: 4px solid #d97706;
    border-radius: 0 var(--guide-radius-sm) var(--guide-radius-sm) 0;
    font-size: 0.95rem;
    color: #92400e;
}

/* Savings: infographic with stepped visual + icons */
.guide-savings-infographic {
    margin-top: 20px;
    background: var(--guide-card);
    border-radius: var(--guide-radius);
    box-shadow: var(--guide-shadow);
    border: 1px solid var(--guide-border);
    padding: 24px;
}

.guide-savings-visual {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 24px;
}

@media (min-width: 600px) {
    .guide-savings-visual {
        flex-direction: row;
        justify-content: center;
        align-items: flex-end;
        gap: 12px;
        min-height: 160px;
    }
}

.guide-savings-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    flex: 1;
    max-width: 180px;
    margin: 0 auto;
}

.guide-savings-step-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--guide-accent-soft);
    color: var(--guide-accent);
    display: flex;
    align-items: center;
    justify-content: center;
}

.guide-savings-step-icon svg { width: 28px; height: 28px; }

.guide-savings-step-amount {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--guide-dark);
}

.guide-savings-step-label {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--guide-muted);
}

.guide-savings-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 20px;
}

@media (min-width: 600px) {
    .guide-savings-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.guide-savings-card {
    background: #f8fafc;
    border-radius: var(--guide-radius);
    border: 1px solid var(--guide-border);
    padding: 24px;
}

.guide-savings-card .guide-tier {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--guide-accent);
    margin-bottom: 6px;
}

.guide-savings-card .guide-amount {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--guide-dark);
    margin-bottom: 12px;
    font-family: var(--guide-font);
}

.guide-savings-card .guide-detail {
    font-size: 0.9rem;
    color: var(--guide-muted);
    line-height: 1.6;
}

.guide-savings-card ul {
    margin: 12px 0 0;
    padding-left: 1.1rem;
    font-size: 0.875rem;
    color: var(--guide-muted);
    line-height: 1.65;
}

/* Car: infographic two cards with icons */
.guide-car-infographic {
    margin-top: 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

@media (max-width: 520px) {
    .guide-car-infographic { grid-template-columns: 1fr; }
}

.guide-car-card {
    padding: 24px;
    border-radius: var(--guide-radius-sm);
    border: 1px solid var(--guide-border);
    background: var(--guide-card);
    box-shadow: var(--guide-shadow);
}

.guide-car-card.yes {
    background: var(--guide-accent-soft);
    border-color: var(--guide-accent-border);
}

.guide-car-card .guide-car-icon-wrap {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: var(--guide-accent);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
}

.guide-car-card.yes .guide-car-icon-wrap {
    background: var(--guide-accent);
}

.guide-car-card .guide-car-icon-wrap svg { width: 28px; height: 28px; }

.guide-car-card .guide-car-title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--guide-dark);
}

.guide-car-card .guide-car-cities {
    font-size: 0.9rem;
    color: var(--guide-muted);
    line-height: 1.6;
}

/* Canada vs Australia: infographic comparison with category icons */
.guide-compare-infographic {
    margin-top: 24px;
    background: var(--guide-card);
    border-radius: var(--guide-radius);
    box-shadow: var(--guide-shadow);
    border: 1px solid var(--guide-border);
    overflow: hidden;
}

.guide-compare-row {
    display: grid;
    grid-template-columns: auto 1fr 1fr 1fr;
    gap: 12px;
    padding: 16px 20px;
    align-items: center;
    border-bottom: 1px solid var(--guide-border);
    font-size: 0.95rem;
}

.guide-compare-row:last-child { border-bottom: none; }

.guide-compare-row .guide-compare-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--guide-accent-soft);
    color: var(--guide-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.guide-compare-row .guide-compare-icon svg { width: 20px; height: 20px; }

.guide-compare-row.guide-compare-header {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    color: #fff;
    font-weight: 700;
}

.guide-compare-row.guide-compare-header .guide-compare-icon {
    background: rgba(255,255,255,0.2);
    color: #fff;
}

.guide-compare-row .guide-compare-cat { font-weight: 600; color: var(--guide-text); }
.guide-compare-row .guide-compare-ca,
.guide-compare-row .guide-compare-au {
    color: var(--guide-muted);
}

@media (max-width: 640px) {
    .guide-compare-infographic { overflow-x: auto; -webkit-overflow-scrolling: touch; }
    .guide-compare-row {
        min-width: 520px;
        font-size: 0.875rem;
        padding: 12px 16px;
    }
}

/* CTA – site blue */
.guide-cta-block {
    margin-top: 48px;
    padding: 32px 28px;
    background: linear-gradient(135deg, #1e293b 0%, #2563eb 100%);
    color: #fff;
    border-radius: var(--guide-radius);
    text-align: center;
}

.guide-cta-block h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #fff;
}

.guide-cta-block p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.guide-cta-block .guide-cta-btn {
    display: inline-block;
    background: #fff;
    color: #1e293b;
    font-weight: 700;
    padding: 14px 28px;
    border-radius: var(--guide-radius-sm);
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
}

.guide-cta-block .guide-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.guide-faq-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.guide-faq-list li {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--guide-border);
}

.guide-faq-list li:last-child { margin-bottom: 0; padding-bottom: 0; border-bottom: none; }

.guide-faq-list .guide-faq-q {
    font-weight: 700;
    color: var(--guide-dark);
    margin-bottom: 6px;
    font-size: 1rem;
}

.guide-faq-list .guide-faq-a {
    font-size: 0.95rem;
    color: var(--guide-muted);
    line-height: 1.65;
}

.guide-footer-links {
    margin-top: 40px;
    padding-top: 24px;
    border-top: 1px solid var(--guide-border);
    font-size: 0.9rem;
    color: var(--guide-muted);
}

.guide-footer-links a {
    color: var(--guide-accent);
    text-decoration: none;
    font-weight: 500;
}

.guide-footer-links a:hover { text-decoration: underline; }

/* Tax section styles */
.guide-tax-overview {
    margin-top: 20px;
    background: var(--guide-card);
    border-radius: var(--guide-radius);
    box-shadow: var(--guide-shadow);
    border: 1px solid var(--guide-border);
    overflow: hidden;
}

.guide-tax-points {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.guide-tax-point {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    background: var(--guide-accent-soft);
    border-radius: var(--guide-radius-sm);
    border: 1px solid var(--guide-accent-border);
}

.guide-tax-point-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: var(--guide-accent);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.guide-tax-point-icon svg { width: 22px; height: 22px; }

.guide-tax-point-text {
    font-size: 0.95rem;
    color: var(--guide-text);
    line-height: 1.5;
}

.guide-tax-point-text strong {
    color: var(--guide-dark);
}

/* Tax deductions */
.guide-tax-deductions {
    margin-top: 28px;
    padding: 24px;
    background: #f8fafc;
    border-radius: var(--guide-radius);
    border: 1px solid var(--guide-border);
}

.guide-tax-deductions h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--guide-dark);
    margin-bottom: 8px;
}

.guide-tax-deductions > p {
    font-size: 0.95rem;
    color: var(--guide-muted);
    margin-bottom: 16px;
}

.guide-tax-deduction-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 16px;
}

@media (max-width: 480px) {
    .guide-tax-deduction-cards { grid-template-columns: 1fr; }
}

.guide-tax-deduction-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 16px;
    background: var(--guide-card);
    border: 2px solid var(--guide-accent-border);
    border-radius: var(--guide-radius-sm);
    text-align: center;
}

.guide-tax-deduction-abbr {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--guide-accent);
    margin-bottom: 4px;
}

.guide-tax-deduction-name {
    font-size: 0.85rem;
    color: var(--guide-muted);
    font-weight: 500;
}

.guide-tax-deduction-note {
    font-size: 0.9rem;
    color: var(--guide-muted);
    font-style: italic;
    margin: 0;
}

/* Tax example */
.guide-tax-example {
    margin-top: 28px;
    background: var(--guide-card);
    border-radius: var(--guide-radius);
    box-shadow: var(--guide-shadow);
    border: 1px solid var(--guide-border);
    overflow: hidden;
}

.guide-tax-example-content {
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-align: center;
}

.guide-tax-example-scenario,
.guide-tax-example-result {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.guide-tax-example-label {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--guide-muted);
}

.guide-tax-example-value {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--guide-dark);
    line-height: 1.2;
}

.guide-tax-example-value span {
    font-size: 1rem;
    font-weight: 500;
    color: var(--guide-muted);
}

.guide-tax-example-value.highlight {
    color: var(--guide-accent);
}

.guide-tax-example-arrow {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--guide-accent) 0%, #3b82f6 100%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.guide-tax-example-arrow svg { width: 24px; height: 24px; }

.guide-tax-example-weekly,
.guide-tax-example-monthly {
    font-size: 1rem;
    font-weight: 600;
    color: var(--guide-muted);
    padding: 8px 16px;
    background: var(--guide-accent-soft);
    border-radius: 20px;
    margin-top: 4px;
}

.guide-tax-example-note {
    padding: 14px 24px;
    background: #fef3c7;
    border-top: 1px solid #fde68a;
    font-size: 0.875rem;
    color: #92400e;
    margin: 0;
    text-align: center;
}

/* Sales tax */
.guide-tax-sales {
    margin-top: 28px;
    padding: 24px;
    background: var(--guide-card);
    border-radius: var(--guide-radius);
    box-shadow: var(--guide-shadow);
    border: 1px solid var(--guide-border);
}

.guide-tax-sales h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--guide-dark);
    margin-bottom: 8px;
}

.guide-tax-sales > p {
    font-size: 0.95rem;
    color: var(--guide-muted);
    margin-bottom: 20px;
}

.guide-tax-sales-range {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.guide-tax-sales-low,
.guide-tax-sales-high {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--guide-accent);
    min-width: 50px;
    text-align: center;
}

.guide-tax-sales-bar {
    flex: 1;
    height: 12px;
    border-radius: 6px;
    background: linear-gradient(90deg, #bfdbfe 0%, var(--guide-accent) 100%);
}

.guide-tax-sales-examples {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 16px;
}

@media (max-width: 560px) {
    .guide-tax-sales-examples { grid-template-columns: 1fr; }
}

.guide-tax-sales-example {
    display: flex;
    flex-direction: column;
    padding: 16px;
    background: #f8fafc;
    border-radius: var(--guide-radius-sm);
    border: 1px solid var(--guide-border);
    text-align: center;
}

.guide-tax-sales-province {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--guide-dark);
    margin-bottom: 4px;
}

.guide-tax-sales-rate {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--guide-accent);
}

.guide-tax-sales-note {
    font-size: 0.9rem;
    color: var(--guide-muted);
    margin: 0;
}

/* Tax relocation callout */
.guide-tax-relocation {
    margin-top: 28px;
    padding: 24px;
    background: linear-gradient(135deg, var(--guide-accent-soft) 0%, rgba(37, 99, 235, 0.08) 100%);
    border: 2px solid var(--guide-accent-border);
    border-radius: var(--guide-radius);
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

@media (max-width: 520px) {
    .guide-tax-relocation { flex-direction: column; align-items: center; text-align: center; }
}

.guide-tax-relocation-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: var(--guide-accent);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.guide-tax-relocation-icon svg { width: 28px; height: 28px; }

.guide-tax-relocation-content h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--guide-dark);
    margin-bottom: 8px;
}

.guide-tax-relocation-content p {
    font-size: 0.95rem;
    color: var(--guide-muted);
    margin-bottom: 12px;
}

.guide-tax-relocation-content p:last-child { margin-bottom: 0; }

.guide-tax-relocation-content ul {
    margin: 0 0 12px 0;
    padding-left: 1.25rem;
    font-size: 0.95rem;
    color: var(--guide-text);
    line-height: 1.7;
}

.guide-tax-relocation-content ul strong {
    color: var(--guide-dark);
}

/* Province tax comparison */
.guide-province-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 24px;
}

@media (max-width: 640px) {
    .guide-province-grid { grid-template-columns: 1fr; }
}

.guide-province-card {
    padding: 20px;
    background: var(--guide-card);
    border-radius: var(--guide-radius);
    border: 1px solid var(--guide-border);
    box-shadow: var(--guide-shadow);
}

.guide-province-card:last-child:nth-child(odd) {
    grid-column: 1 / -1;
}

@media (max-width: 640px) {
    .guide-province-card:last-child:nth-child(odd) { grid-column: auto; }
}

.guide-province-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.guide-province-name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--guide-dark);
}

.guide-province-tag {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 4px 8px;
    background: rgba(34, 197, 94, 0.12);
    color: #15803d;
    border-radius: 4px;
}

.guide-province-card p {
    font-size: 0.9rem;
    color: var(--guide-muted);
    line-height: 1.55;
    margin: 0;
}

.guide-province-highlight {
    border-color: rgba(34, 197, 94, 0.3);
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.04) 0%, var(--guide-card) 100%);
}

.guide-province-comparison {
    margin-top: 28px;
    padding: 24px;
    background: var(--guide-card);
    border-radius: var(--guide-radius);
    border: 1px solid var(--guide-border);
    box-shadow: var(--guide-shadow);
}

.guide-province-comparison h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--guide-dark);
    margin-bottom: 10px;
}

.guide-province-comparison > p {
    font-size: 0.95rem;
    color: var(--guide-muted);
    margin-bottom: 14px;
}

.guide-province-vs {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 14px;
}

.guide-province-vs span {
    padding: 10px 16px;
    background: linear-gradient(135deg, var(--guide-accent-soft) 0%, rgba(37, 99, 235, 0.08) 100%);
    border: 1px solid var(--guide-accent-border);
    border-radius: var(--guide-radius-sm);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--guide-accent);
}

.guide-province-factors {
    margin: 18px 0;
    padding: 16px 20px;
    background: #f8fafc;
    border-radius: var(--guide-radius-sm);
    border-left: 3px solid var(--guide-accent);
}

.guide-province-factors p {
    font-size: 0.9rem;
    color: var(--guide-muted);
    margin: 0 0 10px;
}

.guide-province-factors ul {
    margin: 0;
    padding-left: 1.25rem;
    font-size: 0.9rem;
    color: var(--guide-text);
    line-height: 1.7;
}

.guide-province-note {
    font-size: 0.88rem;
    color: var(--guide-muted);
    margin: 0;
    padding-top: 14px;
    border-top: 1px solid var(--guide-border);
}
