.sr-page,
.sr-home {
    --sr-ink: #102235;
    --sr-text: #22364a;
    --sr-muted: #667789;
    --sr-subtle: #eef3f7;
    --sr-border: #d9e2ea;
    --sr-border-strong: #c6d4df;
    --sr-card: #ffffff;
    --sr-bg: #f6f8fa;
    --sr-blue: #1f5d7a;
    --sr-blue-dark: #14394f;
    --sr-green: #2f7b62;
    --sr-gold: #a9742a;
    --sr-red: #b8553e;
    --sr-shadow: 0 18px 42px rgba(16, 34, 53, 0.08);
    --sr-shadow-soft: 0 10px 24px rgba(16, 34, 53, 0.06);
    color: var(--sr-text);
    background: var(--sr-bg);
}

.sr-page {
    min-height: 100vh;
}

.sr-page h1,
.sr-page h2,
.sr-page h3,
.sr-home h1,
.sr-home h2,
.sr-home h3 {
    color: var(--sr-ink);
    letter-spacing: -0.035em;
}

.sr-hero {
    position: relative;
    overflow: hidden;
    padding: clamp(3rem, 7vw, 6.25rem) 0 15.5rem;
    background:
        radial-gradient(circle at 20% 10%, rgba(210, 225, 235, 0.64), transparent 32%),
        linear-gradient(180deg, #fbfcfd 0%, #f4f7f9 100%);
    border-bottom: 1px solid var(--sr-border);
}

.sr-hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.78fr);
    gap: clamp(2rem, 5vw, 4.5rem);
    align-items: center;
}

.sr-hero-copy h1 {
    max-width: 820px;
    margin: 0 0 1.25rem;
    font-size: clamp(2.7rem, 6vw, 5.15rem);
    font-weight: 800;
    line-height: 0.98;
}

.sr-hero-lead {
    max-width: 720px;
    margin: 0 0 1.35rem;
    font-size: clamp(1.08rem, 1.65vw, 1.32rem);
    line-height: 1.7;
    color: #455d72;
}

.sr-disclaimer {
    max-width: 700px;
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
    padding: 0.95rem 1rem;
    border: 1px solid var(--sr-border);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.78);
    color: #50677a;
    font-size: 0.95rem;
    line-height: 1.5;
}

.sr-disclaimer i {
    margin-top: 0.18rem;
    color: var(--sr-blue);
}

.sr-trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin-top: 1.3rem;
}

.sr-badge,
.sr-mini-badge,
.sr-status-dot {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    width: fit-content;
    border-radius: 999px;
    border: 1px solid var(--sr-border);
    background: #fff;
    color: #385166;
    font-size: 0.82rem;
    font-weight: 800;
    line-height: 1;
    white-space: nowrap;
}

.sr-badge {
    padding: 0.6rem 0.78rem;
}

.sr-badge-success {
    color: #276747;
    background: #eff8f3;
    border-color: #c8e5d3;
}

.sr-badge-warning {
    color: #875a11;
    background: #fff6e3;
    border-color: #efd7a3;
}

.sr-badge-danger {
    color: #9b3e2f;
    background: #fff1ee;
    border-color: #efc8bf;
}

.sr-badge-muted {
    color: #385166;
    background: #f8fafb;
    border-color: var(--sr-border);
}

.sr-start-card,
.sr-card {
    border: 1px solid var(--sr-border);
    border-radius: 26px;
    background: var(--sr-card);
    box-shadow: var(--sr-shadow);
}

.sr-card {
    padding: clamp(1.2rem, 3vw, 1.6rem);
}

.sr-card-header {
    margin-bottom: 1rem;
}

.sr-card-kicker {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--sr-blue);
    font-size: 0.78rem;
    font-weight: 850;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.sr-card-title {
    margin: 0;
    font-size: 1.35rem;
    font-weight: 800;
}

