:root {
    --public-navy-950: #09243f;
    --public-navy-900: #0d3158;
    --public-navy-800: #123f73;
    --public-blue-700: #175998;
    --public-blue-600: #1c6bb5;
    --public-blue-100: #e8f2fb;
    --public-blue-50: #f3f8fd;
    --public-brand-blue: #0007bb;
    --public-brand-blue-hover: #0006a8;
    --public-brand-blue-active: #000596;
    --public-ink: #152536;
    --public-muted: #5b6b7b;
    --public-border: #d7e0e9;
    --public-border-strong: #bdcad7;
    --public-surface: #ffffff;
    --public-background: #f4f7fa;
    --public-success: #19724a;
    --public-success-soft: #e9f7ef;
    --public-warning: #946100;
    --public-warning-soft: #fff7df;
    --public-danger: #a33636;
    --public-danger-soft: #fff0f0;
    --public-shadow-sm: 0 1px 2px rgba(9, 36, 63, 0.06);
    --public-shadow-md: 0 14px 34px rgba(9, 36, 63, 0.09);
    --public-radius-sm: 7px;
    --public-radius-md: 12px;
    --public-radius-lg: 18px;
    --public-container: 1120px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    min-width: 320px;
    color-scheme: light;
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

body.public-site {
    min-height: 100vh;
    margin: 0;
    display: flex;
    flex-direction: column;
    background: var(--public-background);
    color: var(--public-ink);
    font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

.public-site a {
    color: var(--public-blue-700);
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}

.public-site a:hover {
    color: var(--public-navy-900);
}

.public-site img {
    max-width: 100%;
}

.public-site h1,
.public-site h2,
.public-site h3 {
    margin-top: 0;
    color: var(--public-navy-950);
    line-height: 1.15;
    letter-spacing: -0.025em;
}

.public-site h1 {
    font-size: clamp(2rem, 4vw, 3.25rem);
}

.public-site h2 {
    font-size: clamp(1.45rem, 2.5vw, 2rem);
}

.public-site h3 {
    font-size: 1.15rem;
}

.public-site p {
    margin-top: 0;
}

.public-container {
    width: min(var(--public-container), calc(100% - 40px));
    margin-inline: auto;
}

.public-skip-link {
    position: fixed;
    z-index: 100;
    top: 10px;
    left: 10px;
    padding: 10px 14px;
    border-radius: var(--public-radius-sm);
    background: var(--public-navy-950);
    color: #ffffff !important;
    transform: translateY(-150%);
}

.public-skip-link:focus {
    transform: translateY(0);
}

.public-header {
    position: relative;
    z-index: 10;
    margin-bottom: 0;
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background: #707c87;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.14);
}

.public-header-inner {
    position: relative;
    min-height: 96px;
    display: flex;
    align-items: center;
    gap: clamp(24px, 4vw, 48px);
}

.public-brand {
    position: relative;
    z-index: 1;
    flex: 0 0 auto;
    display: block;
    isolation: isolate;
    color: #ffffff !important;
    text-decoration: none;
}

.public-brand::before {
    position: absolute;
    z-index: -1;
    top: -18%;
    right: -18%;
    bottom: -18%;
    left: -18%;
    background:
        radial-gradient(
            ellipse at 55% 50%,
            rgba(255, 255, 255, 0.108) 0%,
            rgba(255, 255, 255, 0.058) 32%,
            rgba(255, 255, 255, 0.022) 57%,
            rgba(255, 255, 255, 0) 82%
        ),
        radial-gradient(
            ellipse at 16% 36%,
            rgba(255, 255, 255, 0.086) 0%,
            rgba(255, 255, 255, 0.038) 35%,
            rgba(255, 255, 255, 0) 72%
        ),
        radial-gradient(
            ellipse at 58% 82%,
            rgba(255, 255, 255, 0.054) 0%,
            rgba(255, 255, 255, 0.022) 40%,
            rgba(255, 255, 255, 0) 76%
        );
    content: "";
    filter: blur(34px);
    pointer-events: none;
}

.public-brand-logo {
    display: block;
    width: auto;
    height: 80px;
    max-width: none;
    filter:
        drop-shadow(0 0 1px rgba(255, 255, 255, 0.22))
        drop-shadow(0 3px 7px rgba(0, 0, 0, 0.28));
}

.public-header-controls {
    flex: 1 1 auto;
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.public-navigation-toggle {
    width: 44px;
    height: 44px;
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    border: 1px solid rgba(255, 255, 255, 0.42);
    border-radius: var(--public-radius-sm);
    padding: 0;
    background: transparent;
    color: #ffffff;
    cursor: pointer;
    transition: background-color 150ms ease, border-color 150ms ease;
}

.public-navigation-toggle:hover {
    border-color: rgba(255, 255, 255, 0.68);
    background: rgba(255, 255, 255, 0.08);
}

.public-navigation-toggle-line {
    width: 22px;
    height: 2px;
    display: block;
    border-radius: 999px;
    background: currentColor;
    transition: opacity 150ms ease, transform 150ms ease;
}

.public-header-controls.is-open .public-navigation-toggle-line:first-child {
    transform: translateY(7px) rotate(45deg);
}

.public-header-controls.is-open .public-navigation-toggle-line:nth-child(2) {
    opacity: 0;
}

.public-header-controls.is-open .public-navigation-toggle-line:last-child {
    transform: translateY(-7px) rotate(-45deg);
}

.public-navigation {
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: clamp(10px, 2vw, 26px);
}

.public-navigation-link {
    position: relative;
    padding: 12px 2px;
    color: #ffffff !important;
    font-size: 0.92rem;
    font-weight: 650;
    text-decoration: none;
    white-space: nowrap;
    opacity: 0.9;
    transition: opacity 150ms ease;
}

.public-navigation-link:hover,
.public-navigation-link:focus-visible,
.public-footer-navigation-link:hover,
.public-footer-navigation-link:focus-visible,
.public-footer-legal-link:hover,
.public-footer-legal-link:focus-visible {
    color: #ffffff !important;
    opacity: 0.72;
    text-decoration: none;
}

.public-navigation-link.is-active,
.public-footer-navigation-link.is-active {
    color: #ffffff !important;
    opacity: 1;
}

.public-navigation-link.is-active::after,
.public-footer-navigation-link.is-active::after {
    position: absolute;
    right: 0;
    left: 0;
    height: 2px;
    border-radius: 999px;
    background: #ffffff;
    content: "";
}

.public-navigation-link.is-active::after {
    bottom: 5px;
}

.public-main {
    flex: 1 0 auto;
    padding: clamp(36px, 5vw, 52px) 0 clamp(44px, 6vw, 72px);
}

.public-page-header,
.search-intro {
    max-width: 760px;
    margin-bottom: 28px;
}

.public-page-header h1,
.search-intro h1 {
    margin-bottom: 10px;
}

.public-page-header p,
.search-intro p {
    max-width: 680px;
    margin-bottom: 0;
    color: var(--public-muted);
    font-size: 1.05rem;
}

.search-intro-information {
    display: grid;
    gap: 4px;
    margin-top: 14px;
}

.search-intro.explorer-brand-card {
    position: relative;
    max-width: none;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: var(--public-radius-md);
    padding: clamp(24px, 3.5vw, 34px);
    background: linear-gradient(135deg, var(--public-brand-blue) 0%, var(--public-brand-blue-active) 100%);
    box-shadow: var(--public-shadow-md);
}

.explorer-brand-card .search-intro-layout {
    display: flex;
    align-items: flex-start;
    gap: clamp(28px, 5vw, 58px);
}

.explorer-brand-card .search-intro-copy {
    min-width: 0;
    flex: 1 1 680px;
}

.explorer-brand-card .explorer-wordmark {
    margin-bottom: 13px;
    color: #ffffff;
    font-size: clamp(2.15rem, 4vw, 3.3rem);
    font-weight: 820;
    letter-spacing: -0.045em;
    line-height: 0.98;
}

.explorer-brand-card .explorer-wordmark-prefix {
    display: inline-block;
    margin-right: 0.16em;
    font-size: 0.48em;
    font-weight: 780;
    letter-spacing: 0.16em;
    line-height: 1;
    text-transform: uppercase;
    transform: translateY(-0.12em);
}

.explorer-brand-card .explorer-wordmark-name {
    letter-spacing: -0.045em;
}

.search-intro.explorer-brand-card > .search-intro-layout > .search-intro-copy > p {
    max-width: 700px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    line-height: 1.55;
}

.explorer-brand-card .search-intro-information {
    margin-top: 12px;
}

.explorer-brand-card .search-intro-information p {
    margin: 0;
    color: rgba(255, 255, 255, 0.74);
    font-size: 0.82rem;
    font-weight: 400;
    line-height: 1.45;
}

.explorer-brand-card .search-intro-information a {
    color: #ffffff;
    font-weight: 650;
}

.explorer-brand-card .search-intro-information a:hover {
    color: #ffffff;
}

.explorer-brand-card .explorer-freshness-badge {
    min-width: 0;
    width: fit-content;
    max-width: 100%;
    flex: 0 0 auto;
    margin-left: auto;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: var(--public-radius-sm);
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.1);
}

.explorer-brand-card .explorer-freshness-heading {
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.76);
    font-size: 0.67rem;
    font-weight: 750;
    letter-spacing: 0.09em;
    line-height: 1.2;
    text-transform: uppercase;
}

.explorer-brand-card .explorer-freshness-list {
    margin: 0;
}

.explorer-brand-card .explorer-freshness-item {
    min-width: 0;
    display: grid;
    grid-template-columns: max-content minmax(0, 1fr);
    align-items: baseline;
    gap: 14px;
    font-size: 0.78rem;
    line-height: 1.35;
}

.explorer-brand-card .explorer-freshness-item + .explorer-freshness-item {
    margin-top: 5px;
}

.explorer-brand-card .explorer-freshness-label {
    color: rgba(255, 255, 255, 0.76);
    font-weight: 650;
    white-space: nowrap;
}

.explorer-brand-card .explorer-freshness-value {
    position: relative;
    min-width: 0;
    margin: 0;
    padding-left: 13px;
    color: #ffffff;
    font-weight: 650;
    text-align: right;
    overflow-wrap: anywhere;
}

.explorer-brand-card .explorer-freshness-value::before {
    position: absolute;
    top: 0.68em;
    left: 0;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #c5ced8;
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.12);
    content: "";
    transform: translateY(-50%);
}

.explorer-brand-card .explorer-freshness-value.is-current::before {
    background: #7ee2ad;
}

.explorer-brand-card .explorer-freshness-value.is-over-30::before {
    background: #ffd166;
}

.explorer-brand-card .explorer-freshness-value.is-over-60::before {
    background: #ffad66;
}

.explorer-brand-card .explorer-freshness-value.is-over-90::before {
    background: #ff9b9b;
}

.explorer-brand-card .explorer-freshness-value.is-unavailable::before {
    background: #c5ced8;
}

.explorer-brand-card .explorer-sponsorship {
    margin-top: 13px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 13px;
}

.explorer-brand-card .explorer-sponsorship-link {
    max-width: 100%;
    display: block;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: var(--public-radius-sm);
    padding: 10px 11px;
    background: rgba(255, 255, 255, 0.07);
    color: #ffffff;
    text-decoration: none;
    overflow-wrap: anywhere;
    transition: background-color 150ms ease, border-color 150ms ease, transform 150ms ease;
}

.explorer-brand-card .explorer-sponsorship-link:hover {
    border-color: rgba(255, 255, 255, 0.48);
    background: rgba(255, 255, 255, 0.14);
    color: #ffffff;
    transform: translateY(-1px);
}

