/* ========================================
   CSS VARIABLES - Warm Earthy Court Style
   Inspired by mncourts.gov
   ======================================== */
:root {
    --font-sans: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-headings: 'Quattrocento', Georgia, 'Times New Roman', serif;
    --font-normal: 400;
    --font-semibold: 600;
    --font-bold: 700;

    --color-off-black: #342f2c;
    --color-off-white: #faf9f6;
    --color-white: #ffffff;
    --color-text: #342f2c;
    --color-text-light: #5a5653;
    --color-text-muted: #8a8683;
    --color-headings: #4c4c4d;

    --color-brown-700: #82580c;
    --color-brown-600: #8f610d;
    --color-brown-500: #9c6a0e;
    --color-brown-400: #b27910;
    --color-brown-300: #c98912;
    --color-brown-200: #e19914;
    --color-brown-100: #eba523;
    --color-brown-50: #eca92c;

    --color-orange: #d36427;

    --color-grey-500: #b3b1af;
    --color-grey-400: #bebdbb;
    --color-grey-300: #cbc9c8;
    --color-grey-200: #d7d6d5;
    --color-grey-100: #e4e3e2;
    --color-grey-50: #e9e8e7;
    --color-dark-grey-500: #4c4c4d;
    --color-dark-grey-400: #59595a;
    --color-dark-grey-300: #656567;

    --gradient-header: linear-gradient(180deg, var(--color-off-black) 0%, #1d1917 100%);
    --gradient-orange: linear-gradient(90deg, #d88828 0%, #c46228 100%);

    --link-color: #9c6a0e;
    --link-hover: #82580c;

    --shadow-sm: 0 1px 3px rgba(52, 47, 44, 0.06);
    --shadow: 0 2px 8px rgba(52, 47, 44, 0.1);
    --shadow-hover: 0 4px 16px rgba(52, 47, 44, 0.14);
    --shadow-header: 0 4px 2px -2px rgba(52, 47, 44, 0.25);

    --radius: 4px;
    --radius-lg: 8px;

    --container: 1200px;
    --sidebar-width: 260px;
    --transition: 0.2s ease;
}

/* ========================================
   RESET & BASE
   ======================================== */
* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.75;
    color: var(--color-text);
    background-color: var(--color-off-white);
}

a {
    color: var(--link-color);
    text-decoration: underline;
    transition: color var(--transition);
}
a:hover {
    color: var(--link-hover);
    text-decoration: none;
}

img { max-width: 100%; height: auto; }

.content-section img {
    display: block;
    max-width: 75%;
    margin: 24px auto;
    height: auto;
    border-radius: var(--radius);
}

/* ========================================
   LAYOUT
   ======================================== */
.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

/* ========================================
   HEADER - Two-tier warm dark style
   ======================================== */
.header {
    background: var(--gradient-header);
    position: relative;
    z-index: 100;
    box-shadow: var(--shadow-header);
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0;
}

.logo {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 14px;
}
.logo:hover { text-decoration: none; opacity: 0.9; }

.logo img {
    height: 42px;
    width: auto;
    filter: brightness(0) invert(1);
}

/* Header search (optional, structural placeholder) */
.header-search {
    display: flex;
    align-items: center;
}

.header-search input {
    padding: 8px 14px;
    font-size: 14px;
    font-family: var(--font-sans);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: var(--radius) 0 0 var(--radius);
    background: rgba(255,255,255,0.1);
    color: var(--color-off-white);
    outline: none;
    width: 200px;
}
.header-search input::placeholder { color: rgba(255,255,255,0.5); }
.header-search input:focus { border-color: var(--color-brown-300); background: rgba(255,255,255,0.15); }

.header-search button {
    padding: 8px 14px;
    font-size: 14px;
    font-family: var(--font-sans);
    background: var(--color-brown-500);
    color: var(--color-white);
    border: 1px solid var(--color-brown-500);
    border-radius: 0 var(--radius) var(--radius) 0;
    cursor: pointer;
    font-weight: var(--font-semibold);
    transition: background var(--transition);
}
.header-search button:hover { background: var(--color-brown-600); }

/* ========================================
   NAVIGATION
   ======================================== */
.nav-bar {
    background-color: rgba(255, 255, 255, 0.06);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.nav {
    display: flex;
    gap: 0;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav > li { position: relative; }

.nav > li > a {
    display: block;
    padding: 14px 24px;
    color: var(--color-off-white);
    font-weight: var(--font-semibold);
    font-size: 15px;
    text-decoration: none;
    transition: all var(--transition);
    position: relative;
}

.nav > li > a:hover {
    background-color: rgba(255, 255, 255, 0.08);
    text-decoration: none;
    color: var(--color-white);
}

.nav > li > a.active {
    color: var(--color-white);
}
.nav > li > a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background-color: var(--color-brown-500);
}

/* Dropdown caret */
.nav > li > a .caret {
    display: inline-block;
    width: 0; height: 0;
    margin-left: 6px;
    vertical-align: middle;
    border-top: 4px solid rgba(255, 255, 255, 0.5);
    border-right: 4px solid transparent;
    border-left: 4px solid transparent;
}

/* Dropdown Menu */
.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%; left: 0;
    z-index: 200;
    min-width: 250px;
    background-color: var(--color-white);
    border: 1px solid var(--color-grey-200);
    border-top: 3px solid var(--color-brown-500);
    box-shadow: var(--shadow-hover);
    list-style: none;
    padding: 4px 0;
}
.nav > li:hover > .dropdown-menu { display: block; }

.dropdown-menu li a {
    display: block;
    padding: 10px 22px;
    color: var(--color-off-black);
    font-size: 14px;
    text-decoration: none;
    font-weight: var(--font-normal);
    transition: background-color 0.15s;
}
.dropdown-menu li a:hover {
    background-color: var(--color-grey-50);
    color: var(--color-brown-600);
    text-decoration: none;
}

/* Mobile nav toggle */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 12px 14px;
    color: var(--color-off-white);
}
.nav-toggle span {
    display: block;
    width: 24px; height: 2px;
    background-color: var(--color-off-white);
    margin: 5px 0;
    transition: 0.3s;
    border-radius: 1px;
}