.sr-card-body h4,
.sr-plan-columns h4,
.sr-details h4,
.sr-recovery-grid h3,
.sr-sources-limits-grid h3 {
    margin: 0 0 0.55rem;
    color: var(--sr-ink);
    font-size: 0.86rem;
    font-weight: 850;
    letter-spacing: 0.055em;
    text-transform: uppercase;
}

.sr-card-body p {
    margin: 0;
    color: var(--sr-muted);
    line-height: 1.65;
}

.sr-button {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    font-weight: 800;
    padding: 0.78rem 1rem;
}

.sr-button-primary {
    border: 1px solid #14394f;
    background: #14394f;
    color: #fff;
    box-shadow: 0 14px 26px rgba(20, 57, 79, 0.16);
}

.sr-button-primary:hover,
.sr-button-primary:focus {
    border-color: #0f2d40;
    background: #0f2d40;
    color: #fff;
}

.sr-button-secondary {
    border: 1px solid var(--sr-border-strong);
    background: #fff;
    color: var(--sr-blue-dark);
}

.sr-button-secondary:hover,
.sr-button-secondary:focus {
    border-color: var(--sr-blue);
    background: #f4f8fb;
    color: var(--sr-blue-dark);
}

.sr-alert {
    padding: 1rem 1.1rem;
    border-radius: 16px;
    border: 1px solid var(--sr-border);
    font-weight: 700;
}

.sr-alert-warning {
    color: #875a11;
    background: #fff6e3;
    border-color: #efd7a3;
}

.sr-start-card {
    padding: clamp(1.25rem, 3vw, 1.75rem);
}

.sr-start-card-header {
    margin-bottom: 1.15rem;
}

.sr-start-card-header h2 {
    margin: 0 0 0.35rem;
    font-size: 1.35rem;
    font-weight: 800;
}

.sr-start-card-header p {
    margin: 0;
    color: var(--sr-muted);
    font-size: 0.95rem;
    line-height: 1.5;
}

.sr-form .form-label {
    margin-bottom: 0.45rem;
    color: var(--sr-ink);
    font-size: 0.88rem;
    font-weight: 800;
}

.sr-form .form-control {
    min-height: 52px;
    border: 1px solid var(--sr-border-strong);
    border-radius: 14px;
    background: #fbfcfd;
    color: var(--sr-text);
    font-weight: 650;
}

.sr-form .form-control:focus {
    border-color: var(--sr-blue);
    box-shadow: 0 0 0 0.2rem rgba(31, 93, 122, 0.14);
}

.sr-form .form-text {
    color: var(--sr-muted);
    font-size: 0.82rem;
}

.sr-toggle .btn {
    min-height: 46px;
    padding: 0.65rem 0.8rem;
    border-radius: 13px !important;
    font-size: 0.88rem;
    box-shadow: none;
}

.sr-toggle .btn-check:checked + .btn {
    background: #173d54;
    border-color: #173d54;
    color: #fff;
}

.sr-address-group .btn {
    border-color: var(--sr-border-strong);
    box-shadow: none;
}

.sr-household-options {
    margin: 0;
    padding: 0.95rem;
    border: 1px solid var(--sr-border);
    border-radius: 16px;
    background: #f8fafb;
}

.sr-household-options legend {
    float: none;
    width: auto;
    margin: 0 0 0.6rem;
    padding: 0;
    color: var(--sr-ink);
    font-size: 0.88rem;
    font-weight: 850;
}

.sr-option-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.45rem 0.75rem;
}

.sr-option-grid label {
    display: flex;
    align-items: flex-start;
    gap: 0.45rem;
    margin: 0;
    color: #4f6274;
    font-size: 0.84rem;
    font-weight: 700;
    line-height: 1.35;
}

.sr-option-grid input {
    margin-top: 0.16rem;
}

.sr-primary-action {
    min-height: 54px;
    border: 1px solid #14394f;
    border-radius: 15px;
    background: #14394f;
    color: #fff;
    font-size: 0.98rem;
    font-weight: 800;
    box-shadow: 0 14px 26px rgba(20, 57, 79, 0.18);
}