.explorer-brand-card .explorer-sponsorship-link:focus-visible {
    outline: 3px solid #ffffff;
    outline-offset: 2px;
}

.explorer-brand-card .explorer-sponsorship-label,
.explorer-brand-card .explorer-sponsorship-title,
.explorer-brand-card .explorer-sponsorship-description,
.explorer-brand-card .explorer-sponsorship-action {
    display: block;
}

.explorer-brand-card .explorer-sponsorship-label {
    margin-bottom: 3px;
    color: #ffd166;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.075em;
    line-height: 1.25;
    text-transform: uppercase;
}

.explorer-brand-card .explorer-sponsorship-title {
    font-size: 0.82rem;
    font-weight: 750;
    line-height: 1.3;
}

.explorer-brand-card .explorer-sponsorship-description {
    max-width: 31ch;
    margin-top: 3px;
    color: rgba(255, 255, 255, 0.76);
    font-size: 0.7rem;
    line-height: 1.35;
}

.explorer-brand-card .explorer-sponsorship-action {
    margin-top: 7px;
    color: #ffffff;
    font-size: 0.7rem;
    font-weight: 750;
    line-height: 1.3;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}

.public-card,
.results-panel,
.empty-state,
.error-state {
    border: 1px solid var(--public-border);
    border-radius: var(--public-radius-md);
    background: var(--public-surface);
    box-shadow: var(--public-shadow-sm);
}

.public-card {
    padding: clamp(20px, 3vw, 30px);
}

.public-embedded-content {
    --public-content-frame-height: 1700px;

    width: 100%;
    min-width: 0;
    overflow: hidden;
    border: 0;
    border-radius: 0;
    padding: 0;
    background: transparent;
    box-shadow: none;
}

.public-content-frame {
    width: 100%;
    min-width: 0;
    max-width: 800px;
    height: var(--public-content-frame-height);
    display: block;
    margin-inline: auto;
    border: 0;
    background: var(--public-surface);
}

.public-content-fallback {
    margin: 12px 0 0;
    color: var(--public-muted);
    font-size: 0.84rem;
    text-align: center;
}

.advertise-page {
    width: 100%;
    min-width: 0;
}

.advertise-intro {
    max-width: 72ch;
}

.public-page-header.advertise-intro p + p {
    margin-top: 14px;
}

.advertise-section {
    margin-top: clamp(42px, 6vw, 68px);
}

.advertise-section-heading {
    max-width: 70ch;
    margin-bottom: 22px;
}

.advertise-section-heading h2 {
    margin-bottom: 0;
}

.advertise-benefit-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.advertise-benefit-card {
    position: relative;
    min-width: 0;
    border: 1px solid var(--public-border);
    border-radius: var(--public-radius-md);
    padding: 21px 22px 21px 54px;
    background: var(--public-surface);
    box-shadow: var(--public-shadow-sm);
    color: var(--public-ink);
}

.advertise-benefit-card::before {
    position: absolute;
    top: 22px;
    left: 22px;
    width: 20px;
    height: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--public-blue-100);
    color: var(--public-brand-blue);
    content: "\2713";
    font-size: 0.75rem;
    font-weight: 900;
    line-height: 1;
}

.advertise-faq-list {
    display: grid;
    gap: 14px;
}

.advertise-faq-card {
    min-width: 0;
    border: 1px solid var(--public-border);
    border-radius: var(--public-radius-md);
    padding: clamp(20px, 3vw, 26px);
    background: var(--public-surface);
    box-shadow: var(--public-shadow-sm);
}

.advertise-faq-card h3 {
    margin-bottom: 8px;
    font-size: 1.08rem;
    letter-spacing: -0.01em;
}

.advertise-faq-card p {
    max-width: 78ch;
    margin-bottom: 0;
    color: var(--public-muted);
}

.advertise-contact-card {
    min-width: 0;
    display: grid;
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
    gap: clamp(26px, 5vw, 58px);
    margin-top: clamp(48px, 7vw, 78px);
    border: 1px solid rgba(0, 7, 187, 0.24);
    border-radius: var(--public-radius-lg);
    padding: clamp(26px, 5vw, 46px);
    background: linear-gradient(135deg, var(--public-surface) 0%, var(--public-blue-50) 100%);
    box-shadow: var(--public-shadow-md);
}

.advertise-contact-intro,
.advertise-inquiry-details {
    min-width: 0;
}

.advertise-contact-intro h2 {
    margin-bottom: 10px;
}

.advertise-contact-intro p {
    margin-bottom: 22px;
    color: var(--public-muted);
}

.advertise-contact-action {
    width: fit-content;
    max-width: 100%;
}

.advertise-inquiry-details {
    border-left: 1px solid var(--public-border);
    padding-left: clamp(24px, 4vw, 42px);
}

.advertise-inquiry-details h3 {
    margin-bottom: 14px;
    font-size: 1rem;
}

.advertise-inquiry-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px 24px;
    margin: 0 0 20px;
    padding-left: 20px;
    color: var(--public-muted);
}

.advertise-inquiry-list li::marker {
    color: var(--public-brand-blue);
}

.advertise-contact-note {
    margin-bottom: 0;
    color: var(--public-navy-900);
    font-size: 0.9rem;
    font-weight: 700;
}

.contact-page {
    width: 100%;
    min-width: 0;
    max-width: 920px;
    margin-inline: auto;
}

.contact-intro {
    max-width: 72ch;
}

.public-page-header .tip-confidentiality-intro {
    margin-top: 14px;
}

.contact-section-heading {
    max-width: 68ch;
    margin-bottom: 18px;
}

.contact-section-heading h2 {
    margin-bottom: 7px;
}

.contact-section-heading p,
.contact-form-heading p {
    margin-bottom: 0;
    color: var(--public-muted);
}

.contact-type-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.tip-email-alternative {
    max-width: 100%;
    margin: 16px 0 4px;
    color: var(--public-muted);
    font-size: 0.84rem;
    line-height: 1.5;
    overflow-wrap: anywhere;
    text-align: center;
}

.contact-type-card {
    width: 100%;
    min-width: 0;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    border: 1px solid var(--public-border);
    border-radius: var(--public-radius-md);
    padding: clamp(20px, 3vw, 26px);
    background: var(--public-surface);
    color: var(--public-ink);
    text-align: left;
    box-shadow: var(--public-shadow-sm);
    cursor: pointer;
    transition:
        border-color 150ms ease,
        background-color 150ms ease,
        box-shadow 150ms ease,
        transform 150ms ease;
}

.contact-type-card:hover {
    border-color: var(--public-blue-600);
    background: var(--public-blue-50);
    box-shadow: var(--public-shadow-md);
    transform: translateY(-2px);
}

.contact-type-card:focus-visible {
    border-color: var(--public-brand-blue);
    outline: 3px solid rgba(0, 7, 187, 0.28);
    outline-offset: 3px;
}

.contact-type-card.is-selected {
    border-color: var(--public-brand-blue);
    background: var(--public-blue-50);
    box-shadow: inset 0 0 0 1px var(--public-brand-blue), var(--public-shadow-sm);
}

.contact-type-card-title {
    display: block;
    margin-bottom: 8px;
    color: var(--public-navy-950);
    font-size: 1.2rem;
    font-weight: 800;
    line-height: 1.25;
}

.contact-type-card-description {
    display: block;
    margin-bottom: 0;
    color: var(--public-muted);
    font-size: 0.92rem;
    line-height: 1.55;
}

.contact-form-panel {
    margin-top: 26px;
}

.contact-form-panel[hidden],
.contact-employee-workflow[hidden],
.contact-workflow-step[hidden],
.contact-employee-empty[hidden],
.contact-employee-summary[hidden],
.tip-person-panel[hidden],
.tip-remove-person[hidden],
.contact-profile-issue-panel[hidden],
.contact-removal-policy[hidden],
.public-employee-modal[hidden],
.public-employee-search-footer[hidden] {
    display: none;
}

.contact-form-heading {
    margin-bottom: 24px;
}

.contact-form-heading h2 {
    margin-bottom: 7px;
}

.contact-form {
    margin-bottom: 0;
}

.tip-workflow-form {
    width: 100%;
    min-width: 0;
    max-width: 100%;
    display: grid;
    gap: 20px;
}

.tip-workflow-form .contact-workflow-step {
    margin: 0;
}

.tip-arrest-details {
    min-width: 0;
    max-width: 100%;
}

.tip-person-list {
    min-width: 0;
    display: grid;
    gap: 16px;
    margin-top: 20px;
}

.tip-person-entry {
    width: 100%;
    min-width: 0;
    max-width: 100%;
    border: 1px solid var(--public-border);
    border-radius: var(--public-radius-md);
    padding: clamp(16px, 3vw, 20px);
    background: var(--public-blue-50);
}

.tip-person-header {
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 16px;
}

.tip-person-header h3 {
    min-width: 0;
    margin: 0;
    color: var(--public-navy-950);
    font-size: 1.12rem;
}

.tip-person-panel {
    min-width: 0;
    margin-top: 16px;
}

.tip-remove-person {
    width: auto;
    min-width: 0;
    flex: 0 0 auto;
}

.tip-add-person {
    width: 100%;
    min-width: 0;
    margin-top: 16px;
}

.contact-form-actions {
    display: flex;
    justify-content: stretch;
    margin-top: 22px;
}

.contact-form-actions .public-button {
    width: 100%;
    min-width: 0;
}

.contact-error-list {
    margin: 0;
    padding-left: 20px;
}

.contact-error-list li + li {
    margin-top: 5px;
}

.contact-honeypot {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    clip: rect(0 0 0 0) !important;
    clip-path: inset(50%) !important;
    white-space: nowrap !important;
}

.contact-employee-workflow {
    display: grid;
    gap: 20px;
    margin-top: 26px;
}

.contact-workflow-step h2,
.contact-profile-issue-panel h2,
.contact-removal-policy h2 {
    margin-bottom: 16px;
    font-size: clamp(1.3rem, 3vw, 1.7rem);
}

.contact-step-label {
    display: block;
    margin-bottom: 7px;
    color: var(--public-brand-blue);
    font-size: 0.72rem;
    font-weight: 850;
    letter-spacing: 0.08em;
    line-height: 1.3;
    text-transform: uppercase;
}

.contact-employee-empty {
    padding-top: 4px;
}

.contact-employee-empty .public-button {
    width: 100%;
}

.contact-employee-summary {
    min-width: 0;
    border: 1px solid var(--public-border);
    border-radius: var(--public-radius-md);
    padding: 18px;
    background: var(--public-blue-50);
}

.contact-employee-summary-grid {
    min-width: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.contact-employee-summary-grid > div {
    min-width: 0;
    overflow-wrap: anywhere;
}

.contact-summary-label {
    display: block;
    margin-bottom: 3px;
    color: var(--public-muted);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.065em;
    line-height: 1.3;
    text-transform: uppercase;
}

.contact-employee-summary strong,
.contact-selected-employee-readonly strong {
    display: block;
    color: var(--public-navy-950);
    font-size: 1.05rem;
    line-height: 1.4;
}

.contact-change-employee {
    width: 100%;
    margin-top: 18px;
}

.contact-support-option-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
}

.contact-support-option {
    width: 100%;
    min-width: 0;
    display: block;
    border: 1px solid var(--public-border);
    border-radius: var(--public-radius-md);
    padding: 18px;
    background: var(--public-surface);
    color: var(--public-ink);
    text-align: left;
    box-shadow: var(--public-shadow-sm);
    cursor: pointer;
    transition:
        border-color 150ms ease,
        background-color 150ms ease,
        box-shadow 150ms ease;
}