/* ========================================
   BREADCRUMBS - With brown active marker
   ======================================== */
.breadcrumbs {
    padding: 14px 0;
    font-size: 14px;
    color: var(--color-text-light);
    background-color: var(--color-white);
    border-bottom: 1px solid var(--color-grey-100);
}
.breadcrumbs a {
    color: var(--color-off-black);
    font-size: 14px;
    text-decoration: none;
}
.breadcrumbs a:hover { color: var(--color-brown-500); text-decoration: underline; }

.breadcrumbs span {
    margin: 0 10px;
    color: var(--color-grey-500);
}

.breadcrumbs .current {
    color: var(--color-brown-500);
    font-weight: var(--font-semibold);
}

/* ========================================
   PAGE HEADING AREA - Top section with CTA
   ======================================== */
.page-heading {
    background-color: var(--color-white);
    border-bottom: 1px solid var(--color-grey-100);
    padding: 32px 0;
}

.page-heading h1 {
    font-family: var(--font-headings);
    font-size: 2em;
    font-weight: var(--font-bold);
    color: var(--color-off-black);
    margin: 0 0 8px;
    line-height: 1.3;
}

.page-heading p {
    color: var(--color-text-light);
    font-size: 1.05em;
    margin: 0;
    max-width: 720px;
}

/* ========================================
   MAIN CONTENT AREA - With optional sidebar
   ======================================== */
.main {
    padding: 32px 0 50px;
    background-color: var(--color-off-white);
}

