/* ============================================================
   state-laws.css — PREC Knowledge Hub: State-Wise Laws
   All rules scoped under .laws-wrapper
   Works for: index, by-topic, show pages + future topics
   ============================================================ */

/* ── Scoped box-sizing reset ── */
.laws-wrapper *,
.laws-wrapper *::before,
.laws-wrapper *::after {
    box-sizing: border-box !important;
}

/* ============================================================
   INDEX PAGE — Hero
   ============================================================ */
.laws-wrapper .laws-hero {
    background: linear-gradient(135deg, #121a73 0%, #121a73 60%, #121a73 100%) !important;
    padding: 100px 0 80px !important;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.laws-wrapper .laws-hero::before {
    content: '';
    position: absolute;
    top: -50%; left: -50%;
    width: 200%; height: 200%;
    background:
        radial-gradient(circle at 30% 50%, rgba(232,70,140,0.08) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(78,115,223,0.08) 0%, transparent 50%);
    pointer-events: none;
}
.laws-wrapper .laws-hero .container {
    position: relative;
    z-index: 1;
}

/* Hero badge */
.laws-wrapper .hero-badge {
    display: inline-flex !important;
    align-items: center;
    gap: 8px;
    background: rgba(232,70,140,0.15);
    border: 1px solid rgba(232,70,140,0.3);
    border-radius: 30px;
    padding: 6px 18px;
    font-size: 0.82rem;
    color: #fb923c !important;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 22px;
    text-decoration: none !important;
    line-height: 1.5;
}

/* Hero heading — !important beats PREC reset */
.laws-wrapper .laws-hero h1 {
    font-size: 3rem !important;
    font-weight: 800 !important;
    color: #fff !important;
    margin-bottom: 18px !important;
    margin-top: 0 !important;
    padding: 0 !important;
    line-height: 1.2 !important;
}
.laws-wrapper .laws-hero h1 span {
    color: #fb923c !important;
}
.laws-wrapper .laws-hero > .container > p,
.laws-wrapper .laws-hero p.hero-desc {
    font-size: 1.1rem !important;
    color: rgba(255,255,255,0.6) !important;
    max-width: 560px;
    margin: 0 auto 36px !important;
    padding: 0 !important;
    line-height: 1.7 !important;
}

/* Hero stats */
.laws-wrapper .hero-stats {
    display: flex !important;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
}
.laws-wrapper .hero-stat {
    text-align: center;
    padding: 16px 24px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    min-width: 110px;
    list-style: none !important;
}
.laws-wrapper .hero-stat h3 {
    font-size: 1.8rem !important;
    font-weight: 800 !important;
    color: #fb923c !important;
    margin: 0 0 4px 0 !important;
    padding: 0 !important;
    line-height: 1.2 !important;
}
.laws-wrapper .hero-stat p {
    font-size: 0.78rem !important;
    color: rgba(255,255,255,0.5) !important;
    margin: 0 !important;
    padding: 0 !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.4 !important;
}

/* ============================================================
   INDEX PAGE — Topics Section
   ============================================================ */
.laws-wrapper .topics-section {
    padding: 80px 0 !important;
    background: #f7f8fc !important;
}

/* Section head */
.laws-wrapper .section-head {
    text-align: center;
    margin-bottom: 50px !important;
    padding: 0 !important;
}
.laws-wrapper .section-head .tag {
    display: inline-block !important;
    background: #fdeef5;
    color: #fb923c !important;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 5px 16px;
    border-radius: 20px;
    margin-bottom: 14px;
    line-height: 1.5;
}
.laws-wrapper .section-head h2 {
    font-size: 2rem !important;
    font-weight: 800 !important;
    color: #1a1a2e !important;
    margin: 0 0 10px 0 !important;
    padding: 0 !important;
    line-height: 1.3 !important;
}
.laws-wrapper .section-head p {
    color: #999 !important;
    font-size: 0.95rem !important;
    margin: 0 !important;
    padding: 0 !important;
    line-height: 1.6 !important;
}

/* Topics grid */
.laws-wrapper .topics-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto !important;
    padding: 0 20px !important;
    list-style: none !important;
}

/* Topic card */
.laws-wrapper .topic-card {
    background: #fff !important;
    border-radius: 16px;
    padding: 32px 26px !important;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    text-decoration: none !important;
    display: block !important;
    position: relative;
    overflow: hidden;
    transition: transform 0.28s ease, box-shadow 0.28s ease;
    border-top: 4px solid transparent;
    color: inherit !important;
}
.laws-wrapper .topic-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}
.laws-wrapper .topic-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.12);
    text-decoration: none !important;
}
.laws-wrapper .topic-card:hover::after { opacity: 1; }