.contact-support-option:hover {
    border-color: var(--public-blue-600);
    background: var(--public-blue-50);
}

.contact-support-option:focus-visible {
    border-color: var(--public-brand-blue);
    outline: 3px solid rgba(0, 7, 187, 0.28);
    outline-offset: 3px;
}

.contact-support-option.is-selected {
    border-color: var(--public-brand-blue);
    background: var(--public-blue-50);
    box-shadow: inset 0 0 0 1px var(--public-brand-blue);
}

.contact-support-option-title {
    display: block;
    margin-bottom: 7px;
    color: var(--public-navy-950);
    font-size: 1.05rem;
    font-weight: 800;
    line-height: 1.3;
}

.contact-support-option-description {
    display: block;
    color: var(--public-muted);
    font-size: 0.88rem;
    line-height: 1.55;
}

.contact-selected-employee-readonly {
    min-width: 0;
    margin-bottom: 24px;
    border: 1px solid var(--public-border);
    border-radius: var(--public-radius-sm);
    padding: 15px 16px;
    background: var(--public-blue-50);
    overflow-wrap: anywhere;
}

.contact-selected-employee-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 4px 8px;
    margin-top: 4px;
    color: var(--public-muted);
    font-size: 0.86rem;
}

.contact-removal-policy {
    border-color: rgba(0, 7, 187, 0.22);
    background: linear-gradient(135deg, var(--public-surface), var(--public-blue-50));
}

.contact-removal-policy p {
    max-width: 76ch;
    color: var(--public-muted);
}

.contact-removal-policy p:last-child {
    margin-bottom: 0;
}

.public-site.has-public-modal {
    overflow: hidden;
}

.public-employee-modal {
    position: fixed;
    z-index: 1000;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
}

.public-employee-modal-backdrop {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    padding: 0;
    background: rgba(9, 36, 63, 0.68);
    cursor: default;
}

.public-employee-modal-dialog {
    position: relative;
    z-index: 1;
    width: 100%;
    min-width: 0;
    max-width: 760px;
    height: calc(100dvh - 16px);
    max-height: calc(100dvh - 16px);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid var(--public-border);
    border-radius: var(--public-radius-md);
    background: var(--public-surface);
    box-shadow: 0 24px 60px rgba(9, 36, 63, 0.28);
}

.public-employee-modal-header {
    min-width: 0;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    border-bottom: 1px solid var(--public-border);
    padding: 18px;
}

.public-employee-modal-header > div {
    min-width: 0;
}

.public-employee-modal-header h2 {
    margin-bottom: 5px;
    font-size: 1.35rem;
}

.public-employee-modal-header p {
    margin-bottom: 0;
    color: var(--public-muted);
    font-size: 0.88rem;
}

.public-employee-modal-close {
    width: 46px;
    height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    border: 1px solid var(--public-border);
    border-radius: var(--public-radius-sm);
    padding: 0;
    background: var(--public-surface);
    color: var(--public-navy-950);
    font-size: 1.7rem;
    line-height: 1;
    cursor: pointer;
}

.public-employee-modal-close:hover {
    border-color: var(--public-blue-600);
    background: var(--public-blue-50);
}

.public-employee-modal-search {
    padding: 16px 18px;
    border-bottom: 1px solid var(--public-border);
}

.public-employee-modal-search label {
    display: block;
    margin-bottom: 7px;
}

.public-employee-modal-search input {
    min-height: 52px;
    font-size: 1rem;
}

.public-employee-search-results {
    min-width: 0;
    flex: 1 1 auto;
    display: grid;
    align-content: start;
    gap: 10px;
    overflow-y: auto;
    overscroll-behavior: contain;
    padding: 14px 18px;
}

.public-employee-search-result {
    width: 100%;
    min-width: 0;
    min-height: 58px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    gap: 3px;
    border: 1px solid var(--public-border);
    border-radius: var(--public-radius-sm);
    padding: 13px 14px;
    background: var(--public-surface);
    color: var(--public-ink);
    text-align: left;
    cursor: pointer;
}

.public-employee-search-result:hover,
.public-employee-search-result:focus-visible {
    border-color: var(--public-brand-blue);
    background: var(--public-blue-50);
}

.public-employee-search-result:focus-visible {
    outline: 3px solid rgba(0, 7, 187, 0.24);
    outline-offset: 2px;
}

.public-employee-search-result strong {
    color: var(--public-navy-950);
    font-size: 1rem;
    overflow-wrap: anywhere;
}

.public-employee-search-result-meta {
    color: var(--public-muted);
    font-size: 0.84rem;
    line-height: 1.4;
    overflow-wrap: anywhere;
}

.public-employee-search-message {
    border: 1px solid var(--public-border);
    border-radius: var(--public-radius-sm);
    padding: 16px;
    background: var(--public-blue-50);
    color: var(--public-muted);
}

.public-employee-search-footer {
    display: flex;
    align-items: stretch;
    flex-direction: column;
    gap: 10px;
    border-top: 1px solid var(--public-border);
    padding: 14px 18px;
}

.public-employee-search-count {
    color: var(--public-muted);
    font-size: 0.82rem;
}

.public-employee-search-pagination {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
}

.public-employee-search-pagination .public-button {
    width: 100%;
    min-width: 0;
}

.public-employee-search-pagination .public-button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

@media (min-width: 641px) {
    .contact-type-grid,
    .contact-support-option-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .contact-employee-empty .public-button,
    .contact-change-employee,
    .tip-add-person,
    .contact-form-actions .public-button {
        width: auto;
    }

    .contact-employee-summary-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .contact-change-employee {
        margin-top: 20px;
    }

    .contact-form-actions {
        justify-content: flex-end;
    }

    .contact-form-actions .public-button {
        min-width: 160px;
    }

    .public-employee-modal {
        padding: 20px;
    }

    .public-employee-modal-dialog {
        height: auto;
        max-height: min(84vh, 760px);
        border-radius: var(--public-radius-lg);
    }

    .public-employee-modal-header {
        padding: 22px 24px;
    }

    .public-employee-modal-search {
        padding: 18px 24px;
    }

    .public-employee-search-results {
        min-height: 250px;
        padding: 16px 24px;
    }

    .public-employee-search-footer {
        align-items: center;
        justify-content: space-between;
        flex-direction: row;
        padding: 16px 24px;
    }
}

.tip-contact-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.tip-contact-card {
    min-width: 0;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    border: 1px solid var(--public-border);
    border-radius: var(--public-radius-md);
    padding: clamp(24px, 3vw, 30px);
    background: rgba(255, 255, 255, 0.78);
    box-shadow: var(--public-shadow-sm);
}

.public-section-icon,
.home-card-icon,
.home-upcoming-icon {
    color: #0007BB;
}

.public-section-icon {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    margin-bottom: 18px;
    border-radius: 11px;
    background: var(--public-blue-100);
}

.public-section-icon svg {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
}

.public-section-icon-signal svg {
    stroke-dasharray: none;
}

.tip-contact-card h2 {
    margin-bottom: 11px;
    font-size: clamp(1.3rem, 2vw, 1.55rem);
}

.tip-contact-card p {
    margin-bottom: 24px;
    color: var(--public-muted);
}

.tip-contact-action {
    margin-top: auto;
}

.tip-contact-actions {
    width: 100%;
    display: flex;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: auto;
}

.tip-contact-actions .tip-contact-action {
    min-width: 0;
    flex: 1 1 170px;
    margin-top: 0;
}

.tip-signal-identity {
    width: 100%;
    margin: 0 0 22px;
    border: 1px solid var(--public-border);
    border-radius: var(--public-radius-sm);
    padding: 14px 16px;
    background: var(--public-blue-50);
}

.tip-signal-label,
.tip-signal-help {
    display: block;
    color: var(--public-muted);
    font-size: 0.79rem;
}

.tip-signal-label {
    margin-bottom: 2px;
    font-weight: 750;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.tip-signal-username {
    display: block;
    margin-bottom: 3px;
    color: var(--public-navy-950);
    font-size: 1.3rem;
    letter-spacing: 0.01em;
}

.tip-anonymous-section {
    min-width: 0;
    grid-column: 1 / -1;
    padding-top: 10px;
}

.tip-anonymous-intro {
    margin-bottom: 28px;
}

.tip-anonymous-intro p {
    margin-bottom: 0;
}

.public-card-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.public-button,
.public-search-button,
.public-site button,
.public-site input,
.public-site select,
.public-site textarea {
    font: inherit;
}

.public-button,
.public-search-button {
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 1px solid transparent;
    border-radius: var(--public-radius-sm);
    padding: 10px 18px;
    background: var(--public-brand-blue);
    color: #ffffff !important;
    font-weight: 750;
    line-height: 1.2;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 150ms ease, border-color 150ms ease, transform 150ms ease;
}

.public-button:hover,
.public-search-button:hover {
    background: var(--public-brand-blue-hover);
    color: #ffffff !important;
}

.public-button:active,
.public-search-button:active {
    background: var(--public-brand-blue-active);
    color: #ffffff !important;
    transform: translateY(1px);
}

.public-button-secondary {
    border-color: var(--public-border-strong);
    background: #ffffff;
    color: var(--public-navy-900) !important;
}

.public-button-secondary:hover {
    border-color: var(--public-blue-600);
    background: var(--public-blue-50);
    color: var(--public-navy-900) !important;
}

.home-hero {
    max-width: 900px;
    margin: 0 auto clamp(40px, 6vw, 68px);
    padding-top: clamp(8px, 2vw, 20px);
    text-align: center;
}

.home-eyebrow {
    max-width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    border: 1px solid rgba(0, 7, 187, 0.22);
    border-radius: 999px;
    padding: 6px 13px;
    background: rgba(0, 7, 187, 0.04);
    color: var(--public-brand-blue);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.075em;
    line-height: 1.3;
    text-align: center;
    text-transform: uppercase;
    white-space: normal;
}

.home-hero h1 {
    max-width: 820px;
    margin: 0 auto 22px;
    font-size: clamp(2.45rem, 5.5vw, 4.6rem);
    letter-spacing: -0.045em;
}

.home-hero-copy {
    max-width: 790px;
    margin-inline: auto;
    color: var(--public-muted);
    font-size: clamp(1.02rem, 1.5vw, 1.13rem);
}

.home-hero-copy p {
    margin-bottom: 12px;
}

.home-hero-copy p:last-child {
    margin-bottom: 0;
}

.home-feature-section {
    margin-bottom: clamp(64px, 9vw, 104px);
}

.home-feature-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(18px, 3vw, 28px);
}

.home-feature-card {
    min-height: 360px;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    border: 1px solid var(--public-border);
    border-radius: var(--public-radius-lg);
    padding: clamp(26px, 4vw, 40px);
    background: var(--public-surface);
    box-shadow: var(--public-shadow-md);
    transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.home-feature-card:hover {
    border-color: #bbcde0;
    box-shadow: 0 20px 42px rgba(9, 36, 63, 0.13);
    transform: translateY(-4px);
}

.home-card-icon,
.home-upcoming-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: var(--public-blue-100);
}

.home-card-icon {
    width: 58px;
    height: 58px;
    margin-bottom: 24px;
}

.home-card-icon-facebook {
    background: #e9efff;
}

.home-card-icon svg,
.home-upcoming-icon svg {
    width: 28px;
    height: 28px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
}

.home-card-icon-facebook svg {
    fill: currentColor;
    stroke: none;
}

.home-feature-card h2 {
    margin-bottom: 12px;
}

.home-feature-card p {
    margin-bottom: 28px;
    color: var(--public-muted);
}