.page-layout {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

/* Sidebar */
.sidebar {
    width: var(--sidebar-width);
    flex-shrink: 0;
    position: sticky;
    top: 24px;
}

.sidebar-nav {
    background: var(--color-white);
    border: 1px solid var(--color-grey-100);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.sidebar-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.sidebar-nav li a {
    display: block;
    padding: 12px 20px;
    font-size: 14px;
    color: var(--color-off-black);
    text-decoration: none;
    border-left: 3px solid transparent;
    border-bottom: 1px solid var(--color-grey-50);
    transition: all var(--transition);
}
.sidebar-nav li:last-child a { border-bottom: none; }

.sidebar-nav li a:hover {
    background-color: var(--color-off-white);
    color: var(--color-brown-600);
    text-decoration: none;
}

.sidebar-nav li a.active,
.sidebar-nav li.is-open a {
    border-left-color: var(--color-brown-500);
    color: var(--color-brown-600);
    font-weight: var(--font-semibold);
    background-color: var(--color-off-white);
}

/* Main content column */
.page-content {
    flex: 1;
    min-width: 0;
}

/* ========================================
   CONTENT SECTIONS
   ======================================== */
.content-section {
    background-color: var(--color-white);
    border: 1px solid var(--color-grey-100);
    border-radius: var(--radius-lg);
    padding: 32px 36px;
    margin-bottom: 24px;
    box-shadow: var(--shadow-sm);
}

.content-section h1 {
    font-family: var(--font-headings);
    font-size: 2em;
    font-weight: var(--font-bold);
    color: var(--color-off-black);
    margin-bottom: 20px;
    line-height: 1.3;
    padding-bottom: 16px;
    border-bottom: 3px solid var(--color-brown-500);
}

.content-section h2 {
    font-family: var(--font-headings);
    font-size: 1.5em;
    font-weight: var(--font-bold);
    color: var(--color-headings);
    margin: 32px 0 14px;
    padding-top: 24px;
    border-top: 1px solid var(--color-grey-100);
}
.content-section h2:first-child {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}

.content-section h3 {
    font-family: var(--font-headings);
    font-size: 1.2em;
    font-weight: var(--font-bold);
    color: var(--color-headings);
    margin: 20px 0 10px;
}

.content-section p {
    margin-bottom: 16px;
    color: var(--color-text);
    line-height: 1.75;
}
.content-section p:last-child { margin-bottom: 0; }

.content-section ul,
.content-section ol {
    margin: 12px 0 16px 28px;
    color: var(--color-text);
}
.content-section li {
    margin-bottom: 8px;
    line-height: 1.65;
}

/* ========================================
   ACCORDION - Expandable sections
   ======================================== */
.accordion {
    border: 1px solid var(--color-grey-100);
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin: 20px 0;
}

.accordion-item {
    border-bottom: 1px solid var(--color-grey-100);
}
.accordion-item:last-child { border-bottom: none; }

.accordion-toggle {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
    font-family: var(--font-sans);
    font-size: 15px;
    font-weight: var(--font-semibold);
    color: var(--color-white);
    background-color: var(--color-brown-500);
    border: none;
    cursor: pointer;
    text-align: left;
    transition: background var(--transition);
}
.accordion-toggle:hover { background-color: var(--color-brown-600); }

.accordion-toggle::after {
    content: '+';
    font-size: 20px;
    font-weight: var(--font-bold);
    transition: transform var(--transition);
}
.accordion-toggle.open { background-color: var(--color-brown-600); }
.accordion-toggle.open::after { content: '−'; }

.accordion-body {
    display: none;
    padding: 20px 24px;
    background: var(--color-white);
    color: var(--color-text);
    line-height: 1.7;
}
.accordion-body.open { display: block; }

/* ========================================
   STATS BOX
   ======================================== */
.stats-box {
    background: var(--color-white);
    border: 1px solid var(--color-grey-100);
    border-radius: var(--radius-lg);
    padding: 28px 32px;
    margin: 24px 0;
    box-shadow: var(--shadow-sm);
}

.stats-box h3 {
    font-family: var(--font-headings);
    font-size: 1.2em;
    font-weight: var(--font-bold);
    margin-bottom: 18px;
    color: var(--color-headings);
    border-bottom: 2px solid var(--color-brown-500);
    padding-bottom: 12px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 16px;
}

.stat-item {
    text-align: center;
    padding: 20px 16px;
    background-color: var(--color-off-white);
    border: 1px solid var(--color-grey-100);
    border-radius: var(--radius);
    transition: all var(--transition);
}
.stat-item:hover {
    box-shadow: var(--shadow);
    border-color: var(--color-brown-300);
}

.stat-number {
    font-family: var(--font-headings);
    font-size: 2em;
    font-weight: var(--font-bold);
    color: var(--color-brown-600);
    display: block;
    line-height: 1.2;
}

.stat-label {
    font-size: 12px;
    color: var(--color-text-light);
    margin-top: 6px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    font-weight: var(--font-semibold);
}

/* ========================================
   INFO TABLE
   ======================================== */
.info-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    border: 1px solid var(--color-grey-100);
    border-radius: var(--radius);
    overflow: hidden;
}
.info-table th, .info-table td {
    padding: 13px 18px;
    text-align: left;
    border-bottom: 1px solid var(--color-grey-100);
}
.info-table th {
    background-color: var(--color-off-white);
    font-weight: var(--font-semibold);
    color: var(--color-headings);
    width: 35%;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}
.info-table td { color: var(--color-text); }
.info-table tr:last-child th,
.info-table tr:last-child td { border-bottom: none; }
.info-table tr:nth-child(even) td { background-color: var(--color-off-white); }

/* ========================================
   LINK GRID (Counties, Cities)
   ======================================== */
.link-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(185px, 1fr));
    gap: 10px;
    margin: 20px 0;
}