.laws-wrapper .topic-card.c1 { border-top-color: #fb923c; }
.laws-wrapper .topic-card.c2 { border-top-color: #4e73df; }
.laws-wrapper .topic-card.c3 { border-top-color: #f6a623; }
.laws-wrapper .topic-card.c4 { border-top-color: #1cc88a; }
.laws-wrapper .topic-card.c5 { border-top-color: #36b9cc; }

/* Icon box */
.laws-wrapper .topic-icon-box {
    width: 60px; height: 60px;
    border-radius: 14px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px !important;
    transition: transform 0.2s;
}
.laws-wrapper .topic-card:hover .topic-icon-box { transform: scale(1.1) rotate(-5deg); }

.laws-wrapper .c1 .topic-icon-box { background: linear-gradient(135deg,#fdeef5,#fbd5e8); color: #fb923c; }
.laws-wrapper .c2 .topic-icon-box { background: linear-gradient(135deg,#eef0fd,#d5dcfb); color: #4e73df; }
.laws-wrapper .c3 .topic-icon-box { background: linear-gradient(135deg,#fef6e6,#fde8b5); color: #f6a623; }
.laws-wrapper .c4 .topic-icon-box { background: linear-gradient(135deg,#e6faf3,#b5f0d8); color: #1cc88a; }
.laws-wrapper .c5 .topic-icon-box { background: linear-gradient(135deg,#e6f9fb,#b5eef5); color: #36b9cc; }

/* Card text */
.laws-wrapper .topic-card h3 {
    font-size: 1.05rem !important;
    font-weight: 800 !important;
    color: #1a1a2e !important;
    margin: 0 0 10px 0 !important;
    padding: 0 !important;
    line-height: 1.3 !important;
}
.laws-wrapper .topic-card p {
    font-size: 0.85rem !important;
    color: #999 !important;
    line-height: 1.65 !important;
    margin: 0 0 22px 0 !important;
    padding: 0 !important;
}

/* Card footer */
.laws-wrapper .topic-footer {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    padding-top: 18px !important;
    border-top: 1px solid #f5f5f5;
    margin: 0 !important;
    list-style: none !important;
}
.laws-wrapper .topic-entries {
    font-size: 0.78rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    display: inline-block !important;
    line-height: 1.5;
}
.laws-wrapper .c1 .topic-entries { background: #fdeef5; color: #fb923c; }
.laws-wrapper .c2 .topic-entries { background: #eef0fd; color: #4e73df; }
.laws-wrapper .c3 .topic-entries { background: #fef6e6; color: #f6a623; }
.laws-wrapper .c4 .topic-entries { background: #e6faf3; color: #1cc88a; }
.laws-wrapper .c5 .topic-entries { background: #e6f9fb; color: #36b9cc; }

.laws-wrapper .topic-arrow {
    display: flex !important;
    align-items: center;
    gap: 6px;
    font-size: 0.82rem;
    font-weight: 700;
    transition: gap 0.2s;
    text-decoration: none !important;
}
.laws-wrapper .c1 .topic-arrow { color: #fb923c !important; }
.laws-wrapper .c2 .topic-arrow { color: #4e73df !important; }
.laws-wrapper .c3 .topic-arrow { color: #f6a623 !important; }
.laws-wrapper .c4 .topic-arrow { color: #1cc88a !important; }
.laws-wrapper .c5 .topic-arrow { color: #36b9cc !important; }
.laws-wrapper .topic-card:hover .topic-arrow { gap: 10px; }

/* ============================================================
   INDEX PAGE — Why Section
   ============================================================ */
.laws-wrapper .why-section {
    padding: 80px 0 !important;
    background: #fff !important;
}
.laws-wrapper .why-grid {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto !important;
    padding: 0 20px !important;
}
.laws-wrapper .why-box {
    text-align: center;
    padding: 30px 20px !important;
    border-radius: 14px;
    background: #f7f8fc !important;
    transition: transform 0.2s, box-shadow 0.2s;
}
.laws-wrapper .why-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}
.laws-wrapper .why-icon {
    width: 56px; height: 56px;
    border-radius: 14px;
    background: linear-gradient(135deg,#fdeef5,#fbd5e8);
    color: #fb923c;
    display: flex !important;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin: 0 auto 16px !important;
}
.laws-wrapper .why-box h4 {
    font-size: 0.95rem !important;
    font-weight: 700 !important;
    color: #1a1a2e !important;
    margin: 0 0 8px 0 !important;
    padding: 0 !important;
    line-height: 1.3 !important;
}
.laws-wrapper .why-box p {
    font-size: 0.82rem !important;
    color: #999 !important;
    line-height: 1.6 !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* ============================================================
   SHARED — CTA Section
   ============================================================ */
.laws-wrapper .cta-section,
.laws-wrapper .laws-cta-section {
    padding: 70px 20px !important;
    background: linear-gradient(135deg, #121a73 0%, #121a73 100%) !important;
    text-align: center;
}
.laws-wrapper .cta-section h2,
.laws-wrapper .laws-cta-section h3 {
    font-size: 1.9rem !important;
    font-weight: 800 !important;
    color: #fff !important;
    margin: 0 0 12px 0 !important;
    padding: 0 !important;
    line-height: 1.3 !important;
}
.laws-wrapper .cta-section p,
.laws-wrapper .laws-cta-section p {
    color: rgba(255,255,255,0.6) !important;
    font-size: 0.95rem !important;
    margin: 0 0 28px 0 !important;
    padding: 0 !important;
    line-height: 1.6 !important;
}
.laws-wrapper .cta-btn,
.laws-wrapper .laws-cta-btn {
    display: inline-flex !important;
    align-items: center;
    gap: 10px;
    background: #fb923c;
    color: #fff !important;
    padding: 14px 36px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none !important;
    transition: background 0.2s, transform 0.2s;
    box-shadow: 0 8px 24px rgba(232,70,140,0.35);
}
.laws-wrapper .cta-btn:hover,
.laws-wrapper .laws-cta-btn:hover {
    background: fb923c !important;
    color: #fff !important;
    transform: translateY(-2px);
    text-decoration: none !important;
}

/* ============================================================
   BY-TOPIC PAGE — Hero (dark variant)
   ============================================================ */
.laws-wrapper .laws-hero-dark {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 60%, #0f3460 100%) !important;
    padding: 70px 0 55px !important;
    position: relative;
    overflow: hidden;
    text-align: left;
}
.laws-wrapper .laws-hero-dark::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(232,70,140,0.10) 0%, transparent 50%),
        radial-gradient(circle at 80% 30%, rgba(44,207,187,0.08) 0%, transparent 50%);
    pointer-events: none;
}
.laws-wrapper .laws-hero-dark .inner {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Back badge */
.laws-wrapper .laws-back-badge {
    display: inline-flex !important;
    align-items: center;
    gap: 7px;
    background: rgba(44,207,187,0.12);
    border: 1px solid rgba(44,207,187,0.28);
    border-radius: 30px;
    padding: 5px 16px;
    font-size: 0.76rem;
    font-weight: 700;
    color: #2ccfbb !important;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none !important;
    margin-bottom: 20px;
    transition: opacity 0.2s;
    line-height: 1.4;
}
.laws-wrapper .laws-back-badge:hover {
    opacity: 0.8;
    color: #2ccfbb !important;
}

/* Hero title for by-topic */
.laws-wrapper .laws-hero-dark h1 {
    font-size: 2.6rem !important;
    font-weight: 800 !important;
    color: #ffffff !important;
    line-height: 1.2 !important;
    margin: 0 0 8px 0 !important;
    padding: 0 !important;
    letter-spacing: -0.5px;
}
.laws-wrapper .laws-hero-dark p.laws-hero-sub {
    font-size: 0.93rem !important;
    color: rgba(255,255,255,0.50) !important;
    margin: 0 0 28px 0 !important;
    padding: 0 !important;
    font-weight: 400;
    line-height: 1.5 !important;
}

/* Stats row */
.laws-wrapper .laws-stats-row {
    display: flex !important;
    gap: 16px;
    flex-wrap: wrap;
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
}
.laws-wrapper .laws-stat-box {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 12px;
    padding: 14px 24px;
    text-align: center;
    min-width: 110px;
    list-style: none !important;
}
.laws-wrapper .laws-stat-box strong {
    display: block !important;
    font-size: 1.6rem;
    font-weight: 800;
    color: #2ccfbb;
    line-height: 1.1;
    margin-bottom: 4px;
}
.laws-wrapper .laws-stat-box span {
    font-size: 0.68rem;
    color: rgba(255,255,255,0.40);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    font-weight: 600;
}

/* ============================================================
   BY-TOPIC PAGE — Search + Filter Bar
   ============================================================ */
.laws-wrapper .laws-searchbar {
    background: #ffffff !important;
    padding: 22px 0 0 !important;
    position: sticky;
    top: 70px;
    z-index: 500;
    border-bottom: 1px solid #ececec;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.laws-wrapper .laws-searchbar .inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.laws-wrapper .laws-search-field {
    max-width: 540px;
    margin: 0 auto 16px !important;
    position: relative;
}
.laws-wrapper .laws-search-field input {
    display: block !important;
    width: 100% !important;
    height: 46px !important;
    border: 2px solid #e5e5e5 !important;
    border-radius: 50px !important;
    padding: 0 46px 0 20px !important;
    font-size: 0.88rem !important;
    font-family: 'Poppins', sans-serif !important;
    color: #333 !important;
    background: #fff !important;
    outline: none !important;
    transition: border-color 0.2s, box-shadow 0.2s;
    line-height: normal !important;
    -webkit-appearance: none;
    box-shadow: none !important;
}
.laws-wrapper .laws-search-field input:focus {
    border-color: #2ccfbb !important;
    box-shadow: 0 0 0 3px rgba(44,207,187,0.12) !important;
}
.laws-wrapper .laws-search-field input::placeholder { color: #bbb; }
.laws-wrapper .laws-search-field .search-ico {
    position: absolute;
    right: 17px;
    top: 50%;
    transform: translateY(-50%);
    color: #bbb;
    font-size: 0.9rem;
    pointer-events: none;
}

/* Filter chips */
.laws-wrapper .laws-chips {
    display: flex !important;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
    padding-bottom: 16px !important;
    margin: 0 !important;
    list-style: none !important;
}
.laws-wrapper .laws-chip {
    padding: 5px 18px;
    border-radius: 20px;
    font-size: 0.76rem;
    font-weight: 700;
    border: 1.5px solid #e0e0e0;
    background: #fff;
    color: #777;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
    letter-spacing: 0.3px;
    line-height: 1.6;
    -webkit-user-select: none;
    user-select: none;
}
.laws-wrapper .laws-chip:hover {
    border-color: #2ccfbb;
    background: rgba(44,207,187,0.06);
    color: #2ccfbb;
}
.laws-wrapper .laws-chip.active {
    border-color: #2ccfbb;
    background: #2ccfbb;
    color: #fff;
}

/* ============================================================
   BY-TOPIC PAGE — States Grid
   ============================================================ */
.laws-wrapper .laws-states-section {
    padding: 52px 0 72px !important;
    background: #f7f8fc !important;
}
.laws-wrapper .laws-states-section .inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.laws-wrapper .laws-section-label {
    font-size: 0.75rem;
    font-weight: 700;
    color: #2ccfbb !important;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0 0 5px 0 !important;
    padding: 0 !important;
    display: block !important;
}
.laws-wrapper .laws-section-title {
    font-size: 1.65rem !important;
    font-weight: 800 !important;
    color: #1a1a2e !important;
    margin: 0 0 5px 0 !important;
    padding: 0 !important;
    line-height: 1.2 !important;
}
.laws-wrapper .laws-section-sub {
    font-size: 0.85rem !important;
    color: #aaa !important;
    margin: 0 0 32px 0 !important;
    padding: 0 !important;
    line-height: 1.5 !important;
}
.laws-wrapper .laws-section-sub .hl { color: #1cc88a !important; font-weight: 700; }

/* States grid */
.laws-wrapper .laws-states-grid {
    display: grid !important;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
}

/* State card */
.laws-wrapper .laws-state-card {
    background: #fff !important;
    border-radius: 14px;
    padding: 22px 14px 18px !important;
    display: flex !important;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    border: 2px solid transparent !important;
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
    position: relative;
    overflow: hidden;
    text-decoration: none !important;
    color: inherit !important;
}
.laws-wrapper .laws-state-card.has-content { cursor: pointer; }
.laws-wrapper .laws-state-card.has-content:hover {
    transform: translateY(-7px);
    box-shadow: 0 14px 32px rgba(0,0,0,0.10) !important;
    border-color: #2ccfbb !important;
    text-decoration: none !important;
}
.laws-wrapper .laws-state-card.coming-soon {
    opacity: 0.60;
    cursor: default;
}

/* State icon */
.laws-wrapper .laws-state-icon {
    width: 46px; height: 46px;
    border-radius: 12px;
    background: linear-gradient(135deg,#e6faf3,#b8f0da);
    color: #2ccfbb;
    display: flex !important;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    margin-bottom: 11px !important;
    transition: transform 0.22s ease;
    flex-shrink: 0;
}
.laws-wrapper .laws-state-card.has-content:hover .laws-state-icon {
    transform: scale(1.12) rotate(-6deg);
}
.laws-wrapper .laws-state-card.coming-soon .laws-state-icon {
    background: #f2f2f2 !important;
    color: #ccc !important;
}

/* State name */
.laws-wrapper .laws-state-name {
    font-size: 0.82rem !important;
    font-weight: 700 !important;
    color: #1a1a2e !important;
    margin: 0 0 8px 0 !important;
    padding: 0 !important;
    line-height: 1.3 !important;
}
.laws-wrapper .laws-state-card.coming-soon .laws-state-name {
    color: #bbb !important;
}

/* Status badge */
.laws-wrapper .laws-state-badge {
    font-size: 0.68rem;
    font-weight: 700;
    padding: 3px 11px;
    border-radius: 12px;
    display: inline-block !important;
    line-height: 1.5;
}
.laws-wrapper .laws-badge-available { background: #e6faf3; color: #1cc88a !important; }
.laws-wrapper .laws-badge-coming    { background: #f2f2f2; color: #bbb !important; }

/* Entry count bubble */
.laws-wrapper .laws-entry-count {
    position: absolute;
    top: 10px; right: 10px;
    width: 22px; height: 22px;
    border-radius: 50%;
    background: #2ccfbb;
    color: #fff !important;
    font-size: 0.63rem;
    font-weight: 800;
    display: flex !important;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

/* No results */
.laws-wrapper .laws-no-results {
    text-align: center;
    padding: 60px 20px;
    display: none;
}
.laws-wrapper .laws-no-results i {
    font-size: 3rem;
    color: #ddd;
    margin-bottom: 16px;
    display: block !important;
}
.laws-wrapper .laws-no-results p {
    color: #aaa !important;
    font-size: 0.9rem !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
    .laws-wrapper .laws-states-grid { grid-template-columns: repeat(4,1fr); }
}
@media (max-width: 900px) {
    .laws-wrapper .topics-grid { grid-template-columns: repeat(2,1fr); }
    .laws-wrapper .why-grid    { grid-template-columns: repeat(2,1fr); }
    .laws-wrapper .laws-hero h1,
    .laws-wrapper .laws-hero-dark h1 { font-size: 2.2rem !important; }
    .laws-wrapper .laws-states-grid { grid-template-columns: repeat(3,1fr); }
}
@media (max-width: 600px) {
    .laws-wrapper .topics-grid  { grid-template-columns: 1fr; }
    .laws-wrapper .why-grid     { grid-template-columns: 1fr; }
    .laws-wrapper .laws-hero h1,
    .laws-wrapper .laws-hero-dark h1 { font-size: 1.8rem !important; }
    .laws-wrapper .hero-stats   { gap: 16px; }
    .laws-wrapper .laws-stats-row { gap: 10px; }
    .laws-wrapper .laws-stat-box  { padding: 12px 16px; min-width: 90px; }
    .laws-wrapper .laws-states-grid { grid-template-columns: repeat(2,1fr); gap: 12px; }
    .laws-wrapper .laws-hero,
    .laws-wrapper .laws-hero-dark { padding: 55px 0 40px !important; }
}
@media (max-width: 380px) {
    .laws-wrapper .laws-states-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   SHOW PAGE — Law Detail (State + Topic)
   ============================================================ */
.laws-wrapper .laws-show-hero {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%) !important;
    padding: 60px 20px 50px !important;
    position: relative;
    overflow: hidden;
}
.laws-wrapper .laws-show-hero .inner {
    max-width: 860px;
    margin: 0 auto;
}

/* Breadcrumb */
.laws-wrapper .laws-breadcrumb {
    display: flex !important;
    align-items: center;
    flex-wrap: wrap;
    gap: 4px;
    margin: 0 0 16px 0 !important;
    padding: 0 !important;
    list-style: none !important;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.45);
}
.laws-wrapper .laws-breadcrumb a {
    color: rgba(255,255,255,0.45) !important;
    text-decoration: none !important;
    transition: color 0.2s;
}
.laws-wrapper .laws-breadcrumb a:hover { color: #fb923c !important; }
.laws-wrapper .laws-breadcrumb .sep { margin: 0 2px; opacity: 0.4; }
.laws-wrapper .laws-breadcrumb .current { color: rgba(255,255,255,0.75); }

/* Show page heading */
.laws-wrapper .laws-show-hero h1 {
    font-size: 2.2rem !important;
    font-weight: 800 !important;
    color: #fff !important;
    margin: 0 0 14px 0 !important;
    padding: 0 !important;
    line-height: 1.2 !important;
}

/* Meta chips row */
.laws-wrapper .laws-meta-row {
    display: flex !important;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
}
.laws-wrapper .laws-meta-chip {
    display: inline-flex !important;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 20px;
    padding: 5px 14px;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.75) !important;
    line-height: 1.4;
}
.laws-wrapper .laws-meta-chip i { color: #fb923c; }

/* Content section */
.laws-wrapper .laws-show-content {
    padding: 50px 20px 72px !important;
    background: #f7f8fc !important;
}
.laws-wrapper .laws-show-content .inner {
    max-width: 860px;
    margin: 0 auto;
}

/* Back link */
.laws-wrapper .laws-back-link {
    display: inline-flex !important;
    align-items: center;
    gap: 8px;
    color: #fb923c !important;
    font-weight: 700;
    font-size: 0.88rem;
    text-decoration: none !important;
    margin-bottom: 28px;
    transition: gap 0.2s;
    line-height: 1.4;
}
.laws-wrapper .laws-back-link:hover {
    gap: 12px;
    color: #fb923c !important;
    text-decoration: none !important;
}

/* Law card */
.laws-wrapper .laws-law-card {
    background: #fff !important;
    border-radius: 12px;
    box-shadow: 0 2px 14px rgba(0,0,0,0.06);
    border-left: 5px solid #fb923c;
    margin-bottom: 24px;
    overflow: hidden;
}
.laws-wrapper .laws-law-card-header {
    padding: 18px 24px !important;
    border-bottom: 1px solid #f5f5f5;
    display: flex !important;
    align-items: center;
    gap: 14px;
    margin: 0 !important;
}
.laws-wrapper .laws-law-num {
    width: 34px; height: 34px;
    background: #fb923c;
    color: #fff !important;
    border-radius: 50%;
    display: flex !important;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 800;
    flex-shrink: 0;
    line-height: 1;
}
.laws-wrapper .laws-law-card-header h3 {
    font-size: 1rem !important;
    font-weight: 700 !important;
    color: #1a1a2e !important;
    margin: 0 !important;
    padding: 0 !important;
    line-height: 1.4 !important;
}
.laws-wrapper .laws-law-card-body {
    padding: 22px 24px !important;
    font-size: 0.93rem !important;
    color: #555 !important;
    line-height: 1.9 !important;
}
/* Quill HTML content inside card body */
.laws-wrapper .laws-law-card-body p  { margin: 0 0 12px 0 !important; padding: 0 !important; color: #555 !important; font-size: 0.93rem !important; line-height: 1.9 !important; }
.laws-wrapper .laws-law-card-body ul { list-style: disc !important; padding-left: 24px !important; margin: 0 0 12px 0 !important; }
.laws-wrapper .laws-law-card-body ol { list-style: decimal !important; padding-left: 24px !important; margin: 0 0 12px 0 !important; }
.laws-wrapper .laws-law-card-body li { margin-bottom: 6px !important; color: #555 !important; font-size: 0.93rem !important; line-height: 1.7 !important; }
.laws-wrapper .laws-law-card-body h1,
.laws-wrapper .laws-law-card-body h2,
.laws-wrapper .laws-law-card-body h3 { color: #1a1a2e !important; font-weight: 700 !important; margin: 16px 0 8px 0 !important; padding: 0 !important; }
.laws-wrapper .laws-law-card-body strong { font-weight: 700 !important; color: #333 !important; }

/* Empty state */
.laws-wrapper .laws-empty-box {
    background: #fff !important;
    border-radius: 12px;
    padding: 60px 20px !important;
    text-align: center;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.laws-wrapper .laws-empty-box i {
    font-size: 3rem;
    color: #e0e0e0;
    display: block !important;
    margin-bottom: 16px !important;
}
.laws-wrapper .laws-empty-box h3 {
    color: #aaa !important;
    font-size: 1.1rem !important;
    font-weight: 700 !important;
    margin: 0 0 8px 0 !important;
    padding: 0 !important;
}
.laws-wrapper .laws-empty-box p {
    color: #bbb !important;
    font-size: 0.88rem !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Show page responsive */
@media (max-width: 600px) {
    .laws-wrapper .laws-show-hero h1 { font-size: 1.65rem !important; }
    .laws-wrapper .laws-law-card-header { padding: 14px 16px !important; }
    .laws-wrapper .laws-law-card-body  { padding: 16px !important; }
}