.home-feature-action {
    min-width: 170px;
    margin-top: auto;
}

.home-coming-soon {
    padding-top: clamp(42px, 6vw, 64px);
    border-top: 1px solid var(--public-border);
}

.home-section-heading {
    max-width: 670px;
    margin-bottom: 30px;
}

.home-section-heading h2 {
    margin-bottom: 10px;
}

.home-section-heading p {
    margin-bottom: 0;
    color: var(--public-muted);
}

.home-upcoming-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.home-upcoming-card {
    min-height: 220px;
    border: 1px solid var(--public-border);
    border-radius: var(--public-radius-md);
    padding: 24px;
    background: rgba(255, 255, 255, 0.72);
    box-shadow: var(--public-shadow-sm);
    transition: background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.home-upcoming-card:hover {
    border-color: #bbcde0;
    background: var(--public-surface);
    transform: translateY(-3px);
}

.home-upcoming-icon {
    width: 42px;
    height: 42px;
    margin-bottom: 18px;
    border-radius: 11px;
}

.home-upcoming-icon svg {
    width: 22px;
    height: 22px;
}

.home-upcoming-card h3 {
    margin-bottom: 9px;
}

.home-upcoming-card p {
    margin-bottom: 0;
    color: var(--public-muted);
    font-size: 0.9rem;
    line-height: 1.55;
}

.public-search-form,
.public-form {
    margin-bottom: 26px;
}

.public-search-form {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 22px;
    padding: 12px;
    border: 1px solid var(--public-border);
    border-radius: var(--public-radius-md);
    background: var(--public-surface);
    box-shadow: var(--public-shadow-md);
}

.public-search-input {
    min-width: 0;
    flex: 1 1 auto;
}

.public-search-actions {
    display: flex;
    align-items: stretch;
    flex: 0 0 auto;
    gap: 10px;
}

.public-search-actions .public-search-button,
.public-search-actions .public-search-reset {
    min-width: 92px;
}

.explorer-employee-search {
    margin-bottom: 26px;
    padding: 18px;
    border: 1px solid var(--public-border);
    border-top: 3px solid var(--public-brand-blue);
    border-radius: var(--public-radius-md);
    background: var(--public-surface);
    box-shadow: var(--public-shadow-md);
}

.explorer-employee-search h2 {
    margin: 0 0 12px;
    color: var(--public-brand-blue);
    font-size: 1.15rem;
    line-height: 1.25;
}

.explorer-employee-search .public-search-form {
    margin-bottom: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    box-shadow: none;
}

.explorer-employee-search .results-panel,
.explorer-employee-search .empty-state,
.explorer-employee-search .error-state {
    margin-top: 18px;
}

.public-table-toolbar {
    min-width: 0;
    margin: 0 0 4px;
    border: 1px solid var(--public-border);
    border-radius: var(--public-radius-sm);
    padding: 8px;
    background: var(--public-surface);
    box-shadow: none;
}

.public-table-toolbar-form {
    min-width: 0;
    display: grid;
    gap: 8px;
}

.public-table-toolbar-search-row {
    min-width: 0;
    display: grid;
    gap: 4px;
}

.public-table-toolbar-search-row > label {
    color: var(--public-ink);
    font-size: 0.76rem;
    font-weight: 750;
}

.public-table-toolbar-search-controls {
    min-width: 0;
    display: flex;
    align-items: stretch;
    gap: 8px;
}

.public-table-toolbar-search-controls > .public-search-input {
    min-width: 120px;
    flex: 1 1 auto;
}

.public-table-toolbar .public-search-input,
.public-table-toolbar input:not([type="hidden"]),
.public-table-toolbar select,
.public-table-toolbar .public-button,
.public-table-toolbar .public-search-button {
    min-height: 40px;
    height: 40px;
    font-size: 0.9rem;
}

.public-table-toolbar .public-search-input,
.public-table-toolbar input:not([type="hidden"]),
.public-table-toolbar select {
    padding: 7px 10px;
}

.public-table-toolbar .public-button,
.public-table-toolbar .public-search-button {
    padding: 7px 13px;
}

.public-table-filter-fields {
    min-width: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(120px, 100%), 1fr));
    grid-auto-flow: row dense;
    align-items: end;
    gap: 8px;
    margin-inline: -8px;
    border-top: 1px solid var(--public-border);
    padding: 8px;
    background: var(--public-blue-50);
}

.public-table-filter-field {
    min-width: 0;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 4px;
}

.public-table-filter-field label {
    color: var(--public-muted);
    font-size: 0.72rem;
    font-weight: 750;
    line-height: 1.25;
    white-space: normal;
}

.public-table-filter-field input,
.public-table-filter-field select {
    width: 100%;
    min-width: 0;
}

.public-table-filter-control-group {
    min-width: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(118px, 100%), 1fr));
    gap: 5px;
}

.public-table-filter-field--wide,
.public-table-filter-field--date {
    grid-column: span 3;
}

.public-table-filter-field--extra-wide {
    grid-column: span 4;
}

.public-table-filter-field.is-between {
    grid-column: span 3;
}

.public-table-filter-field--short,
.public-table-filter-field--standard {
    grid-column: span 2;
}

.public-table-filter-upper {
    min-width: 0;
}

.public-table-filter-actions {
    min-width: 0;
    display: flex;
    grid-column: span 2;
    align-items: stretch;
    gap: 6px;
}

.public-table-filter-actions > .public-button,
.public-table-filter-actions > .public-search-button {
    flex: 0 1 auto;
    justify-content: center;
}

.public-table-toolbar-meta {
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 6px;
}

.public-table-active-summary {
    min-width: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 3px 8px;
    color: var(--public-muted);
    font-size: 0.72rem;
    line-height: 1.25;
    overflow-wrap: anywhere;
}

.public-table-active-criterion:not(:last-child)::after {
    content: ";";
}

.public-table-active-summary-label {
    color: var(--public-ink);
    font-weight: 750;
}

.public-table-toolbar-count {
    flex: 0 0 auto;
    margin-left: auto;
    color: var(--public-muted);
    font-size: 0.78rem;
    font-weight: 700;
}

.public-table-toolbar + .results-panel,
.public-table-toolbar + .empty-state {
    margin-top: 0;
}

.public-advertisement {
    width: 100%;
    min-width: 0;
    max-width: 100%;
    margin: 24px 0;
    overflow: visible;
}

.public-advertisement > ins {
    width: 100%;
    min-width: 0;
    max-width: 100%;
    display: block;
    text-decoration: none;
}

.explorer-browse {
    min-width: 0;
    margin: 24px 0 10px;
}

.explorer-browse-header {
    margin-bottom: 8px;
}

.explorer-browse-header h2 {
    margin: 0;
}

.public-segmented-control {
    width: fit-content;
    min-width: 0;
    display: inline-grid;
    align-items: stretch;
    gap: 8px;
    margin: 0;
    padding: 0;
    border: 0;
    background: transparent;
}

.public-segmented-control-option {
    min-height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 2px 4px;
    border: 0;
    border-bottom: 1px solid transparent;
    border-radius: 0;
    background: transparent;
    color: var(--public-muted);
    cursor: pointer;
    font-size: 0.68rem;
    font-weight: 550;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;
    white-space: nowrap;
}

.employee-metric-toggle-input:checked + .public-segmented-control-option,
.explorer-browse-tab[aria-selected="true"] {
    border-bottom-color: var(--public-brand-blue);
    background: transparent;
    color: var(--public-navy-900);
    font-weight: 600;
}

.employee-metric-toggle-input:focus-visible + .public-segmented-control-option,
.explorer-browse-tab:focus-visible,
.explorer-browse-entity:focus-visible {
    outline: 3px solid rgba(15, 93, 168, 0.28);
    outline-offset: 2px;
}

.explorer-browse-tabs {
    width: min(100%, 760px);
    max-width: 100%;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0;
    margin-bottom: 12px;
    border-bottom: 1px solid var(--public-border);
    overflow: visible;
}

.explorer-browse-tab {
    min-width: 0;
    padding-inline: 8px;
}

.explorer-browse-tab:hover {
    color: var(--public-navy-900);
}

.explorer-browse-tab:active {
    border-bottom-color: var(--public-brand-blue-active);
    color: var(--public-brand-blue-active);
}

.explorer-browse-panel {
    min-width: 0;
}

.explorer-browse-panel + .explorer-browse-panel {
    margin-top: 20px;
}

.explorer-browse.is-enhanced .explorer-browse-panel + .explorer-browse-panel {
    margin-top: 0;
}

.explorer-browse-panel h3 {
    margin: 0 0 8px;
    color: var(--public-muted);
    font-size: 0.84rem;
    font-weight: 650;
    letter-spacing: 0.01em;
}

.explorer-browse-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.explorer-browse-grid li {
    min-width: 0;
}

.explorer-browse-entity {
    min-width: 0;
    min-height: 46px;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 9px 11px;
    border: 1px solid var(--public-border);
    border-radius: var(--public-radius-sm);
    background: var(--public-surface);
    color: var(--public-navy-900);
    font-size: 0.86rem;
    font-weight: 600;
    line-height: 1.35;
    overflow-wrap: break-word;
    text-decoration: none;
}

.explorer-browse-entity:hover {
    border-color: var(--public-brand-blue);
    color: var(--public-brand-blue);
}

.explorer-browse-empty {
    margin: 0;
}

.employee-demographics {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: repeat(2, auto);
    grid-template-areas:
        "gender race"
        "longest longest";
    align-items: stretch;
    gap: 18px;
    margin-bottom: 24px;
}

.employee-demographic-card {
    min-width: 0;
    height: 100%;
    padding: clamp(20px, 3vw, 28px);
}

.employee-demographic-card-gender {
    grid-area: gender;
}

.employee-demographic-card-race {
    grid-area: race;
}

.employee-longest-serving-card {
    grid-area: longest;
}

.employee-demographic-card-header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 18px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--public-border);
}

.employee-demographic-card-header-stacked {
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 6px;
}

.employee-demographic-card-header h2 {
    margin-bottom: 0;
    font-size: clamp(1.25rem, 2vw, 1.55rem);
}

.public-visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.employee-demographic-selector-wrap {
    width: 100%;
    min-width: 0;
    max-width: 100%;
    flex: 0 1 auto;
}

.employee-demographic-selector {
    width: 100%;
    min-width: 0;
    max-width: 100%;
    padding: 8px 34px 8px 10px;
    overflow: hidden;
    border: 1px solid var(--public-border);
    border-radius: 8px;
    background-color: #fff;
    color: var(--public-navy-900);
    font: inherit;
    font-size: clamp(0.9rem, 1.8vw, 1.05rem);
    font-weight: 750;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.employee-demographic-selector:focus-visible {
    outline: 3px solid rgba(15, 93, 168, 0.28);
    outline-offset: 2px;
}

.employee-demographic-card-total {
    width: 100%;
    min-width: 0;
    flex: 0 1 auto;
    align-self: stretch;
    color: var(--public-muted);
    font-size: 0.82rem;
    font-weight: 650;
    text-align: left;
    white-space: normal;
}

.employee-supervisory-disclosures {
    display: contents;
}

.employee-metric-toggle {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-self: flex-start;
}

.employee-demographic-list {
    margin: 0;
}

.employee-demographic-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: baseline;
    gap: 16px;
    padding: 8px 0;
}

.employee-demographic-row + .employee-demographic-row {
    border-top: 1px solid var(--public-blue-50);
}

.employee-demographic-row dt {
    min-width: 0;
    overflow-wrap: anywhere;
    font-weight: 650;
}

