.legislation-page {
    background: #f7f3ee;
}

.legislation-shell {
    width: min(880px, 100%);
    margin: 0 auto;
}

/* ---------------------------------------------------------------- */
/*  Hero / page header                                              */
/* ---------------------------------------------------------------- */

.legislation-hero {
    position: relative;
    padding: 58px 24px 44px;
    border-bottom: 1px solid #eadfd6;
    background: #ffffff;
    text-align: center;
}

.legislation-eyebrow {
    margin: 0 0 12px;
    color: #c46e43;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.legislation-title {
    margin: 0;
    color: #1f1c1a;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(38px, 4.4vw, 60px);
    font-weight: 700;
    line-height: 1.06;
    letter-spacing: -0.02em;
}

.legislation-intro {
    max-width: 900px;
    margin: 20px auto 0;
    color: #49433f;
    font-size: 18px;
    line-height: 1.65;
}

/* ---------------------------------------------------------------- */
/*  Body / content cards                                            */
/* ---------------------------------------------------------------- */

.legislation-body {
    padding: 46px 24px 74px;
    background: #f8f4ef;
}

.legislation-card {
    margin: 0 0 22px;
    padding: 34px 36px;
    border: 1px solid #e5ddd7;
    border-radius: 16px;
    background: #ffffff;
    box-shadow: 0 6px 18px rgba(70, 48, 34, 0.04);
}

.legislation-card:last-child {
    margin-bottom: 0;
}

.legislation-card-title {
    position: relative;
    margin: 0 0 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid #efe6de;
    color: #211d1a;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(23px, 2.4vw, 31px);
    font-weight: 700;
    line-height: 1.22;
}

.legislation-card-title span {
    color: #9b4f2d;
    font-size: 0.72em;
    font-weight: 600;
}

.legislation-card p {
    margin: 0 0 16px;
    color: #3f3a36;
    font-size: 16px;
    line-height: 1.78;
}

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

.legislation-subheading {
    margin: 24px 0 12px !important;
    color: #9b4f2d;
    font-size: 14px !important;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.legislation-quote {
    margin: 22px 0;
    padding: 18px 24px;
    border: 1px solid #ecdccf;
    border-left: 3px solid #c96e43;
    border-radius: 0 12px 12px 0;
    background: #faf6f2;
    color: #4a423d;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 16px;
    font-style: italic;
    line-height: 1.7;
}

.legislation-quote strong {
    font-style: normal;
}

.legislation-list {
    display: grid;
    gap: 10px;
    margin: 0 0 18px;
    padding: 0;
    list-style: none;
}

.legislation-list li {
    position: relative;
    padding: 13px 18px 13px 46px;
    border: 1px solid #e9e0d8;
    border-radius: 10px;
    background: #fcfaf8;
    color: #3a332e;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.45;
}

.legislation-list li::before {
    position: absolute;
    top: 50%;
    left: 18px;
    color: #c96e43;
    font-size: 15px;
    content: "\266A";
    transform: translateY(-50%);
}

/* ---------------------------------------------------------------- */
/*  Question / answer callout                                       */
/* ---------------------------------------------------------------- */

.legislation-callout {
    margin: 24px 0 4px;
    padding: 22px 24px;
    border: 1px solid #e6d6ca;
    border-radius: 14px;
    background: #fbf5f0;
}

.legislation-callout-question {
    margin: 0 0 14px !important;
    color: #2c2622 !important;
    font-weight: 700;
    line-height: 1.65 !important;
}

.legislation-callout-answer {
    margin: 0 !important;
    color: #4a423d !important;
    line-height: 1.75 !important;
}

.legislation-callout-label {
    display: inline-block;
    margin-right: 9px;
    padding: 3px 11px;
    border-radius: 999px;
    background: #c96e43;
    color: #ffffff;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    vertical-align: 2px;
}

/* ---------------------------------------------------------------- */
/*  Contact block + links                                           */
/* ---------------------------------------------------------------- */

.legislation-contact {
    margin-top: 6px !important;
    padding: 18px 20px;
    border-radius: 12px;
    background: #f3ede7;
    font-size: 15px !important;
}

.legislation-link {
    color: #9b4f2d;
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: color 0.2s ease;
}

.legislation-link:hover {
    color: #c96e43;
}

/* ---------------------------------------------------------------- */
/*  Responsive                                                      */
/* ---------------------------------------------------------------- */

@media (max-width: 700px) {
    .legislation-hero {
        padding: 44px 18px 34px;
    }

    .legislation-body {
        padding: 32px 16px 56px;
    }

    .legislation-card {
        padding: 24px 20px;
        border-radius: 14px;
    }

    .legislation-quote {
        padding: 16px 18px;
    }

    .legislation-callout {
        padding: 18px 18px;
    }
}