.link-card {
    background-color: var(--color-white);
    border: 1px solid var(--color-grey-100);
    border-radius: var(--radius);
    padding: 12px 16px;
    text-align: left;
    text-decoration: none;
    transition: all var(--transition);
    display: flex;
    align-items: center;
    border-left: 3px solid transparent;
}
.link-card:hover {
    text-decoration: none;
    background-color: var(--color-off-white);
    border-left-color: var(--color-brown-500);
    box-shadow: var(--shadow);
}

.link-card::before {
    content: "\203A";
    color: var(--color-brown-500);
    font-size: 20px;
    font-weight: bold;
    margin-right: 10px;
    line-height: 1;
}

.link-card-title {
    font-weight: var(--font-semibold);
    color: var(--color-off-black);
    font-size: 14px;
}
.link-card:hover .link-card-title {
    color: var(--color-brown-600);
}

.link-grid-compact {
    grid-template-columns: repeat(auto-fill, minmax(155px, 1fr));
    gap: 8px;
}
.link-grid-compact .link-card { padding: 10px 14px; }

/* ========================================
   BUTTONS - Brown primary style
   ======================================== */
.btn {
    display: inline-block;
    padding: 12px 28px;
    font-size: 14px;
    font-weight: var(--font-bold);
    font-family: var(--font-sans);
    text-align: center;
    border-radius: var(--radius);
    cursor: pointer;
    border: none;
    text-decoration: none;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all var(--transition);
}
.btn:hover { text-decoration: none; }

.btn-primary {
    background-color: var(--color-brown-500);
    color: var(--color-white);
}
.btn-primary:hover {
    background-color: var(--color-brown-600);
    color: var(--color-white);
    box-shadow: var(--shadow);
}

.btn-secondary {
    background-color: var(--color-white);
    color: var(--color-off-black);
    border: 1px solid var(--color-brown-500);
}
.btn-secondary:hover {
    background-color: var(--color-off-white);
    color: var(--color-brown-600);
}

.btn-accent {
    background: var(--gradient-orange);
    color: var(--color-white);
}
.btn-accent:hover {
    opacity: 0.9;
    color: var(--color-white);
}

.btn-block { display: block; width: 100%; }

/* ========================================
   FOOTER - Dark warm multi-column
   ======================================== */
.footer {
    background: var(--gradient-header);
    color: rgba(250, 249, 246, 0.8);
    padding: 0;
    margin-top: 0;
}

.footer-main {
    padding: 40px 0;
    display: grid;
    grid-template-columns: 1fr 1fr 1.2fr;
    gap: 44px;
}

.footer-col h4 {
    color: var(--color-brown-300);
    font-size: 13px;
    font-weight: var(--font-bold);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
}

.footer-col a {
    display: block;
    color: rgba(250, 249, 246, 0.65);
    font-size: 14px;
    text-decoration: none;
    padding: 5px 0;
    transition: all var(--transition);
}
.footer-col a:hover {
    color: var(--color-off-white);
    text-decoration: none;
}

.footer-col p {
    font-size: 13px;
    line-height: 1.7;
    color: rgba(250, 249, 246, 0.45);
}

.footer-bottom {
    border-top: 1px solid rgba(250, 249, 246, 0.08);
    padding: 20px 0;
    text-align: center;
}

.footer-copyright {
    font-size: 13px;
    color: rgba(250, 249, 246, 0.35);
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 8px;
}
.footer-links a {
    display: inline;
    font-size: 13px;
    color: rgba(250, 249, 246, 0.5);
}
.footer-links a:hover { color: var(--color-off-white); }

/* ========================================
   SEARCH FORM COMPONENT
   ======================================== */
.search-form {
    max-width: 500px;
    margin: 0 auto;
}
.search-form-row {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}
.search-form-row.stacked { flex-direction: column; }

.search-form input[type="text"],
.search-form select {
    flex: 1;
    padding: 11px 14px;
    font-size: 15px;
    font-family: var(--font-sans);
    border: 1px solid var(--color-grey-200);
    border-radius: var(--radius);
    background-color: var(--color-white);
    color: var(--color-off-black);
}
.search-form input[type="text"]:focus,
.search-form select:focus {
    outline: none;
    border-color: var(--color-brown-500);
    box-shadow: 0 0 0 3px rgba(156, 106, 14, 0.1);
}

.search-form button {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    font-weight: var(--font-bold);
    font-family: var(--font-sans);
    background-color: var(--color-brown-500);
    color: var(--color-white);
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    transition: background-color var(--transition);
}
.search-form button:hover { background-color: var(--color-brown-600); }

.search-form-sidebar { max-width: 300px; }
.search-form-sidebar .search-form-row { flex-direction: column; }