.employee-demographic-row dd {
    margin: 0;
    text-align: right;
    font-variant-numeric: tabular-nums;
}

.employee-demographic-value {
    color: var(--public-navy-900);
    font-weight: 750;
}

.employee-demographic-empty {
    color: var(--public-muted);
}

.employee-demographic-empty {
    margin-bottom: 0;
}

.employee-demographic-view-total {
    margin: 0 0 6px;
    color: var(--public-muted);
    font-size: 0.74rem;
    font-weight: 650;
}

.employee-comparison-table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
}

.employee-comparison-table .employee-comparison-category-column {
    width: 58%;
}

.employee-comparison-table .employee-comparison-metric-column {
    width: 42%;
}

.employee-comparison-table.has-comparison .employee-comparison-category-column {
    width: 40%;
}

.employee-comparison-table.has-comparison .employee-comparison-metric-column {
    width: 30%;
}

.employee-comparison-table th,
.employee-comparison-table td {
    min-width: 0;
    padding: 9px 8px;
    overflow-wrap: anywhere;
    vertical-align: middle;
}

.employee-comparison-table th:first-child,
.employee-comparison-table td:first-child {
    padding-left: 0;
}

.employee-comparison-table th:last-child,
.employee-comparison-table td:last-child {
    padding-right: 0;
}

.employee-comparison-table thead th {
    border-bottom: 1px solid var(--public-border);
    color: var(--public-muted);
    font-size: 0.72rem;
    font-weight: 750;
    line-height: 1.3;
    text-align: right;
    vertical-align: bottom;
}

.employee-comparison-table thead th:first-child,
.employee-comparison-table tbody th {
    text-align: left;
}

.employee-comparison-table tbody tr + tr {
    border-top: 1px solid var(--public-blue-50);
}

.employee-comparison-table tbody th {
    font-weight: 650;
}

.inmate-race-comparison-table tbody th,
.inmate-race-comparison-link {
    overflow-wrap: break-word;
    word-break: normal;
}

.employee-comparison-table tbody td {
    text-align: right;
    font-variant-numeric: tabular-nums;
}

.employee-comparison-heading,
.employee-comparison-heading-total {
    display: block;
}

.employee-comparison-heading {
    color: var(--public-navy-900);
}

.employee-comparison-heading-total {
    margin-top: 2px;
    font-size: 0.68rem;
    font-weight: 600;
}

.employee-comparison-selected {
    border-left: 1px solid var(--public-border);
}

.employee-comparison-value {
    display: inline-block;
}

.employee-comparison-mobile-label {
    display: none;
}

.employee-comparison-disclosure {
    width: fit-content;
    max-width: 100%;
    align-self: flex-start;
    margin: 0;
    border: 0;
    background: transparent;
    color: var(--public-muted);
    font-size: 0.7rem;
}

.employee-comparison-disclosure summary {
    padding: 3px 2px;
    color: var(--public-muted);
    cursor: pointer;
    font-weight: 550;
}

.employee-comparison-disclosure summary::marker {
    font-size: 0.7em;
}

.employee-comparison-disclosure summary:focus-visible {
    outline: 3px solid rgba(15, 93, 168, 0.28);
    outline-offset: 2px;
}

.employee-comparison-disclosure ul {
    display: grid;
    gap: 3px;
    max-width: min(100%, 430px);
    margin: 2px 0 0 8px;
    padding: 5px 10px 6px 22px;
    border-left: 1px solid var(--public-border);
    background: rgba(222, 234, 245, 0.2);
    overflow-wrap: anywhere;
}

.employee-comparison-zero {
    margin: 0 0 8px;
    color: var(--public-muted);
    font-size: 0.78rem;
}

.longest-serving-list {
    display: grid;
}

.employee-longest-serving-header {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
}

.longest-serving-gender-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
    gap: clamp(22px, 4vw, 40px);
}

.longest-serving-gender-group {
    min-width: 0;
}

.longest-serving-gender-group > h3 {
    margin-bottom: 10px;
    color: var(--public-muted);
    font-size: 0.68rem;
    letter-spacing: 0.055em;
    line-height: 1.35;
    text-transform: uppercase;
}

.longest-serving-entry {
    min-width: 0;
    display: grid;
    grid-template-columns: 46px minmax(0, 1fr);
    align-items: center;
    gap: 14px;
    padding-block: 14px;
}

.longest-serving-entry + .longest-serving-entry {
    border-top: 1px solid var(--public-border);
}

.longest-serving-icon {
    width: 46px;
    height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--public-blue-100);
    color: var(--public-brand-blue);
}

.longest-serving-media,
.longest-serving-photo {
    width: 46px;
    height: 46px;
}

.longest-serving-media {
    min-width: 0;
}

.longest-serving-photo {
    display: block;
    border-radius: 50%;
    object-fit: cover;
}

.longest-serving-photo[hidden],
.longest-serving-icon[hidden] {
    display: none;
}

.longest-serving-icon-female {
    background: #f4edf8;
    color: #76518b;
}

.longest-serving-icon svg {
    width: 28px;
    height: 28px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.7;
}

.longest-serving-content {
    min-width: 0;
}

.employee-profile-link.longest-serving-name {
    min-height: 30px;
    font-size: 0.98rem;
}

.longest-serving-title,
.longest-serving-years,
.longest-serving-unavailable {
    margin: 0;
    overflow-wrap: break-word;
}

.longest-serving-title {
    color: var(--public-ink);
    font-size: 0.84rem;
}

.longest-serving-years,
.longest-serving-unavailable {
    color: var(--public-muted);
    font-size: 0.78rem;
}

.tdcj-employee-sponsor-banner,
.tdcj-employee-sponsor-banner * {
    box-sizing: border-box;
}

.tdcj-employee-sponsor-banner {
    width: 100%;
    min-width: 0;
    max-width: 100%;
    border: 1px solid var(--public-border);
    border-radius: var(--public-radius-md);
    padding: 22px 24px;
    background: var(--public-surface);
    box-shadow: var(--public-shadow-sm);
    color: var(--public-ink);
    font-family: inherit;
    text-align: left;
}

.tdcj-employee-sponsor-banner__layout {
    width: 100%;
    min-width: 0;
    max-width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 18px 28px;
}

.tdcj-employee-sponsor-banner__content {
    min-width: 0;
    flex: 1 1 65%;
    overflow-wrap: anywhere;
}

.tdcj-employee-sponsor-banner .tdcj-employee-sponsor-banner__eyebrow {
    margin: 0 0 5px;
    color: var(--public-brand-blue);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.09em;
    line-height: 1.4;
    text-transform: uppercase;
}

.tdcj-employee-sponsor-banner .tdcj-employee-sponsor-banner__headline {
    margin: 0;
    color: var(--public-navy-950);
    font-size: 1.45rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.tdcj-employee-sponsor-banner .tdcj-employee-sponsor-banner__description {
    margin: 8px 0 0;
    color: var(--public-muted);
    font-size: 0.94rem;
    line-height: 1.55;
}

.tdcj-employee-sponsor-banner .tdcj-employee-sponsor-banner__action {
    max-width: 100%;
    flex: 0 1 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--public-brand-blue);
    border-radius: var(--public-radius-sm);
    padding: 10px 17px;
    background: var(--public-brand-blue);
    color: #ffffff;
    font-size: 0.88rem;
    font-weight: 750;
    line-height: 1.4;
    text-align: center;
    text-decoration: none;
    white-space: nowrap;
    cursor: pointer;
    transition:
        background-color 150ms ease,
        border-color 150ms ease,
        box-shadow 150ms ease;
}

.tdcj-employee-sponsor-banner .tdcj-employee-sponsor-banner__action:hover {
    border-color: var(--public-brand-blue-hover);
    background: var(--public-brand-blue-hover);
    color: #ffffff;
    text-decoration: none;
}

.tdcj-employee-sponsor-banner .tdcj-employee-sponsor-banner__action:focus-visible {
    border-color: #ffffff;
    outline: 3px solid var(--public-brand-blue);
    outline-offset: 3px;
    box-shadow: 0 0 0 5px rgba(0, 7, 187, 0.18);
}