.sr-primary-action:hover,
.sr-primary-action:focus {
    background: #0f2d40;
    border-color: #0f2d40;
    color: #fff;
}

.form-messages {
    padding: 0.85rem 1rem;
    border-radius: 14px;
    font-size: 0.92rem;
    font-weight: 700;
}

.form-messages.error {
    background: #fff1ee;
    color: #973d2c;
    border: 1px solid #efc8bf;
}

.form-messages.success {
    background: #edf8f1;
    color: #276747;
    border: 1px solid #c8e5d3;
}

.form-messages.info {
    background: #eef7ff;
    color: #225b7c;
    border: 1px solid #c8deef;
}

.address-suggestion {
    cursor: pointer;
    border-color: var(--sr-border);
    color: var(--sr-text);
    font-weight: 700;
}

.sr-skyline-frame {
    position: absolute;
    z-index: 1;
    left: 50%;
    bottom: 0;
    width: min(1180px, calc(100% - 2rem));
    transform: translateX(-50%);
    overflow: hidden;
    border: 1px solid var(--sr-border);
    border-bottom: 0;
    border-radius: 28px 28px 0 0;
    background: #d8e4ec;
    box-shadow: 0 20px 42px rgba(16, 34, 53, 0.1);
}

.sr-skyline-frame::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(246, 248, 250, 0) 52%, rgba(246, 248, 250, 0.45) 100%);
    pointer-events: none;
}

.sr-skyline-frame img {
    display: block;
    width: 100%;
    height: 230px;
    object-fit: cover;
    object-position: center center;
}

.sr-section {
    padding: clamp(3.5rem, 7vw, 5.75rem) 0;
    background: #fff;
}

.sr-section-muted {
    background: #f4f7f9;
    border-top: 1px solid var(--sr-border);
    border-bottom: 1px solid var(--sr-border);
}

.sr-section-heading {
    max-width: 720px;
    margin: 0 auto 2.25rem;
    text-align: center;
}

.sr-section-heading-left {
    margin: 0;
    text-align: left;
}

.sr-section-heading h2 {
    margin: 0 0 0.75rem;
    font-size: clamp(2rem, 4vw, 3.1rem);
    font-weight: 800;
    line-height: 1.05;
}

.sr-section-heading p {
    margin: 0;
    color: var(--sr-muted);
    font-size: 1.05rem;
    line-height: 1.7;
}

.sr-feature-card {
    height: 100%;
    padding: 1.5rem;
}

.sr-feature-card h3 {
    margin: 1rem 0 0.65rem;
    font-size: 1.2rem;
    font-weight: 800;
}

.sr-feature-card p {
    margin: 0;
    color: var(--sr-muted);
    line-height: 1.65;
}

.sr-icon {
    width: 3rem;
    height: 3rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    border: 1px solid var(--sr-border);
    background: #f8fafb;
    font-size: 1.2rem;
}

.sr-icon-blue {
    color: var(--sr-blue);
}

.sr-icon-green {
    color: var(--sr-green);
}

.sr-icon-gold {
    color: var(--sr-gold);
}

.sr-preview-card {
    padding: clamp(1.2rem, 3vw, 1.65rem);
}

.sr-preview-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--sr-border);
}

.sr-preview-header h3 {
    margin: 0.8rem 0 0;
    font-size: 1.45rem;
    font-weight: 800;
}

.sr-status-dot {
    padding: 0.55rem 0.72rem;
    color: #276747;
    background: #eff8f3;
    border-color: #c8e5d3;
}

.sr-preview-location {
    display: flex;
    gap: 0.85rem;
    margin: 1rem 0;
    padding: 1rem;
    border: 1px solid var(--sr-border);
    border-radius: 18px;
    background: #f8fafb;
}