/* ========================================
   SEARCH WIDGET (JS Generated)
   ======================================== */
.search-widget { width: 100%; }

.search-widget .search-form {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr auto;
    gap: 12px;
    width: 100%;
    max-width: 100%;
    margin: 0;
}

.search-widget .search-input,
.search-widget .search-select,
.search-widget .search-button {
    width: 100%;
    padding: 14px 16px;
    font-size: 15px;
    font-family: var(--font-sans);
    border: 1px solid var(--color-grey-200);
    border-radius: var(--radius);
    background-color: var(--color-white);
    box-sizing: border-box;
    color: var(--color-off-black);
}

.search-widget .search-button {
    background: var(--gradient-orange);
    color: var(--color-white);
    border: none;
    font-weight: var(--font-bold);
    cursor: pointer;
    transition: opacity var(--transition);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 14px 28px;
}

.search-widget .search-input:focus,
.search-widget .search-select:focus {
    outline: none;
    border-color: var(--color-brown-500);
    box-shadow: 0 0 0 3px rgba(156, 106, 14, 0.1);
}
.search-widget .search-button:hover { opacity: 0.9; }

/* Search Embed Box */
.search-embed {
    background-color: var(--color-off-white);
    border: 1px solid var(--color-grey-200);
    border-left: 4px solid var(--color-brown-500);
    border-radius: var(--radius);
    padding: 32px;
    padding-bottom: 70px;
    margin: 28px 0;
    position: relative;
}

.search-embed h3 {
    font-family: var(--font-headings);
    text-align: center;
    margin-bottom: 24px;
    font-size: 1.3em;
    font-weight: var(--font-bold);
    color: var(--color-headings);
}

.search-embed p.search-form-note {
    position: absolute;
    left: 28px;
    bottom: 16px;
    font-size: 13px;
    color: var(--color-grey-400);
    margin: 0;
}

/* ========================================
   UTILITIES
   ======================================== */
.text-center { text-align: center; }
.text-muted { color: var(--color-text-light); }
.mt-20 { margin-top: 20px; }
.mb-20 { margin-bottom: 20px; }
.mb-30 { margin-bottom: 30px; }

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 900px) {
    .footer-main { grid-template-columns: 1fr 1fr; }
    .page-layout { flex-direction: column; gap: 24px; }
    .sidebar { width: 100%; position: static; }
}

@media (max-width: 768px) {
    .header-top {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
    .header-search { display: none; }

    .nav-toggle { display: block; }
    .nav-bar { position: relative; }
    .nav {
        display: none;
        flex-direction: column;
        width: 100%;
        background-color: rgba(0, 0, 0, 0.2);
    }
    .nav.open { display: flex; }

    .nav > li > a {
        padding: 13px 20px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }
    .nav > li > a.active::after {
        display: none;
    }
    .nav > li > a.active {
        border-left: 3px solid var(--color-brown-500);
    }

    .dropdown-menu {
        position: static;
        box-shadow: none;
        border: none;
        background-color: rgba(0, 0, 0, 0.15);
        padding: 0;
    }
    .dropdown-menu li a {
        color: rgba(255, 255, 255, 0.8);
        padding: 10px 20px 10px 36px;
    }
    .dropdown-menu li a:hover {
        background-color: rgba(255, 255, 255, 0.05);
        color: var(--color-white);
    }
    .nav > li:hover > .dropdown-menu { display: none; }
    .nav > li.open > .dropdown-menu { display: block; }

    .content-section {
        padding: 22px;
        border-radius: var(--radius);
    }
    .content-section h1 { font-size: 1.6em; }
    .content-section h2 { font-size: 1.3em; }

    .page-heading { padding: 24px 0; }
    .page-heading h1 { font-size: 1.6em; }

    .footer-main { grid-template-columns: 1fr; gap: 28px; }
    .footer-bottom { text-align: center; }

    .search-form-row { flex-direction: column; }
    .link-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 700px) {
    .search-widget .search-form { grid-template-columns: 1fr; }
    .search-embed { padding: 24px 20px; padding-bottom: 48px; }
}

@media (max-width: 480px) {
    body { font-size: 15px; }
    .container { padding: 0 16px; }
    .logo img { height: 34px; }
    .content-section { padding: 16px; margin-bottom: 16px; }
    .content-section h1 { font-size: 1.35em; }
    .link-grid { grid-template-columns: 1fr; }
    .link-grid-compact { grid-template-columns: repeat(2, 1fr); }
    .info-table th, .info-table td { padding: 10px; font-size: 14px; }
    .info-table th { width: 40%; }
}