.public-form-grid {
    width: 100%;
    min-width: 0;
    max-width: 100%;
    display: grid;
    align-items: start;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.public-form-grid > * {
    min-width: 0;
}

.tip-arrest-information-grid {
    grid-template-columns: minmax(0, 1fr);
}

.tip-arrest-information-grid .public-form-row {
    width: 100%;
    min-width: 0;
    max-width: 100%;
}

.public-form-row {
    min-width: 0;
    display: grid;
    gap: 7px;
}

.public-form-row.is-full-width {
    grid-column: 1 / -1;
}

.public-site label {
    color: var(--public-navy-950);
    font-size: 0.9rem;
    font-weight: 750;
}

.public-site label.public-form-label-required {
    color: var(--public-danger);
}

.public-form-required-notice {
    margin: 0;
    color: var(--public-muted);
    font-size: 0.84rem;
    line-height: 1.5;
}

.public-form-required-notice-color {
    color: var(--public-danger);
}

.public-search-input,
.public-site input:not([type="checkbox"]):not([type="radio"]):not([type="submit"]),
.public-site select,
.public-site textarea {
    box-sizing: border-box;
    width: 100%;
    min-width: 0;
    min-inline-size: 0;
    max-width: 100%;
    min-height: 46px;
    display: block;
    border: 1px solid var(--public-border-strong);
    border-radius: var(--public-radius-sm);
    padding: 10px 13px;
    background: #ffffff;
    color: var(--public-ink);
    font-size: 1rem;
    line-height: 1.5;
    outline: none;
    transition: border-color 150ms ease, box-shadow 150ms ease;
}

.public-search-input,
.public-site input:not([type="checkbox"]):not([type="radio"]):not([type="submit"]),
.public-site select {
    height: 46px;
}

.public-site textarea {
    min-height: 140px;
    resize: vertical;
}

.public-search-input:focus,
.public-site input:focus,
.public-site select:focus,
.public-site textarea:focus {
    border-color: var(--public-blue-600);
    box-shadow: 0 0 0 3px rgba(28, 107, 181, 0.16);
}

.public-site input::placeholder,
.public-site textarea::placeholder {
    color: #7c8996;
}

.public-form-help {
    color: var(--public-muted);
    font-size: 0.84rem;
}

.public-alert,
.empty-state,
.error-state {
    padding: 16px 18px;
}

.public-alert {
    margin-bottom: 20px;
    border: 1px solid var(--public-border);
    border-radius: var(--public-radius-sm);
    background: var(--public-blue-50);
    color: var(--public-navy-900);
}

.public-alert-success {
    border-color: #b8ddc8;
    background: var(--public-success-soft);
    color: var(--public-success);
}

.public-alert-warning {
    border-color: #efd89a;
    background: var(--public-warning-soft);
    color: var(--public-warning);
}

.public-alert-error,
.error-state {
    border-color: #e9bcbc;
    background: var(--public-danger-soft);
    color: var(--public-danger);
}

.results-panel {
    overflow-x: auto;
}

.public-results {
    width: 100%;
    table-layout: fixed;
    border-collapse: separate;
    border-spacing: 0;
    font-size: 0.94rem;
}

.public-results th,
.public-results td {
    padding: 17px 20px;
    border-bottom: 1px solid var(--public-border);
    text-align: left;
    vertical-align: top;
    overflow-wrap: break-word;
}

table.public-results:not(.facility-employee-table) tbody td {
    vertical-align: middle;
}

.public-results th:first-child,
.public-results td:first-child {
    width: 26%;
}

.public-results th:nth-child(2),
.public-results td:nth-child(2) {
    width: 28%;
}

.public-results th:nth-child(3),
.public-results td:nth-child(3) {
    width: 31%;
}

.public-results th:last-child,
.public-results td:last-child {
    width: 15%;
    white-space: nowrap;
}

/* Profile data tables have more columns than Employee Search's four. */
.public-results.facility-employee-table,
.public-results.facility-inmate-table {
    min-width: 760px;
}

table.public-results.facility-employee-table th,
table.public-results.facility-employee-table td,
table.public-results.facility-inmate-table th,
table.public-results.facility-inmate-table td,
table.public-results.inmate-death-table th,
table.public-results.inmate-death-table td {
    width: auto;
    vertical-align: middle;
}

table.public-results.facility-employee-table tbody td,
table.public-results.facility-inmate-table tbody td {
    vertical-align: middle;
}

.facility-employee-name-column {
    width: 24%;
}

.facility-employee-title-column {
    width: 30%;
}

.facility-employee-sex-column {
    width: 13%;
}

.facility-employee-race-column {
    width: 18%;
}

.facility-employee-date-column {
    width: 15%;
}

.facility-inmate-name-column {
    width: 22%;
}

.facility-inmate-age-column {
    width: 8%;
}

.facility-inmate-tdcj-column {
    width: 15%;
}

.facility-inmate-sentence-column {
    width: 18%;
}

.facility-inmate-offense-column {
    width: 37%;
}

.public-results.facility-employee-table .facility-employee-title {
    overflow-wrap: normal;
    word-break: normal;
    white-space: normal;
}

.public-results.facility-employee-table .facility-employee-sex {
    min-width: 6ch;
    overflow-wrap: normal;
    word-break: normal;
    white-space: nowrap;
}

.public-results.facility-employee-table .facility-employee-date {
    white-space: nowrap;
}

.facility-inmate-name-value {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    overflow-wrap: normal;
    word-break: normal;
}

.facility-inmate-tdcj,
.facility-inmate-age,
.facility-inmate-sentence {
    overflow-wrap: normal;
    word-break: normal;
    white-space: nowrap;
}

.public-results.facility-inmate-table .facility-inmate-offense {
    line-height: 1.45;
    overflow-wrap: normal;
    word-break: normal;
    white-space: normal;
}

.public-results th {
    background: var(--public-blue-50);
    color: var(--public-navy-900);
    font-size: 0.73rem;
    font-weight: 800;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.public-results tbody tr {
    transition: background-color 140ms ease, box-shadow 140ms ease;
}

.public-results tbody tr:nth-child(even) {
    background: #f8fafc;
}

.public-results tbody tr:hover {
    background: #edf5fc;
    box-shadow: inset 3px 0 0 rgba(28, 107, 181, 0.38);
}

.public-results tr:last-child td {
    border-bottom: 0;
}

.employee-name {
    color: var(--public-navy-950);
    font-size: 1rem;
    font-weight: 800;
    line-height: 1.4;
}

.employee-profile-link {
    max-width: 100%;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    color: inherit !important;
    overflow-wrap: anywhere;
    text-decoration-color: rgba(28, 107, 181, 0.45);
}

.employee-profile-link:hover,
.employee-profile-link:focus-visible {
    color: var(--public-brand-blue) !important;
    text-decoration-color: currentColor;
}

.facility-profile-link {
    font-weight: 650;
    overflow-wrap: anywhere;
}

.offense-profile-link {
    font-weight: 700;
    overflow-wrap: normal;
    word-break: normal;
    text-decoration-color: rgba(28, 107, 181, 0.5);
}

.offense-profile-link:hover,
.offense-profile-link:focus-visible {
    color: var(--public-brand-blue);
    text-decoration-color: currentColor;
}

.offense-profile {
    width: 100%;
    min-width: 0;
}

.inmate-death-directory,
.inmate-death-profile {
    width: 100%;
    min-width: 0;
}

.inmate-death-profile {
    max-width: 960px;
    margin-inline: auto;
}

.public-data-current-through {
    margin-top: 10px;
    color: var(--public-muted);
    font-size: 0.86rem;
}

.inmate-death-results {
    min-width: 0;
}

.public-results.inmate-death-table {
    width: 100%;
    table-layout: fixed;
}

.inmate-death-name-column {
    width: 30%;
}

.inmate-death-age-column {
    width: 8%;
}

.inmate-death-date-column {
    width: 20%;
}

.inmate-death-unit-column {
    width: 24%;
}

.inmate-death-manner-column {
    width: 18%;
}

.inmate-death-table .inmate-death-date,
.inmate-death-table .inmate-death-age {
    overflow-wrap: normal;
    word-break: normal;
    white-space: nowrap;
}

.inmate-death-table .inmate-death-name,
.inmate-death-table .inmate-death-name .employee-profile-link,
.inmate-death-table .inmate-death-unit,
.inmate-death-table .inmate-death-unit .facility-profile-link {
    overflow-wrap: break-word;
    word-break: normal;
    white-space: normal;
}

/* Outrank the shared last-column nowrap rule for the death table only. */
table.public-results.inmate-death-table th:last-child,
table.public-results.inmate-death-table td.inmate-death-manner {
    width: auto;
    overflow-wrap: break-word;
    word-break: normal;
    white-space: normal;
}

.inmate-death-table td:first-child small {
    display: block;
    margin-top: 3px;
    color: var(--public-muted);
    font-size: 0.73rem;
}

.inmate-death-detail-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
    gap: 20px;
}

.inmate-death-detail-card {
    margin-bottom: 20px;
}

.inmate-death-detail-card h2 {
    margin-bottom: 18px;
    font-size: clamp(1.2rem, 2vw, 1.45rem);
}

.inmate-death-detail-card > :last-child {
    margin-bottom: 0;
}

.inmate-death-profile .offense-profile-metadata-item dt {
    letter-spacing: 0.02em;
    text-transform: none;
}

.inmate-death-facts {
    margin: 0;
}

.inmate-death-facts > div {
    display: grid;
    grid-template-columns: minmax(150px, 0.38fr) minmax(0, 0.62fr);
    gap: 18px;
    border-top: 1px solid var(--public-border);
    padding: 12px 0;
}

.inmate-death-facts > div:first-child {
    border-top: 0;
    padding-top: 0;
}

.inmate-death-facts dt {
    color: var(--public-muted);
    font-size: 0.78rem;
    font-weight: 800;
}

.inmate-death-facts dd {
    margin: 0;
    overflow-wrap: anywhere;
}

.inmate-death-offense-list {
    margin: 0;
    padding-left: 1.2rem;
}

.inmate-death-offense-list li {
    overflow-wrap: anywhere;
}

.inmate-death-offense-list li + li {
    margin-top: 4px;
}

.inmate-death-incident {
    margin: 0;
}

.inmate-death-incident dt {
    margin-bottom: 7px;
    color: var(--public-muted);
    font-size: 0.78rem;
    font-weight: 800;
}

.inmate-death-incident dd {
    margin: 0;
    line-height: 1.7;
    overflow-wrap: anywhere;
}

.inmate-death-source-action {
    margin-top: -2px;
}

.inmate-death-source-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    border-radius: var(--public-radius-sm);
    padding: 5px 7px;
    color: var(--public-muted);
    font-size: 0.8rem;
    font-weight: 700;
    line-height: 1.3;
    text-decoration-color: rgba(91, 107, 123, 0.5);
}

.inmate-death-source-link:hover {
    color: var(--public-brand-blue);
    text-decoration-color: currentColor;
}

.inmate-death-source-link:focus-visible {
    outline: 3px solid var(--public-brand-blue);
    outline-offset: 2px;
}

.home-upcoming-card h3 a {
    color: inherit;
}

@media (max-width: 900px) {
    .inmate-death-detail-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }
}

@media (max-width: 620px) {
    .inmate-death-facts > div {
        grid-template-columns: 1fr;
        gap: 4px;
    }
}

.offense-profile-header {
    margin-bottom: clamp(24px, 4vw, 34px);
}

.offense-profile-metadata {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 22px;
    margin: 18px 0 0;
}

.offense-profile-metadata-item {
    min-width: 0;
}

.offense-profile-metadata-item dt {
    color: var(--public-muted);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.offense-profile-metadata-item dd {
    margin: 2px 0 0;
    color: var(--public-ink);
    font-size: 0.9rem;
    overflow-wrap: normal;
    word-break: normal;
}

.inmate-highest-sentence-name {
    display: block;
    color: var(--public-navy-950);
    font-size: 0.98rem;
    font-weight: 800;
    line-height: 1.35;
    overflow-wrap: normal;
    word-break: normal;
}

.inmate-highest-sentence-entry .longest-serving-title,
.inmate-highest-sentence-entry .longest-serving-years {
    margin-top: 2px;
}

.employee-profile {
    width: 100%;
    min-width: 0;
    max-width: 960px;
    margin-inline: auto;
}

.facility-profile {
    width: 100%;
    min-width: 0;
}

.facility-profile-header {
    margin-bottom: clamp(24px, 4vw, 34px);
}

.facility-profile-heading-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
}

.facility-profile-heading-row > div {
    min-width: 0;
}

.public-lockdown-indicator {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
    margin-right: 0.42em;
    vertical-align: middle;
}

.public-lockdown-dot {
    width: 0.55rem;
    height: 0.55rem;
    border-radius: 50%;
}

.public-lockdown-dot.is-locked {
    background: #c62828;
}

.public-lockdown-dot.is-clear {
    background: #238636;
}

.public-lockdown-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    min-height: 32px;
    margin-top: 4px;
    padding: 6px 11px;
    border-radius: 999px;
    color: #fff;
    font-size: 0.76rem;
    font-weight: 850;
    letter-spacing: 0.04em;
    line-height: 1;
    text-transform: uppercase;
}

.public-lockdown-badge.is-locked {
    border: 1px solid #b42318;
    background: #b42318;
}

.public-lockdown-badge.is-normal {
    border: 1px solid #238636;
    background: #238636;
}

.facility-list-tabs {
    display: flex;
    align-items: flex-end;
    gap: 4px;
    margin-bottom: 16px;
    border-bottom: 1px solid var(--public-border);
}

#explorer-population {
    scroll-margin-top: 16px;
}

.facility-list-tab {
    position: relative;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid transparent;
    border-bottom: 0;
    border-radius: var(--public-radius-sm) var(--public-radius-sm) 0 0;
    padding: 10px 18px;
    color: var(--public-muted) !important;
    font-size: 0.9rem;
    font-weight: 800;
    text-decoration: none;
}

.public-tab-label {
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
}

.public-tab-beta-label {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: 0.45em;
    border: 1px solid #c4b5fd;
    border-radius: 999px;
    padding: 0.12em 0.4em;
    background: #ede9fe;
    color: #5b21b6;
    font-size: 0.62em;
    font-weight: 800;
    letter-spacing: 0.06em;
    line-height: 1;
    text-transform: uppercase;
    vertical-align: middle;
}

.facility-list-tab:hover {
    background: var(--public-blue-50);
    color: var(--public-brand-blue) !important;
}

.facility-list-tab:focus-visible {
    outline: 3px solid rgba(28, 107, 181, 0.32);
    outline-offset: 2px;
}

.facility-list-tab.is-active {
    margin-bottom: -1px;
    border-color: var(--public-border);
    border-bottom-color: var(--public-surface);
    background: var(--public-surface);
    color: var(--public-navy-950) !important;
}

.employee-profile-back {
    margin-bottom: 18px;
    font-size: 0.9rem;
    font-weight: 700;
}

.employee-profile-back a {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
}

.employee-profile-header {
    max-width: 100%;
}