.sr-preview-location i {
    margin-top: 0.15rem;
    color: var(--sr-blue);
}

.sr-preview-location strong,
.sr-preview-location span {
    display: block;
}

.sr-preview-location span {
    color: var(--sr-muted);
    font-size: 0.92rem;
}

.sr-hazard-list {
    display: grid;
    gap: 0.75rem;
}

.sr-hazard-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.95rem 1rem;
    border: 1px solid var(--sr-border);
    border-radius: 18px;
    background: #fff;
}

.sr-hazard-row strong,
.sr-hazard-row span {
    display: block;
}

.sr-hazard-row span {
    color: var(--sr-muted);
    font-size: 0.88rem;
}

.sr-mini-badge {
    padding: 0.48rem 0.65rem;
    flex-shrink: 0;
}

.sr-preview-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin-top: 1rem;
}

.sr-preview-actions > div {
    padding: 1rem;
    border-radius: 18px;
    background: #f4f7f9;
    border: 1px solid var(--sr-border);
}

.sr-preview-actions span,
.sr-preview-actions strong {
    display: block;
}

.sr-preview-actions span {
    margin-bottom: 0.35rem;
    color: var(--sr-muted);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.sr-preview-actions strong {
    color: var(--sr-ink);
    font-size: 0.92rem;
    line-height: 1.5;
}

.sr-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.sr-step {
    position: relative;
    padding: 1.4rem;
    border: 1px solid var(--sr-border);
    border-radius: 24px;
    background: #fff;
    box-shadow: var(--sr-shadow-soft);
}

.sr-step > span {
    width: 2.35rem;
    height: 2.35rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    border-radius: 999px;
    background: #14394f;
    color: #fff;
    font-weight: 800;
}

.sr-step h3 {
    margin: 0 0 0.65rem;
    font-size: 1.12rem;
    font-weight: 800;
}

.sr-step p {
    margin: 0;
    color: var(--sr-muted);
    line-height: 1.62;
}

.sr-trust-section {
    padding-top: 0;
}

.sr-trust-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 2rem;
    align-items: center;
    padding: clamp(1.4rem, 3vw, 2rem);
}

.sr-trust-card h2 {
    margin: 0 0 0.7rem;
    font-size: clamp(1.65rem, 3vw, 2.35rem);
    font-weight: 800;
}

.sr-trust-card p {
    max-width: 840px;
    margin: 0;
    color: var(--sr-muted);
    line-height: 1.7;
}

.sr-source-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 0.75rem;
}

.sr-final-cta {
    padding: clamp(3rem, 7vw, 5rem) 0;
    background: #102235;
    color: rgba(255, 255, 255, 0.82);
}

.sr-results-page {
    background: #f6f8fa;
}

.sr-results-hero {
    padding: clamp(2.5rem, 6vw, 5.25rem) 0;
    background: linear-gradient(180deg, #fbfcfd 0%, #f1f5f8 100%);
    border-bottom: 1px solid var(--sr-border);
}

.sr-results-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.62fr);
    gap: clamp(1.5rem, 4vw, 3rem);
    align-items: center;
}

.sr-results-hero h1 {
    max-width: 840px;
    margin: 1rem 0;
    font-size: clamp(2.35rem, 5vw, 4.35rem);
    font-weight: 850;
    line-height: 1;
}

.sr-results-hero p {
    max-width: 760px;
    margin: 0;
    color: #4b6175;
    font-size: 1.08rem;
    line-height: 1.7;
}

.sr-results-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.4rem;
}

.sr-address-card {
    background: #fff;
}

.sr-check-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.sr-check-grid > div {
    padding: 0.9rem;
    border: 1px solid var(--sr-border);
    border-radius: 16px;
    background: #f8fafb;
}

.sr-check-grid span {
    display: block;
    margin-bottom: 0.28rem;
    color: var(--sr-muted);
    font-size: 0.76rem;
    font-weight: 850;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.sr-check-grid strong {
    color: var(--sr-ink);
    line-height: 1.35;
}

.sr-hazard-plan-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.sr-hazard-plan-card {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.sr-hazard-plan-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
}

.sr-hazard-plan-top h3 {
    margin: 0;
    font-size: 1.55rem;
    font-weight: 850;
}

.sr-badge-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
}

.sr-plan-columns {
    display: grid;
    gap: 0.85rem;
}

.sr-action-list,
.sr-check-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.sr-action-list {
    display: grid;
    gap: 0.5rem;
}

.sr-action-list li {
    position: relative;
    padding-left: 1rem;
    color: #516779;
    line-height: 1.55;
}

.sr-action-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.7em;
    width: 0.35rem;
    height: 0.35rem;
    border-radius: 999px;
    background: var(--sr-blue);
}

.sr-details {
    margin-top: auto;
    padding-top: 0.95rem;
    border-top: 1px solid var(--sr-border);
}

.sr-details summary {
    cursor: pointer;
    color: var(--sr-blue-dark);
    font-weight: 850;
}

.sr-details-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.95rem;
    margin-top: 1rem;
}

.sr-details-grid section,
.sr-recovery-grid section,
.sr-sources-limits-grid section {
    padding: 0.95rem;
    border: 1px solid var(--sr-border);
    border-radius: 18px;
    background: #f8fafb;
}

.sr-priority-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.sr-priority-card h3 {
    margin: 0 0 0.6rem;
    font-size: 1.05rem;
    font-weight: 850;
}

.sr-priority-card p {
    margin: 0;
    color: var(--sr-muted);
    line-height: 1.6;
}

.sr-next-card,
.sr-recovery-card,
.sr-evidence-card,
.sr-sources-limits-card {
    padding: clamp(1.25rem, 3vw, 2rem);
}

.sr-next-card h2,
.sr-recovery-card h2,
.sr-evidence-card h2,
.sr-sources-limits-card h2 {
    margin: 0 0 1rem;
    font-size: clamp(1.55rem, 3vw, 2.2rem);
    font-weight: 850;
    line-height: 1.08;
}

.sr-check-list {
    display: grid;
    gap: 0.8rem;
}

.sr-check-list li {
    display: flex;
    gap: 0.85rem;
    padding: 0.9rem;
    border: 1px solid var(--sr-border);
    border-radius: 16px;
    background: #f8fafb;
}

.sr-check-list li > span {
    width: 1.75rem;
    height: 1.75rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: 999px;
    background: var(--sr-blue-dark);
    color: white;
    font-size: 0.8rem;
    font-weight: 850;
}

.sr-check-list strong,
.sr-check-list p {
    display: block;
}

.sr-check-list p {
    margin: 0.2rem 0 0;
    color: var(--sr-muted);
    line-height: 1.5;
}

.sr-recovery-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.85rem;
}

.sr-source-list {
    display: grid;
    gap: 0.65rem;
}

.sr-source-row {
    display: grid;
    gap: 0.15rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--sr-border);
}

.sr-source-row:last-child {
    border-bottom: 0;
}

.sr-source-row a,
.sr-source-row span {
    color: var(--sr-blue-dark);
    font-weight: 850;
    text-decoration: none;
}

.sr-source-row a:hover {
    text-decoration: underline;
    text-underline-offset: 0.18em;
}

.sr-source-row small {
    color: var(--sr-muted);
    font-weight: 700;
}

.sr-other-hazards {
    padding: clamp(1.25rem, 3vw, 2rem);
}

.sr-other-hazard-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.sr-other-hazard-grid article {
    padding: 1rem;
    border: 1px solid var(--sr-border);
    border-radius: 18px;
    background: #f8fafb;
}

.sr-other-hazard-grid h3 {
    margin: 0.75rem 0 0.45rem;
    font-size: 1.05rem;
    font-weight: 850;
}