.employee-profile-header h1 {
    overflow-wrap: anywhere;
}

.employee-profile-header p {
    overflow-wrap: anywhere;
}

.employee-profile-card {
    min-width: 0;
    display: grid;
    align-items: center;
    grid-template-columns: minmax(170px, 200px) minmax(0, 1fr);
    gap: clamp(24px, 4vw, 40px);
}

.employee-profile-photo-wrap {
    width: 100%;
    min-width: 0;
}

.employee-profile-photo,
.employee-profile-photo-placeholder {
    width: 100%;
    max-width: 200px;
    aspect-ratio: 1;
    border: 1px solid var(--public-border);
    border-radius: var(--public-radius-md);
    background: var(--public-blue-100);
    box-shadow: var(--public-shadow-sm);
}

.employee-profile-photo {
    display: block;
    object-fit: cover;
}

.employee-profile-photo-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--public-brand-blue);
}

.employee-profile-photo-placeholder-icon {
    width: 49%;
    height: 49%;
    display: block;
    fill: currentColor;
}

.employee-profile-details {
    min-width: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: clamp(24px, 4vw, 38px);
    margin: 0;
}

.employee-profile-detail {
    min-width: 0;
    border-bottom: 1px solid var(--public-border);
    padding: 0 0 16px;
}

.employee-profile-detail:nth-child(n + 3) {
    border-bottom: 0;
    padding-top: 16px;
    padding-bottom: 0;
}

.employee-profile-detail-label {
    margin-bottom: 3px;
    color: var(--public-muted);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.065em;
    line-height: 1.3;
    text-transform: uppercase;
}

.employee-profile-detail dd {
    margin: 0;
    color: var(--public-navy-950);
    font-weight: 700;
    overflow-wrap: anywhere;
}

.employee-profile-visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    white-space: nowrap;
}

.employee-profile-disclaimer {
    margin-top: clamp(28px, 5vw, 42px);
    border-top: 1px solid var(--public-border);
    padding-top: 18px;
    color: var(--public-muted);
    font-size: 0.8rem;
    line-height: 1.65;
}

.employee-profile-disclaimer p {
    margin: 0 0 10px;
}

.employee-profile-disclaimer p:last-child {
    margin-bottom: 0;
}

.employee-list-footer {
    margin-top: 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.employee-result-count {
    color: var(--public-muted);
    font-size: 0.88rem;
}

.employee-pagination {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}

.employee-pagination-link,
.employee-pagination-disabled,
.employee-pagination-current,
.employee-pagination-ellipsis {
    min-width: 36px;
    min-height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--public-radius-sm);
    padding: 5px 10px;
    font-size: 0.84rem;
    font-weight: 750;
    text-decoration: none;
}

.employee-pagination-link {
    border: 1px solid var(--public-border);
    background: var(--public-surface);
    color: var(--public-navy-900) !important;
}

.employee-pagination-link:hover {
    border-color: var(--public-blue-600);
    background: var(--public-blue-50);
}

.employee-pagination-current {
    background: var(--public-brand-blue);
    color: #ffffff;
}

.employee-pagination-disabled,
.employee-pagination-ellipsis {
    color: var(--public-muted);
}

.empty-state {
    color: var(--public-muted);
}

.public-footer {
    flex: 0 0 auto;
    border-top: 4px solid var(--public-brand-blue);
    background: #707c87;
    color: rgba(255, 255, 255, 0.9);
}

.public-footer-inner {
    display: grid;
    align-items: center;
    grid-template-columns: minmax(120px, 0.7fr) minmax(0, 1.3fr);
    gap: clamp(28px, 5vw, 60px);
    padding-block: 24px;
}

.public-footer-brand {
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff !important;
    text-decoration: none;
}

.public-footer-character {
    display: block;
    width: clamp(96px, 11vw, 132px);
    height: auto;
    max-width: 100%;
    object-fit: contain;
}

.public-footer-navigation {
    min-width: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(28px, 5vw, 64px);
}

.public-footer-navigation-group {
    min-width: 0;
}

.public-footer-navigation-heading {
    margin: 0 0 7px;
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.09em;
    line-height: 1.3;
    text-transform: uppercase;
}

.public-footer-navigation-links {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 2px;
}

.public-footer-navigation-link {
    position: relative;
    max-width: 100%;
    padding: 5px 0;
    color: #ffffff !important;
    font-size: 0.84rem;
    font-weight: 650;
    text-align: left;
    text-decoration: none;
    overflow-wrap: anywhere;
    opacity: 0.9;
    transition: opacity 150ms ease;
}

.public-footer-navigation-link.is-active::after {
    bottom: 0;
}

.public-footer-legal {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-block: 16px;
    color: rgba(255, 255, 255, 0.84);
    font-size: 0.75rem;
}

.public-footer-legal > span:last-child {
    text-align: right;
}

.public-footer-legal-link {
    color: #ffffff !important;
    text-decoration: none;
    opacity: 0.9;
    transition: opacity 150ms ease;
}

.public-site :focus-visible {
    outline: 3px solid #8c90ff;
    outline-offset: 3px;
}

@media (min-width: 769px) and (max-width: 960px) {
    .public-results {
        font-size: 0.89rem;
    }

    .public-results th,
    .public-results td {
        padding: 14px 12px;
    }

    .public-results th:first-child,
    .public-results td:first-child {
        width: 29%;
    }

    .public-results th:nth-child(2),
    .public-results td:nth-child(2) {
        width: 27%;
    }

    .public-results th:nth-child(3),
    .public-results td:nth-child(3) {
        width: 29%;
    }

    .public-results th:last-child,
    .public-results td:last-child {
        width: 15%;
    }
}

@media (max-width: 860px) {
    .explorer-brand-card .search-intro-layout {
        flex-direction: column;
        gap: 20px;
    }

    .explorer-brand-card .search-intro-copy {
        flex-basis: auto;
    }

    .explorer-brand-card .explorer-freshness-badge {
        width: 100%;
        max-width: none;
        align-self: stretch;
        margin-left: 0;
        box-sizing: border-box;
    }

    .explorer-brand-card .explorer-freshness-details,
    .explorer-brand-card .explorer-sponsorship,
    .explorer-brand-card .explorer-sponsorship-link {
        width: 100%;
        max-width: none;
        box-sizing: border-box;
    }

    .explorer-brand-card .explorer-freshness-item {
        grid-template-columns: minmax(0, 1fr) auto;
    }

    .public-search-form {
        gap: 8px;
        padding: 10px;
    }

    .public-search-actions {
        gap: 8px;
    }

    .public-search-actions .public-search-button,
    .public-search-actions .public-search-reset {
        min-width: 84px;
        padding-inline: 14px;
    }

    .public-header-inner {
        min-height: 82px;
        gap: 22px;
    }

    .public-brand::before {
        filter: blur(32px);
    }

    .public-brand-logo {
        height: 68px;
        filter:
            drop-shadow(0 0 1px rgba(255, 255, 255, 0.2))
            drop-shadow(0 3px 6px rgba(0, 0, 0, 0.24));
    }

    .public-header-controls,
    .public-navigation {
        min-width: 0;
    }

    .public-card-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .home-upcoming-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .employee-comparison-table th,
    .employee-comparison-table td {
        padding-inline: 5px;
    }

    .employee-comparison-table thead th {
        font-size: 0.68rem;
    }

    .explorer-browse-tabs {
        width: min(100%, 680px);
        grid-template-columns: repeat(6, minmax(0, 1fr));
        border-bottom: 0;
    }

    .explorer-browse-tab {
        min-height: 40px;
        grid-column: span 2;
        border-bottom-color: var(--public-border);
        white-space: normal;
    }

    .explorer-browse-tab:nth-child(4),
    .explorer-browse-tab:nth-child(5) {
        grid-column: span 3;
    }

}

@media (max-width: 768px) {
    .public-header {
        overflow: visible;
    }

    .public-header-controls {
        position: static;
    }

    .public-navigation-toggle {
        display: inline-flex;
    }

    .public-navigation-toggle[hidden] {
        display: none;
    }

    .public-navigation {
        width: 100%;
        align-items: flex-start;
        justify-content: flex-start;
        flex-direction: column;
        gap: 0;
        padding: 10px 0;
    }

    .public-site.is-navigation-ready .public-navigation {
        position: absolute;
        z-index: 30;
        top: 100%;
        right: 0;
        width: min(280px, calc(100vw - 28px));
        padding: 10px;
        border: 1px solid rgba(255, 255, 255, 0.16);
        border-radius: 0 0 var(--public-radius-md) var(--public-radius-md);
        background: #707c87;
        box-shadow: 0 12px 24px rgba(9, 36, 63, 0.2);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-8px);
        pointer-events: none;
        transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
    }

    .public-site.is-navigation-ready .public-header-controls.is-open .public-navigation {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        pointer-events: auto;
    }

    .public-navigation-link {
        max-width: 100%;
        padding: 10px 4px;
        font-size: 0.9rem;
        white-space: normal;
    }

    .public-navigation-link.is-active::after {
        right: 4px;
        bottom: 5px;
        left: 4px;
    }

    .home-feature-grid {
        grid-template-columns: 1fr;
    }

    .home-feature-card {
        min-height: 330px;
    }

    .tip-contact-grid {
        grid-template-columns: 1fr;
    }

    .advertise-benefit-grid,
    .advertise-contact-card {
        grid-template-columns: 1fr;
    }

    .advertise-inquiry-details {
        border-top: 1px solid var(--public-border);
        border-left: 0;
        padding-top: 24px;
        padding-left: 0;
    }

    .tip-anonymous-section {
        grid-column: auto;
    }

    .responsive-card-panel {
        overflow: visible;
        border: 0;
        border-radius: 0;
        background: transparent;
        box-shadow: none;
    }

    .responsive-card-table,
    .responsive-card-table tbody {
        width: 100%;
        display: block;
    }

    .public-results.facility-employee-table,
    .public-results.facility-inmate-table,
    .public-results.inmate-death-table {
        min-width: 0;
    }

    .public-results.facility-employee-table colgroup,
    .public-results.facility-inmate-table colgroup,
    .public-results.inmate-death-table colgroup {
        display: none;
    }

    .public-results.facility-employee-table.responsive-card-table tbody td {
        width: auto;
        overflow-wrap: break-word;
        white-space: normal;
    }

    .public-results.facility-employee-table.responsive-card-table tbody td.facility-employee-sex {
        min-width: 6ch;
        overflow-wrap: normal;
        word-break: normal;
        white-space: nowrap;
    }

    .public-results.facility-inmate-table.responsive-card-table tbody td.facility-inmate-age,
    .public-results.facility-inmate-table.responsive-card-table tbody td.facility-inmate-tdcj,
    .public-results.facility-inmate-table.responsive-card-table tbody td.facility-inmate-sentence {
        overflow-wrap: normal;
        word-break: normal;
        white-space: nowrap;
    }

    .public-results.facility-inmate-table.responsive-card-table tbody td.facility-inmate-offense {
        overflow-wrap: normal;
        word-break: normal;
        white-space: normal;
    }

    .responsive-card-table thead {
        position: absolute;
        width: 1px;
        height: 1px;
        overflow: hidden;
        clip: rect(0 0 0 0);
        clip-path: inset(50%);
        white-space: nowrap;
    }

    .responsive-card-table tbody {
        display: grid;
        gap: 16px;
    }

    .public-results.responsive-card-table tbody tr {
        width: 100%;
        min-width: 0;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px 22px;
        border: 1px solid var(--public-border);
        border-radius: var(--public-radius-md);
        padding: 20px;
        background: var(--public-surface);
        box-shadow: var(--public-shadow-sm);
    }

    .public-results:not(.facility-employee-table).responsive-card-table tbody tr {
        align-items: center;
    }

    .public-results.facility-employee-table.responsive-card-table tbody tr {
        align-items: center;
    }

    .public-results.facility-inmate-table.responsive-card-table tbody tr {
        align-items: center;
    }

    .public-results.responsive-card-table tbody tr:hover {
        background: var(--public-surface);
        box-shadow: var(--public-shadow-md);
    }

    .public-results.responsive-card-table tbody td {
        width: auto;
        min-width: 0;
        border: 0;
        padding: 0;
        white-space: normal;
    }

    .responsive-card-table tbody td::before {
        display: block;
        margin-bottom: 3px;
        color: var(--public-muted);
        content: attr(data-label);
        font-size: 0.69rem;
        font-weight: 800;
        letter-spacing: 0.065em;
        line-height: 1.3;
        text-transform: uppercase;
    }

    .responsive-card-table .responsive-card-primary {
        grid-column: 1 / -1;
        margin-bottom: 2px;
        border-bottom: 1px solid var(--public-border);
        padding-bottom: 15px;
        font-size: 1.12rem;
    }
}