.sr-other-hazard-grid p {
    color: var(--sr-muted);
    line-height: 1.55;
}

.sr-other-hazard-grid a {
    color: var(--sr-blue-dark);
    font-weight: 850;
}

.sr-sources-limits-card > p,
.sr-sources-limits-card p {
    color: var(--sr-muted);
    line-height: 1.7;
}

.sr-sources-limits-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 1rem;
    margin-top: 1rem;
}

.sr-final-cta-inner {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}

.sr-final-cta h2 {
    margin: 0 0 0.75rem;
    color: #fff;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
}

.sr-final-cta p {
    margin: 0 auto 1.5rem;
    max-width: 660px;
    line-height: 1.7;
}

@media (max-width: 991px) {
    .sr-hero {
        padding-bottom: 12.5rem;
    }

    .sr-hero-grid,
    .sr-trust-card {
        grid-template-columns: 1fr;
    }

    .sr-start-card {
        max-width: 680px;
    }

    .sr-source-links {
        justify-content: flex-start;
    }

    .sr-steps {
        grid-template-columns: 1fr;
    }

    .sr-results-hero-grid,
    .sr-hazard-plan-grid,
    .sr-priority-grid,
    .sr-other-hazard-grid,
    .sr-sources-limits-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .sr-hero {
        padding-top: 2.5rem;
        padding-bottom: 10.5rem;
    }

    .sr-hero-copy h1 {
        font-size: clamp(2.35rem, 12vw, 3.35rem);
    }

    .sr-skyline-frame {
        width: calc(100% - 1rem);
        border-radius: 22px 22px 0 0;
    }

    .sr-skyline-frame img {
        height: 170px;
    }

    .sr-preview-header,
    .sr-hazard-row {
        align-items: flex-start;
        flex-direction: column;
    }

    .sr-preview-actions {
        grid-template-columns: 1fr;
    }

    .sr-check-grid,
    .sr-recovery-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 575px) {
    .sr-trust-row,
    .sr-source-links {
        flex-direction: column;
    }

    .sr-badge,
    .sr-source-links .btn,
    .sr-final-cta .btn {
        width: 100%;
        justify-content: center;
    }

    .sr-toggle .btn {
        font-size: 0.8rem;
        padding-left: 0.55rem;
        padding-right: 0.55rem;
    }

    .sr-option-grid {
        grid-template-columns: 1fr;
    }
}
.sr-local-evidence {
    margin: 0 1.35rem 1.25rem;
    padding: 1rem;
    border: 1px solid #d7e1e8;
    border-left: 4px solid #b7791f;
    border-radius: 0.85rem;
    background: #fbfcfa;
}

.sr-visible-limitations {
    margin: 0 1.35rem;
    padding: 0.95rem 1rem;
    border: 1px solid #ecd8aa;
    border-radius: 0.85rem;
    background: #fffaf0;
}

.sr-visible-limitations h4 {
    margin: 0 0 0.6rem;
    color: #6f4b10;
}

.sr-visible-limitations .sr-action-list li {
    color: #665a45;
}

.sr-local-evidence-heading {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    margin-bottom: 0.75rem;
}

.sr-local-evidence-heading h4,
.sr-local-evidence-row p {
    margin: 0;
}

.sr-local-evidence-row + .sr-local-evidence-row {
    margin-top: 0.85rem;
    padding-top: 0.85rem;
    border-top: 1px solid #e4e9ec;
}

.sr-local-evidence-row small {
    display: block;
    margin-top: 0.4rem;
    color: #596973;
}

.sr-local-evidence-citation {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem 0.65rem;
    margin-top: 0.55rem;
    font-size: 0.82rem;
    color: #596973;
}

.sr-sourced-action p {
    margin: 0.2rem 0 0.35rem;
}

.sr-sourced-action small {
    display: block;
    color: #596973;
    line-height: 1.45;
}

.sr-sourced-action small + small {
    margin-top: 0.15rem;
}