@media (max-width: 640px) {
    .public-container {
        width: min(100% - 28px, var(--public-container));
    }

    .facility-list-tabs {
        overflow-x: auto;
        overflow-y: hidden;
        scrollbar-width: thin;
    }

    .facility-list-tab {
        flex: 0 0 auto;
        white-space: nowrap;
    }

    .public-header-inner {
        min-height: 70px;
        gap: 16px;
    }

    .public-brand::before {
        top: -15%;
        right: -15%;
        bottom: -15%;
        left: -15%;
        opacity: 0.78;
        filter: blur(30px);
    }

    .public-brand-logo {
        height: 56px;
        filter:
            drop-shadow(0 0 1px rgba(255, 255, 255, 0.17))
            drop-shadow(0 2px 5px rgba(0, 0, 0, 0.2));
    }

    .public-main {
        padding: 32px 0 48px;
    }

    .search-intro.explorer-brand-card {
        padding: 22px;
    }

    .explorer-brand-card .explorer-wordmark {
        margin-bottom: 11px;
        font-size: 2.2rem;
    }

    .search-intro.explorer-brand-card > .search-intro-layout > .search-intro-copy > p {
        font-size: 0.94rem;
        line-height: 1.5;
    }

    .explorer-brand-card .search-intro-information p {
        font-size: 0.78rem;
    }

    .explorer-brand-card .explorer-freshness-badge {
        padding: 11px 13px;
    }

    .explorer-brand-card .explorer-freshness-item {
        gap: 10px;
        font-size: 0.75rem;
    }

    .explorer-brand-card .explorer-sponsorship {
        margin-top: 11px;
        padding-top: 11px;
    }

    .explorer-brand-card .explorer-sponsorship-link {
        padding: 9px 10px;
    }

    .public-search-form {
        align-items: stretch;
        flex-direction: column;
        padding: 10px;
    }

    .public-search-actions {
        width: 100%;
        flex-direction: column;
        gap: 8px;
    }

    .public-search-actions .public-search-button,
    .public-search-actions .public-search-reset {
        width: 100%;
        min-width: 0;
    }

    .explorer-employee-search {
        padding: 14px;
    }

    .explorer-employee-search h2 {
        margin-bottom: 10px;
        font-size: 1.05rem;
    }

    .public-table-filter-fields {
        grid-template-columns: repeat(auto-fit, minmax(min(120px, 100%), 1fr));
    }

    .public-table-toolbar .public-search-input,
    .public-table-toolbar input:not([type="hidden"]),
    .public-table-toolbar select,
    .public-table-toolbar .public-button,
    .public-table-toolbar .public-search-button {
        min-height: 44px;
        height: 44px;
    }

    .public-table-toolbar-meta {
        align-items: flex-start;
        flex-direction: column;
    }

    .public-table-filter-actions {
        align-self: start;
    }

    .tdcj-employee-sponsor-banner {
        padding: 18px;
    }

    .tdcj-employee-sponsor-banner__layout {
        align-items: stretch;
        flex-direction: column;
        gap: 16px;
    }

    .tdcj-employee-sponsor-banner__content {
        flex: 0 1 auto;
    }

    .tdcj-employee-sponsor-banner .tdcj-employee-sponsor-banner__headline {
        font-size: 1.25rem;
    }

    .tdcj-employee-sponsor-banner .tdcj-employee-sponsor-banner__description {
        font-size: 0.88rem;
    }

    .tdcj-employee-sponsor-banner .tdcj-employee-sponsor-banner__action {
        width: 100%;
        white-space: normal;
    }

    .home-hero {
        margin-bottom: 42px;
        text-align: left;
    }

    .home-hero h1 {
        font-size: clamp(2.25rem, 12vw, 3.3rem);
    }

    .home-eyebrow {
        font-size: 0.68rem;
    }

    .home-feature-card {
        min-height: 0;
    }

    .home-feature-action {
        width: 100%;
    }

    .home-upcoming-grid {
        grid-template-columns: 1fr;
    }

    .home-upcoming-card {
        min-height: 0;
    }

    .tip-contact-action {
        width: 100%;
    }

    .advertise-contact-action {
        width: 100%;
    }

    .advertise-inquiry-list {
        grid-template-columns: 1fr;
    }

    .public-form-grid,
    .public-card-grid {
        grid-template-columns: 1fr;
    }

    .employee-demographics {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        grid-template-areas:
            "gender"
            "race"
            "longest";
    }

    .public-segmented-control-option {
        min-height: 38px;
        padding: 6px 9px;
    }

    .explorer-browse {
        margin-top: 22px;
    }

    .explorer-browse-tabs {
        width: 100%;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        margin-bottom: 10px;
    }

    .explorer-browse-tab,
    .explorer-browse-tab:nth-child(4) {
        min-height: 46px;
        grid-column: auto;
        padding: 7px 8px;
        line-height: 1.25;
    }

    .explorer-browse-tab:nth-child(5) {
        grid-column: 1 / -1;
    }

    .explorer-browse-panel h3 {
        margin-bottom: 7px;
        font-size: 0.8rem;
    }

    .explorer-browse-grid {
        display: block;
        overflow: hidden;
        border: 1px solid var(--public-border);
        border-radius: var(--public-radius-sm);
        background: var(--public-surface);
    }

    .explorer-browse-grid li + li {
        border-top: 1px solid var(--public-border);
    }

    .explorer-browse-entity {
        position: relative;
        min-height: 46px;
        height: auto;
        padding: 8px 34px 8px 11px;
        border: 0;
        border-radius: 0;
        background: transparent;
        font-size: 0.84rem;
        line-height: 1.3;
        word-break: normal;
    }

    .explorer-browse-entity::after {
        position: absolute;
        top: 50%;
        right: 14px;
        width: 7px;
        height: 7px;
        border-top: 1.5px solid currentColor;
        border-right: 1.5px solid currentColor;
        content: "";
        opacity: 0.58;
        transform: translateY(-50%) rotate(45deg);
    }

    .explorer-browse-entity:hover {
        border-color: transparent;
        background: var(--public-blue-50);
    }

    .employee-demographic-card {
        height: auto;
    }

    .employee-comparison-disclosure summary {
        min-height: 36px;
        box-sizing: border-box;
        padding-block: 8px;
    }

    .employee-comparison-table,
    .employee-comparison-table tbody,
    .employee-comparison-table tr,
    .employee-comparison-table th,
    .employee-comparison-table td {
        display: block;
        width: 100%;
    }

    .employee-comparison-table colgroup {
        display: none;
    }

    .employee-comparison-table thead {
        position: absolute;
        width: 1px;
        height: 1px;
        padding: 0;
        margin: -1px;
        overflow: hidden;
        clip: rect(0, 0, 0, 0);
        white-space: nowrap;
        border: 0;
    }

    .employee-comparison-table tbody tr {
        padding-block: 10px;
    }

    .employee-comparison-table tbody tr + tr {
        border-top: 1px solid var(--public-blue-50);
    }

    .employee-comparison-table tbody th,
    .employee-comparison-table tbody td {
        padding: 4px 0;
        text-align: left;
    }

    .employee-comparison-table tbody th {
        padding-bottom: 7px;
    }

    .employee-comparison-table .employee-comparison-selected {
        margin-top: 5px;
        padding-top: 9px;
        border-top: 1px solid var(--public-border);
        border-left: 0;
    }

    .employee-comparison-mobile-label {
        display: block;
        margin-bottom: 2px;
        color: var(--public-muted);
        font-size: 0.68rem;
        font-weight: 700;
        line-height: 1.3;
        overflow-wrap: anywhere;
    }

    .employee-comparison-value {
        justify-content: flex-start;
    }

    .longest-serving-gender-grid {
        grid-template-columns: 1fr;
    }

    .public-results.responsive-card-table tbody tr {
        grid-template-columns: 1fr;
    }

    .employee-list-footer,
    .public-footer-legal {
        align-items: flex-start;
        flex-direction: column;
    }

    .employee-pagination {
        justify-content: flex-start;
    }

    .public-footer-inner {
        grid-template-columns: 1fr;
        gap: 22px;
        padding-block: 30px;
    }

    .public-footer-brand {
        width: 100%;
        min-width: 0;
    }

    .public-footer-character {
        width: 100px;
    }

    .public-footer-navigation {
        width: 100%;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 20px;
    }

    .public-footer-navigation-group,
    .public-footer-navigation-heading,
    .public-footer-navigation-links,
    .public-footer-navigation-link {
        align-items: center;
        text-align: center;
    }

    .public-footer-navigation-link {
        min-height: 40px;
        display: inline-flex;
        justify-content: center;
        padding: 8px 4px;
    }

    .public-footer-legal {
        align-items: center;
        text-align: center;
        padding-block: 18px 24px;
    }

    .public-footer-legal > span:last-child {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .public-table-filter-fields {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .public-table-filter-field--wide,
    .public-table-filter-field--extra-wide,
    .public-table-filter-field--date,
    .public-table-filter-field--short,
    .public-table-filter-field--standard,
    .public-table-filter-field.is-between,
    .public-table-filter-actions {
        grid-column: span 2;
    }
}

@media (max-width: 380px) {
    .public-table-filter-fields {
        grid-template-columns: minmax(0, 1fr);
    }

    .public-table-filter-field--wide,
    .public-table-filter-field--extra-wide,
    .public-table-filter-field--date,
    .public-table-filter-field--short,
    .public-table-filter-field--standard,
    .public-table-filter-field.is-between,
    .public-table-filter-actions {
        grid-column: span 1;
    }

    .public-footer-navigation {
        grid-template-columns: 1fr;
        gap: 18px;
    }
}

@media (max-width: 768px) {
    .employee-profile-card {
        grid-template-columns: minmax(0, 1fr);
        gap: 26px;
    }

    .employee-profile-photo-wrap {
        display: flex;
        justify-content: center;
    }
}

@media (max-width: 520px) {
    .employee-profile-details {
        grid-template-columns: minmax(0, 1fr);
    }

    .employee-profile-detail,
    .employee-profile-detail:nth-child(n + 3) {
        border-bottom: 1px solid var(--public-border);
        padding: 14px 0;
    }

    .employee-profile-detail:first-child {
        padding-top: 0;
    }

    .employee-profile-detail:last-child {
        border-bottom: 0;
        padding-bottom: 0;
    }

    .employee-profile-photo,
    .employee-profile-photo-placeholder {
        width: min(100%, 180px);
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }
}
