/* ═══════════════════════════════════════════════════════════════════════════
   RODEN LAW — AI-SEO WORDPRESS THEME STYLESHEET
   Design System: Navy (#013046) + Gold (#FCB415) + Light (#F8F6F2)
   Typography: Merriweather (serif headings) + Inter (body sans-serif)
   ═══════════════════════════════════════════════════════════════════════════ */

/* ─── CSS VARIABLES ────────────────────────────────────────────────────── */

:root {
    --navy:         #013046;
    --navy-dark:    #001a2e;
    --navy-light:   #1a5f80;
    --orange:       #FCB415;
    --orange-light: #FDC94A;
    --orange-dark:  #D49B00;
    --orange-text:  #B8860B;
    --green:        #27AE60;
    --light:        #F8F6F2;
    --white:        #ffffff;
    --gray-50:      #fafafa;
    --gray-100:     #f5f5f5;
    --gray-200:     #e0e0e0;
    --gray-300:     #cccccc;
    --gray-400:     #999999;
    --gray-500:     #888888;
    --gray-600:     #666666;
    --gray-700:     #555555;
    --gray-800:     #333333;
    --gray-900:     #1a1a1a;
    --text-primary: #333333;
    --text-secondary:#666666;
    --text-muted:   #888888;
    --text-light:   #aab4c8;
    --font-serif:   'Merriweather', Georgia, serif;
    --font-sans:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --radius:       8px;
    --radius-lg:    12px;
    --shadow:       0 2px 16px rgba(0,0,0,0.08);
    --shadow-lg:    0 4px 32px rgba(0,0,0,0.12);
    --transition:   all 0.2s ease;
    --container:    960px;
    --container-lg: 1140px;
}

/* ─── RESET & BASE ─────────────────────────────────────────────────────── */

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

html { font-size: 16px; scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
    font-family: var(--font-sans);
    color: var(--text-primary);
    line-height: 1.7;
    background: var(--white);
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--navy); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--orange-text); }

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-serif);
    font-weight: 800;
    line-height: 1.25;
    color: var(--navy);
}

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

.text-center { text-align: center; }
.text-white { color: var(--white) !important; }
.text-light { color: var(--text-light) !important; }
.text-accent { color: var(--orange-text); }
.hero .text-accent,
.bg-navy .text-accent,
[style*="navy"] .text-accent { color: var(--orange); }

.screen-reader-text {
    clip: rect(1px,1px,1px,1px); position: absolute; height: 1px; width: 1px; overflow: hidden;
}
.screen-reader-text:focus {
    clip: auto; position: fixed; top: 8px; left: 8px; z-index: 10000;
    background: var(--white); padding: 12px 20px; font-size: 14px;
}

/* ─── BUTTONS ──────────────────────────────────────────────────────────── */

.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 6px;
    padding: 12px 24px; border-radius: 6px;
    font-weight: 700; font-size: 14px; cursor: pointer;
    transition: var(--transition); border: 2px solid transparent;
    text-decoration: none; line-height: 1.2;
}
.btn-lg { padding: 16px 32px; font-size: 15px; }
.btn-sm { padding: 8px 14px; font-size: 12px; }
.btn-block { width: 100%; }

.btn-primary {
    background: var(--orange); color: var(--navy); border-color: var(--orange); font-weight: 800;
}
.btn-primary:hover { background: var(--orange-dark); border-color: var(--orange-dark); color: var(--navy); }

.btn-dark {
    background: var(--navy); color: var(--white); border-color: var(--navy);
}
.btn-dark:hover { background: var(--navy-dark); color: var(--white); }

.btn-outline-light {
    background: transparent; color: var(--white); border-color: rgba(255,255,255,0.3);
}
.btn-outline-light:hover { background: rgba(255,255,255,0.1); color: var(--white); }

/* ─── TOP BAR ──────────────────────────────────────────────────────────── */

.top-bar {
    background: var(--navy-dark); color: var(--text-light); font-size: 12px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    transition: transform 0.3s ease, opacity 0.2s ease;
}
.top-bar-inner {
    display: flex; justify-content: space-between; align-items: center;
    padding: 8px 24px; max-width: var(--container-lg); margin: 0 auto;
}
.top-bar-right { display: flex; gap: 16px; align-items: center; }
.top-bar-phone { color: var(--orange); font-weight: 700; }
.top-bar-phone:hover { color: var(--orange-light); }
.top-bar-hidden {
    transform: translateY(-100%); opacity: 0;
    transition: transform 0.3s ease, opacity 0.2s ease;
    pointer-events: none;
}

/* ─── HEADER / NAV ─────────────────────────────────────────────────────── */

.site-header {
    background: var(--white);
    border-bottom: 3px solid var(--orange);
    position: sticky; top: 0; z-index: 50;
    box-shadow: var(--shadow);
    transition: box-shadow 0.3s ease;
}
.site-header.header-stuck {
    box-shadow: 0 2px 20px rgba(0,0,0,0.12);
}
.header-inner {
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 24px; height: 72px; max-width: var(--container-lg); margin: 0 auto;
}

/* Brand */
.site-brand {
    display: flex; align-items: center; gap: 10px; flex-shrink: 0;
}
.site-brand a { text-decoration: none; display: flex; align-items: center; gap: 10px; }
.site-brand img,
.custom-logo-link img,
.custom-logo {
    max-height: 48px; width: auto; display: block; height: auto;
}
.brand-icon {
    width: 36px; height: 36px; background: var(--navy); border-radius: 4px;
    display: flex; align-items: center; justify-content: center;
    color: var(--white); font-weight: 900; font-size: 16px; font-family: var(--font-serif);
}
.brand-name {
    font-weight: 800; font-size: 18px; color: var(--navy); letter-spacing: -0.3px;
    font-family: var(--font-serif); display: block; line-height: 1.2;
}
.brand-tagline {
    font-size: 9px; color: var(--gray-500); letter-spacing: 1.5px;
    text-transform: uppercase; display: block;
}

/* Nav Menu */
.nav-menu {
    list-style: none; display: flex; gap: 6px; margin: 0; padding: 0;
}
.nav-menu li { position: relative; }
.nav-menu li a {
    display: block; padding: 8px 14px; font-size: 13px; font-weight: 600;
    color: var(--navy); border-bottom: 2px solid transparent;
    transition: var(--transition);
}
.nav-menu li a:hover,
.nav-menu li.current-menu-item > a,
.nav-menu li.current-menu-parent > a {
    color: var(--orange-text); border-bottom-color: var(--orange);
}

/* Dropdown */
.nav-menu li ul {
    display: none; position: absolute; top: 100%; left: 0;
    background: var(--white); border: 1px solid var(--gray-200);
    border-radius: var(--radius); box-shadow: var(--shadow-lg);
    min-width: 220px; padding: 8px 0; z-index: 100; list-style: none;
}
.nav-menu li:hover > ul { display: block; }
.nav-menu li ul li a {
    padding: 8px 16px; font-size: 13px; border-bottom: none;
}
/* Two-column mega dropdown for Practice Areas (first menu item) */
.nav-menu > li:first-child > ul {
    min-width: 440px; max-width: 480px; display: none;
    flex-wrap: wrap; padding: 12px;
}
.nav-menu > li:first-child:hover > ul { display: flex; }
.nav-menu > li:first-child > ul > li { width: 50%; box-sizing: border-box; flex-shrink: 0; }
.nav-menu > li:first-child > ul > li a { padding: 6px 12px; font-size: 12px; white-space: nowrap; }

.header-phone { white-space: nowrap; }

/* Mobile Toggle */
.mobile-toggle {
    display: none; background: none; border: none; cursor: pointer; padding: 8px;
}
.hamburger {
    display: block; width: 24px; height: 2px; background: var(--navy);
    position: relative; transition: var(--transition);
}
.hamburger::before, .hamburger::after {
    content: ''; position: absolute; width: 24px; height: 2px;
    background: var(--navy); left: 0; transition: var(--transition);
}
.hamburger::before { top: -7px; }
.hamburger::after { top: 7px; }

/* Mobile Nav */
.mobile-nav-overlay {
    display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 200;
}
.mobile-nav-overlay.active { display: block; }
.mobile-nav-drawer {
    position: fixed; top: 0; right: 0; width: 300px; height: 100vh;
    background: var(--white); z-index: 201; overflow-y: auto;
    transform: translateX(100%); transition: transform 0.3s ease;
}
.mobile-nav-overlay.active .mobile-nav-drawer { transform: translateX(0); }
.mobile-nav-header {
    display: flex; justify-content: space-between; align-items: center;
    padding: 16px 20px; border-bottom: 2px solid var(--orange);
}
.mobile-close {
    background: none; border: none; font-size: 28px; cursor: pointer; color: var(--gray-600);
}
.mobile-menu {
    list-style: none; padding: 12px 0; margin: 0;
}
.mobile-menu li a {
    display: block; padding: 12px 20px; font-size: 15px; font-weight: 600;
    color: var(--navy); border-bottom: 1px solid var(--gray-100);
}
.mobile-nav-cta { padding: 16px 20px; }

/* ─── HERO SECTIONS ────────────────────────────────────────────────────── */

.hero {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 60%, var(--navy) 100%);
    padding: 48px 24px; position: relative; overflow: hidden;
}
.hero-bg-overlay {
    position: absolute; top: 0; right: 0; width: 45%; height: 100%;
    background: linear-gradient(to left, rgba(252,180,21,0.12), transparent);
    pointer-events: none;
}

.hero-grid {
    display: grid; grid-template-columns: 1fr 380px; gap: 48px;
    max-width: var(--container); margin: 0 auto; align-items: start;
}
.hero-content { display: flex; flex-direction: column; justify-content: flex-start; min-width: 0; }
.hero-form { display: flex; flex-direction: column; justify-content: flex-start; }

.hero-title {
    color: var(--white); font-size: 38px; font-weight: 900; line-height: 1.15;
    margin-bottom: 16px;
}
.hero-jurisdiction {
    font-size: 12px; color: var(--text-light); letter-spacing: 0.5px;
    margin-bottom: 12px;
}
.hero-jurisdiction strong { color: var(--white); }
.hero-subtitle {
    color: var(--text-light); font-size: 15px; line-height: 1.75;
    margin-bottom: 24px; max-width: 560px;
}
.hero-subtitle strong { color: var(--white); }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 24px; }

.hero-page { padding: 48px 24px; }
.hero-blog { padding: 48px 24px 32px; }
.hero-blog-single { padding: 48px 24px 32px; }
.hero-archive { padding: 48px 24px; }
.hero-location { padding: 56px 24px 48px; }

/* ─── BREADCRUMBS ──────────────────────────────────────────────────────── */

.breadcrumbs {
    font-size: 12px; color: var(--text-light); margin-bottom: 16px;
}
.breadcrumbs a { color: var(--text-light); }
.breadcrumbs a:hover { color: var(--white); }
.breadcrumb-sep { margin: 0 6px; }
.breadcrumb-current { color: var(--orange); }

/* ─── TRUST BAR ────────────────────────────────────────────────────────── */

.trust-bar {
    background: var(--navy); padding: 14px 24px;
    border-bottom: 3px solid var(--orange);
}
.trust-bar-inner {
    display: flex; gap: 40px; align-items: center; justify-content: center;
    flex-wrap: wrap;
}
.trust-badge { display: flex; align-items: center; gap: 8px; }
.trust-icon {
    width: 32px; height: 32px; background: rgba(255,255,255,0.12); border-radius: 50%;
    display: flex; align-items: center; justify-content: center; font-size: 14px;
}
.trust-label { font-size: 11px; color: var(--text-light); font-weight: 600; }

/* ─── SECTIONS ─────────────────────────────────────────────────────────── */

.section { padding: 64px 24px; }
.section-light { background: var(--light); }
.section-dark { background: var(--navy); }
.bg-navy { background: var(--navy); }
.bg-navy .section-title { color: var(--white); }
.bg-navy .section-subtitle { color: var(--text-light); }
.section-cta {
    background: linear-gradient(135deg, var(--navy), var(--navy-dark));
    padding: 72px 24px;
}

.section-header { margin-bottom: 40px; }
.section-title { font-size: 28px; font-weight: 800; margin-bottom: 8px; }
.section-subtitle { color: var(--text-secondary); font-size: 15px; margin-top: 8px; }
.section-dark .section-subtitle { color: var(--text-light); }

/* ─── STATS BAR ────────────────────────────────────────────────────────── */

.stats-bar {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
    margin: 24px 0;
}
.stat-item {
    text-align: center; border-left: 3px solid var(--orange); padding-left: 12px;
}
.stat-num {
    display: block; color: var(--orange); font-weight: 900; font-size: 22px;
    font-family: var(--font-serif);
}
.stat-label {
    display: block; color: var(--text-light); font-size: 11px; margin-top: 2px;
}

/* ─── PRACTICE AREA GRID ──────────────────────────────────────────────── */

.practice-areas-grid {
    display: grid; gap: 12px;
}
.practice-areas-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }
.practice-areas-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }

.practice-area-card {
    display: flex; align-items: center; justify-content: space-between;
    background: var(--white); border: 1px solid var(--gray-200);
    border-top: 3px solid var(--orange); border-radius: var(--radius);
    padding: 16px 14px; text-decoration: none;
    transition: var(--transition);
}
.practice-area-card h3 { margin: 0; font-size: 15px; }
.practice-area-card .card-arrow { flex-shrink: 0; color: var(--text-light); }
.practice-area-card:hover {
    box-shadow: var(--shadow); transform: translateY(-2px); border-top-color: var(--navy);
}
.pa-icon { font-size: 18px; }
.pa-name { font-size: 13px; font-weight: 600; color: var(--navy); }

/* ─── LOCATION CARDS ───────────────────────────────────────────────────── */

.location-cards-grid {
    display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px;
}
.location-card {
    border: 1px solid var(--gray-200); border-top: 4px solid var(--navy);
    border-radius: 10px; padding: 20px 16px; background: var(--white);
}
.location-state-badge {
    display: inline-block; font-size: 11px; font-weight: 700; color: var(--white);
    padding: 2px 8px; border-radius: 3px; margin-bottom: 8px;
}
.state-ga, .location-state-badge.state-ga { background: var(--navy); }
.state-sc, .location-state-badge.state-sc { background: var(--orange); }
.location-city { font-size: 15px; font-weight: 800; margin-bottom: 6px; }
.location-city a { color: var(--navy); }
.location-city a:hover { color: var(--orange-text); }
.location-card address { font-style: normal; font-size: 12px; color: var(--gray-600); margin-bottom: 4px; }
.location-phone { display: block; font-size: 13px; color: var(--orange-text); font-weight: 700; margin: 6px 0; }
.location-link { font-size: 12px; color: var(--navy); font-weight: 600; }
.location-cards-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.location-cards-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.location-service-area { font-size: 12px; color: var(--gray-500); line-height: 1.5; margin: 6px 0 8px; }
.location-card-header { margin-bottom: 8px; }
.location-card-header h3 {
    font-size: 18px; font-weight: 800; color: var(--navy); margin: 4px 0 0;
}

/* ─── CASE RESULTS GRID ────────────────────────────────────────────────── */

.case-results-grid {
    display: grid; gap: 16px;
}
.case-results-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }
.case-results-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.case-results-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }

.result-card {
    background: var(--navy); border: 1px solid rgba(255,255,255,0.12);
    border-radius: 10px; padding: 24px; border-top: 3px solid var(--orange);
    text-align: center;
}
.result-type {
    display: block; font-size: 11px; color: var(--orange); font-weight: 700;
    letter-spacing: 1px; text-transform: uppercase; margin-bottom: 6px;
}
.result-amount {
    display: block; font-size: 26px; font-weight: 900; color: var(--orange);
    font-family: var(--font-serif);
}
.result-title {
    display: block; font-size: 14px; font-weight: 700; color: var(--white);
    font-family: var(--font-serif); margin-top: 8px;
}
.result-desc {
    font-size: 12px; color: rgba(255,255,255,0.75); margin-top: 8px; line-height: 1.5;
}
.results-disclaimer {
    font-size: 11px; color: var(--gray-400); font-style: italic; margin-top: 12px;
}

@media (max-width: 768px) {
    .case-results-grid.cols-3,
    .case-results-grid.cols-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
    .case-results-grid.cols-3,
    .case-results-grid.cols-4 { grid-template-columns: 1fr; }
}

/* ─── LOAD MORE ─────────────────────────────────────────────────────── */
.load-more-wrap { margin-top: 40px; text-align: center; }
.load-more-count { color: var(--text-light); font-size: 0.9rem; margin-top: 12px; }

/* ─── FEATURED RESULT (archive hero callout) ─────────────────────────── */

.featured-result-section { padding-top: 24px; padding-bottom: 48px; }
.featured-result-card {
    background: var(--navy); color: var(--white); border-radius: 12px;
    padding: 48px 40px; text-align: center; position: relative;
    border-bottom: 4px solid var(--orange); max-width: 720px; margin: 0 auto;
}
.featured-result-label {
    display: inline-block; background: var(--orange); color: var(--navy);
    font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: 1px;
    padding: 4px 14px; border-radius: 20px; margin-bottom: 16px;
}
.featured-result-amount {
    display: block; font-size: 52px; font-weight: 900; line-height: 1.1;
    margin-bottom: 12px; color: var(--white);
}
.featured-result-meta {
    display: flex; align-items: center; justify-content: center; gap: 10px;
    font-size: 15px; color: rgba(255,255,255,0.8); margin-bottom: 12px;
}
.featured-result-type { font-weight: 700; color: var(--orange); }
.featured-result-sep { opacity: 0.4; }
.featured-result-desc {
    font-size: 14px; color: rgba(255,255,255,0.7); line-height: 1.6;
    max-width: 500px; margin: 0 auto;
}

@media (max-width: 768px) {
    .featured-result-card { padding: 32px 20px; }
    .featured-result-amount { font-size: 36px; }
    .featured-result-meta { flex-direction: column; gap: 4px; }
    .featured-result-sep { display: none; }
}

/* ─── ATTORNEYS GRID ───────────────────────────────────────────────────── */

.attorneys-grid { display: grid; gap: 14px; }
.attorneys-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }
.attorneys-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }

.attorney-card {
    border: 1px solid var(--gray-200); border-radius: 10px; padding: 18px;
    text-align: center; background: var(--white); transition: var(--transition);
}
.attorney-card:hover { box-shadow: var(--shadow); }
.attorney-card-link { text-decoration: none; display: block; }
.attorney-photo { margin-bottom: 10px; }
.attorney-photo img { border-radius: 50%; width: 80px; height: 80px; object-fit: cover; margin: 0 auto; }
.attorney-photo-placeholder {
    width: 80px; height: 80px; background: rgba(27,58,107,0.1); border-radius: 50%;
    display: flex; align-items: center; justify-content: center; font-size: 28px; margin: 0 auto;
}
.attorney-name { font-size: 14px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.attorney-title { display: block; font-size: 11px; color: var(--gray-500); }
.attorney-bar { display: block; font-size: 11px; color: var(--orange-text); font-weight: 600; margin-top: 4px; }

/* ─── CONTENT + SIDEBAR LAYOUT ─────────────────────────────────────────── */

.content-with-sidebar { border-top: 1px solid var(--gray-200); }
.content-sidebar-grid {
    display: grid; grid-template-columns: 1fr 300px; gap: 0;
}
.main-content {
    padding: 40px 36px 40px 0; border-right: 1px solid var(--gray-100);
}
.sidebar {
    padding: 40px 0 40px 24px; background: var(--light);
}
.sidebar-sticky { position: sticky; top: 80px; display: flex; flex-direction: column; gap: 16px; }

.content-section { margin-bottom: 36px; }
.content-section h2 {
    font-size: 20px; font-weight: 800; color: var(--navy); margin-bottom: 14px;
    padding-bottom: 10px; border-bottom: 2px solid var(--gray-100);
}

/* Direct h2 in main-content (outside .content-section) */
.main-content > h2 {
    font-size: 22px; font-weight: 800; color: var(--navy); margin-bottom: 16px;
    padding-bottom: 10px; border-bottom: 2px solid var(--gray-100);
}
.main-content > p {
    font-size: 14px; line-height: 1.85; color: var(--gray-700); margin-bottom: 16px;
}

/* Result cards inside main-content need navy background */
.main-content .result-card {
    background: var(--navy); color: var(--white);
}

.entry-content { margin-bottom: 32px; }
.entry-content p { margin-bottom: 16px; font-size: 15px; line-height: 1.85; color: var(--gray-700); }
.entry-content h2 { font-size: 22px; margin: 32px 0 14px; }
.entry-content h3 { font-size: 18px; margin: 24px 0 12px; }
.entry-content h4 { font-size: 16px; margin: 20px 0 10px; }
.entry-content ul, .entry-content ol { margin: 0 0 16px 24px; }
.entry-content li { margin-bottom: 6px; font-size: 14px; line-height: 1.8; }
.entry-content strong { color: var(--text-primary); }
.entry-content blockquote {
    border-left: 4px solid var(--orange); padding: 16px 20px; margin: 16px 0;
    background: var(--light); font-style: italic; color: var(--gray-600);
}
.entry-content table { width: 100%; border-collapse: collapse; margin: 16px 0; font-size: 14px; }
.entry-content th { background: var(--navy); color: var(--white); padding: 10px 14px; text-align: left; font-size: 13px; font-family: var(--font-sans); font-weight: 700; }
.entry-content td { padding: 10px 14px; border-bottom: 1px solid var(--gray-200); }
.entry-content tr:nth-child(even) td { background: var(--gray-50); }
.entry-content img { border-radius: var(--radius); margin: 16px 0; }
.entry-content a { color: var(--navy); text-decoration: underline; text-decoration-color: var(--orange); text-underline-offset: 2px; }
.entry-content a:hover { color: var(--orange-text); }

/* ─── SUB-TYPES GRID ───────────────────────────────────────────────────── */

.sub-types-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.sub-type-card {
    border: 1px solid var(--gray-200); border-left: 4px solid var(--orange);
    border-radius: 6px; padding: 12px 14px; display: flex;
    align-items: center; justify-content: space-between;
    cursor: pointer; transition: var(--transition);
}
.sub-type-card:hover { background: var(--light); }
.st-name { font-size: 13px; font-weight: 600; color: var(--navy); }
.st-arrow { color: var(--orange); }

/* ─── STATUTE OF LIMITATIONS ───────────────────────────────────────────── */

.sol-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 16px; }
.sol-card {
    border-radius: var(--radius); padding: 16px;
}
.sol-ga {
    background: #EEF2F8; border: 1px solid rgba(27,58,107,0.2);
    border-left: 4px solid var(--navy);
}
.sol-sc {
    background: #FEF4EE; border: 1px solid rgba(232,92,31,0.2);
    border-left: 4px solid var(--orange);
}
.sol-state { display: block; font-weight: 700; font-size: 12px; margin-bottom: 6px; }
.sol-ga .sol-state { color: var(--navy); }
.sol-sc .sol-state { color: var(--orange); }
.sol-years {
    display: block; font-size: 26px; font-weight: 900; font-family: var(--font-serif);
}
.sol-ga .sol-years { color: var(--navy); }
.sol-sc .sol-years { color: var(--orange); }
.sol-cite { display: block; font-size: 11px; color: var(--gray-600); margin-top: 4px; }

/* ─── STATE LAW BOX ────────────────────────────────────────────────────── */

.state-law-box {
    background: rgba(27,58,107,0.04); border: 1px solid rgba(27,58,107,0.15);
    border-left: 4px solid var(--navy); border-radius: var(--radius);
    padding: 22px; margin-bottom: 0;
}
.state-law-box:last-child { margin-bottom: 0; }
.state-law-box h3 { font-size: 15px; font-weight: 800; color: var(--navy); margin-bottom: 14px; }
.law-details-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.law-label {
    display: block; font-weight: 700; color: var(--navy); font-size: 12px;
    text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 4px;
}
.law-value { font-size: 13px; color: var(--gray-700); line-height: 1.6; }

/* ─── NAP BLOCK (location hero) ────────────────────────────────────────── */

.nap-block {
    background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15);
    border-radius: 10px; padding: 18px 20px; margin-bottom: 20px;
}
.nap-name { font-weight: 700; color: var(--white); font-size: 14px; margin-bottom: 10px; }
.nap-details { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.nap-label {
    display: block; font-size: 11px; color: var(--text-light);
    text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 4px;
}
.nap-col > span { display: block; font-size: 13px; color: #d0d8e8; }
.nap-col span span { display: inline; }
.nap-phone { font-size: 18px; color: var(--orange) !important; font-weight: 700; }
.nap-hours { font-size: 11px; color: var(--text-light); margin-top: 4px; }
.nap-actions { margin-top: 14px; display: flex; gap: 10px; }

/* Map embed */
.map-embed {
    border-radius: var(--radius-lg); overflow: hidden;
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
    border: 2px solid rgba(255,255,255,0.15); margin-bottom: 16px;
}
.map-embed iframe { display: block; width: 100%; }

/* State badge */
.state-badge {
    display: inline-block; font-size: 11px; font-weight: 700;
    color: var(--white); padding: 4px 12px; border-radius: 3px;
    letter-spacing: 1px; margin-bottom: 14px;
}
.state-badge.state-ga { background: var(--navy); border: 1px solid rgba(255,255,255,0.3); }
.state-badge.state-sc { background: var(--orange); }

/* ─── SIDEBAR WIDGETS ──────────────────────────────────────────────────── */

.sidebar-widget {
    background: var(--white); border: 1px solid var(--gray-200);
    border-radius: 10px; padding: 18px; margin-bottom: 0;
}
.widget-title {
    font-weight: 800; color: var(--navy); font-size: 13px; margin-bottom: 12px;
    font-family: var(--font-sans);
}
.sidebar-links { list-style: none; padding: 0; margin: 0; }
.sidebar-links li { border-bottom: 1px solid var(--gray-100); }
.sidebar-links li a {
    display: flex; justify-content: space-between; align-items: center;
    padding: 8px 0; font-size: 13px; color: var(--navy); text-decoration: none;
}
.sidebar-links li a:hover { color: var(--orange-text); }
.sidebar-links .count { font-size: 10px; color: var(--gray-400); }

/* ─── SIDEBAR CONTACT FORM ─────────────────────────────────────────────── */

.sidebar-contact-form {
    background: var(--navy);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    color: var(--white);
    position: relative;
    z-index: 10;
}

.sidebar-contact-form .form-title {
    font-weight: 800;
    font-size: 22px;
    margin: 0 0 4px;
    font-family: var(--font-serif);
    color: var(--white);
}
.sidebar-contact-form .form-subtitle {
    font-size: 13px;
    color: var(--orange);
    margin: 0 0 20px;
    line-height: 1.6;
}

/* --- Custom sidebar form fields --- */
.roden-sidebar-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.roden-sidebar-form .rsf-row.rsf-half {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}
.roden-sidebar-form input[type="text"],
.roden-sidebar-form input[type="tel"],
.roden-sidebar-form input[type="email"],
.roden-sidebar-form select,
.roden-sidebar-form textarea {
    width: 100%;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 8px;
    color: var(--gray-800);
    padding: 13px 14px;
    font-size: 14px;
    font-family: var(--font-sans);
    box-sizing: border-box;
    margin: 0;
    -webkit-appearance: none;
}
.roden-sidebar-form input::placeholder,
.roden-sidebar-form textarea::placeholder {
    color: var(--gray-400);
}
.roden-sidebar-form input:focus,
.roden-sidebar-form select:focus,
.roden-sidebar-form textarea:focus {
    outline: none;
    border-color: var(--orange);
    box-shadow: 0 0 0 2px rgba(252, 180, 21, 0.25);
}
.roden-sidebar-form select {
    appearance: none;
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23555' d='M1.41 0L6 4.58 10.59 0 12 1.41l-6 6-6-6z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
}
.roden-sidebar-form select option {
    background: var(--white);
    color: var(--gray-800);
}
.roden-sidebar-form textarea {
    min-height: 80px;
    resize: none;
}

/* --- Consent --- */
.roden-sidebar-form .rsf-consent {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
}
.roden-sidebar-form .rsf-consent input[type="checkbox"] {
    width: 18px;
    height: 18px;
    min-width: 18px;
    margin: 2px 0 0;
    accent-color: var(--orange);
    cursor: pointer;
}
.roden-sidebar-form .rsf-consent span {
    font-size: 12px;
    color: var(--gray-300);
    line-height: 1.5;
}
.roden-sidebar-form .rsf-consent a {
    color: var(--orange);
    text-decoration: underline;
}
.roden-sidebar-form .rsf-consent a:hover {
    color: var(--orange-light);
}

/* --- Submit button --- */
.roden-sidebar-form .rsf-submit-btn {
    display: block;
    width: 100%;
    background: var(--orange);
    color: var(--navy);
    padding: 16px 20px;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 800;
    font-family: 'Merriweather Sans', sans-serif;
    letter-spacing: 0.3px;
    cursor: pointer;
    min-height: 50px;
    text-align: center;
    line-height: 1.2;
    transition: background 0.2s ease;
    -webkit-appearance: none;
    appearance: none;
}
.roden-sidebar-form .rsf-submit-btn:hover {
    background: var(--orange-dark);
}
.roden-sidebar-form .rsf-submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* --- Error message --- */
.roden-sidebar-form .rsf-error {
    color: #ff6b6b;
    font-size: 13px;
    text-align: center;
    margin: 0;
}

/* --- Disclaimer below form --- */
.sidebar-contact-form .form-disclaimer {
    text-align: center;
    font-size: 11px;
    color: var(--gray-500);
    margin: 12px 0 0;
    line-height: 1.5;
}

/* --- Mobile stacking --- */
@media (max-width: 480px) {
    .roden-sidebar-form .rsf-row.rsf-half {
        grid-template-columns: 1fr;
    }
}



/* ─── HERO FORM — align form to bottom of hero ────────────────────────── */

/* Sidebar NAP Card */
.sidebar-nap-card {
    border: 2px solid var(--navy) !important;
}
.sidebar-nap-card address {
    font-style: normal; font-size: 13px; color: var(--gray-700); line-height: 1.6; margin-bottom: 8px;
}
.nap-card-name { font-weight: 800; color: var(--navy); font-size: 14px; margin-bottom: 4px; }
.nap-card-phone {
    display: block; color: var(--orange); font-weight: 700; font-size: 16px;
    margin: 10px 0;
}

/* Sidebar deadlines */
.deadline-badges { display: flex; gap: 8px; margin-bottom: 8px; }
.deadline-badge {
    flex: 1; text-align: center; color: var(--white);
    border-radius: 6px; padding: 10px 6px;
}
.deadline-ga { background: var(--navy); }
.deadline-sc { background: var(--orange); }
.deadline-years { display: block; font-size: 20px; font-weight: 900; }
.deadline-state { display: block; font-size: 9px; margin-top: 2px; opacity: 0.8; }
.deadline-warning { font-size: 11px; color: var(--gray-500); text-align: center; }

/* Sidebar Why Us */
.sidebar-why-us { background: var(--navy) !important; border-color: var(--navy) !important; }
.sidebar-why-us .widget-title { color: var(--white); }
.why-us-list { list-style: none; padding: 0; margin: 0; }
.why-us-list li {
    font-size: 12px; color: var(--text-light); padding: 6px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

/* Sidebar Consult CTA */
.sidebar-consult-cta {
    background: var(--navy) !important; border-color: var(--navy) !important;
    color: var(--white);
}
.sidebar-consult-cta .widget-title, .sidebar-consult-cta h3 { color: var(--white); font-family: var(--font-serif); }
.sidebar-consult-cta p { font-size: 12px; color: var(--text-light); margin-bottom: 12px; }
.sidebar-consult-cta .btn { margin-bottom: 8px; }

/* ─── LOCATION MATRIX ──────────────────────────────────────────────────── */

.section-location-matrix {
    background: var(--light); padding: 28px 24px;
    border-bottom: 1px solid var(--gray-200);
}
.matrix-title { font-size: 17px; font-weight: 800; color: var(--navy); margin-bottom: 14px; }
.location-matrix-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 10px; }
.matrix-card {
    background: var(--white); border: 1px solid var(--gray-300);
    border-radius: var(--radius); padding: 13px 10px; text-align: center;
    border-top: 3px solid var(--orange);
}
.matrix-state {
    display: inline-block; font-size: 10px; font-weight: 700;
    color: var(--white); padding: 2px 7px; border-radius: 2px; margin-bottom: 6px;
}
.matrix-city { font-size: 13px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.matrix-city a { color: var(--navy); text-decoration: none; }
.matrix-city a:hover { color: var(--orange); }
.matrix-url { font-size: 9px; color: var(--gray-400); }
.matrix-card-active {
    border-color: var(--navy); border-top-color: var(--navy);
    background: var(--navy); color: var(--white);
}
.matrix-card-active .matrix-city { color: var(--white); }
.matrix-card-active .matrix-state { background: var(--orange); }
.matrix-current {
    display: block; font-size: 9px; color: rgba(255,255,255,0.6);
    text-transform: uppercase; letter-spacing: 0.5px; margin-top: 4px;
}

/* ─── SUB-TYPE LINKS (pillar page clickable cards) ───────────────────── */

a.sub-type-link { text-decoration: none; display: flex; }
a.sub-type-link:hover { background: var(--light); border-color: var(--orange); }

/* ─── SIDEBAR BACK LINK ──────────────────────────────────────────────── */

.sidebar-back-link {
    display: block; padding: 10px 14px; background: var(--light);
    border: 1px solid var(--gray-300); border-radius: var(--radius);
    color: var(--navy); font-weight: 700; font-size: 13px;
    text-decoration: none; transition: var(--transition);
}
.sidebar-back-link:hover { background: var(--navy); color: var(--white); }

/* ─── INLINE CTA BANNER ───────────────────────────────────────────────── */

.inline-cta-banner {
    background: linear-gradient(135deg, var(--navy), var(--navy-dark));
    border-radius: 10px; padding: 18px 22px;
    display: flex; align-items: center; justify-content: space-between;
    margin: 24px 0;
}
.cta-text strong { display: block; color: var(--white); font-size: 14px; }
.cta-text span { display: block; color: var(--text-light); font-size: 11px; margin-top: 2px; }

/* ─── FAQ ACCORDION ────────────────────────────────────────────────────── */

.faq-section { margin-top: 36px; }
.faq-accordion { display: flex; flex-direction: column; gap: 8px; }
.faq-item {
    border: 1px solid var(--gray-200); border-radius: var(--radius); overflow: hidden;
}
.faq-question {
    width: 100%; text-align: left; background: var(--gray-50);
    color: var(--navy); border: none; padding: 14px 18px;
    font-weight: 700; font-size: 13px; cursor: pointer;
    display: flex; justify-content: space-between; align-items: center;
    font-family: var(--font-serif); line-height: 1.4;
    transition: var(--transition);
}
.faq-question[aria-expanded="true"] {
    background: var(--navy); color: var(--white);
}
.faq-toggle { font-size: 20px; flex-shrink: 0; margin-left: 12px; }
.faq-answer {
    padding: 14px 18px; font-size: 13px; color: var(--gray-700);
    line-height: 1.8; border-top: 1px solid var(--gray-100);
}
.faq-answer p { margin: 0; }

/* ─── AUTHOR ATTRIBUTION ──────────────────────────────────────────────── */

.author-attribution { margin-top: 32px; }
.author-card {
    display: flex; gap: 16px; background: var(--light);
    border: 1px solid var(--gray-200); border-radius: 10px; padding: 20px;
}
.author-photo { flex-shrink: 0; }
.author-photo img { width: 60px; height: 60px; border-radius: 50%; object-fit: cover; }
.author-photo-placeholder {
    width: 60px; height: 60px; background: rgba(27,58,107,0.15); border-radius: 50%;
    display: flex; align-items: center; justify-content: center; font-size: 22px;
}
.author-name a { font-weight: 800; color: var(--navy); font-size: 14px; }
.author-title { display: block; font-size: 11px; color: var(--orange-text); font-weight: 600; margin-bottom: 8px; }
.author-bio { font-size: 13px; color: var(--gray-700); line-height: 1.75; margin: 0; }

/* ─── BOTTOM CTA BOX ──────────────────────────────────────────────────── */

.bottom-cta-box {
    background: linear-gradient(135deg, var(--navy), var(--navy-dark));
    border-radius: var(--radius-lg); padding: 28px 24px; text-align: center;
    margin-top: 36px;
}
.bottom-cta-box h2 { color: var(--white); font-size: 21px; margin-bottom: 10px; }
.bottom-cta-box p { color: var(--text-light); font-size: 14px; line-height: 1.7; max-width: 500px; margin: 0 auto 20px; }
.bottom-cta-box .cta-actions { display: flex; gap: 12px; justify-content: center; }

/* ─── STARS ─────────────────────────────────────────────────────────────── */

.stars-display { display: flex; align-items: center; gap: 4px; justify-content: center; margin: 8px 0; }
.star { color: #f59e0b; font-size: 16px; }
.stars-small .star { font-size: 12px; }
.star-rating { font-size: 13px; color: var(--gray-500); margin-left: 4px; }
.star-count { font-size: 13px; color: var(--gray-500); }

/* ─── VALUE PROPS ──────────────────────────────────────────────────────── */

.value-props-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.value-prop-card {
    background: var(--white); border: 1px solid var(--gray-200); border-radius: 10px;
    padding: 24px 20px; text-align: center; transition: var(--transition);
}
.value-prop-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.vp-icon { font-size: 28px; display: block; margin-bottom: 12px; }
.vp-title { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.vp-text { font-size: 13px; color: var(--gray-600); line-height: 1.6; }

/* ─── TESTIMONIALS ─────────────────────────────────────────────────────── */

.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.testimonial-card {
    background: var(--white); border: 1px solid var(--gray-200); border-radius: 10px;
    padding: 24px; border-top: 3px solid var(--orange);
}
.testimonial-stars { color: #f59e0b; font-size: 14px; margin-bottom: 12px; }
.testimonial-text { font-size: 14px; color: var(--gray-600); line-height: 1.75; font-style: italic; margin: 0 0 12px; }
.testimonial-author { font-size: 13px; font-weight: 700; color: var(--navy); font-style: normal; }

/* ─── BLOG GRID ────────────────────────────────────────────────────────── */

.blog-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.blog-search { max-width: 500px; }
.blog-search .search-form {
    display: flex; gap: 0; align-items: stretch;
}
.blog-search .search-field {
    flex: 3; min-width: 0;
    background: rgba(255,255,255,0.12); border: 2px solid rgba(255,255,255,0.2);
    border-right: none; border-radius: 6px 0 0 6px; color: var(--white);
    padding: 10px 14px; font-size: 14px; box-sizing: border-box;
    margin: 0;
}
.blog-search .search-field::placeholder { color: rgba(255,255,255,0.5); }
.blog-search .search-submit {
    flex: 1; border-radius: 0 6px 6px 0;
    white-space: nowrap; box-sizing: border-box; margin: 0;
}

/* Blog Card */
.blog-card {
    background: var(--white); border: 1px solid var(--gray-200); border-radius: 10px;
    overflow: hidden; display: flex; flex-direction: column; transition: var(--transition);
}
.blog-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); }
.blog-card-image {
    display: block; height: 180px; background: linear-gradient(135deg, var(--navy), var(--navy-light));
    position: relative; overflow: hidden;
}
.blog-card-image img { width: 100%; height: 100%; object-fit: cover; }
.blog-card-image-placeholder {
    display: flex; align-items: center; justify-content: center;
}
.placeholder-icon { font-size: 32px; opacity: 0.3; }
.blog-card-tag {
    position: absolute; top: 10px; left: 10px;
    background: rgba(255,255,255,0.15); color: var(--white);
    font-size: 9px; font-weight: 700; padding: 2px 8px; border-radius: 2px;
}
.blog-card-body { padding: 16px; flex: 1; display: flex; flex-direction: column; }
.blog-card-meta { display: flex; gap: 8px; align-items: center; margin-bottom: 8px; flex-wrap: wrap; }
.blog-card-category { font-size: 9px; font-weight: 700; color: var(--orange-text); text-transform: uppercase; letter-spacing: 0.5px; }
.meta-sep { color: var(--gray-300); }
.blog-card-date { font-size: 10px; color: var(--gray-400); }
.blog-card-title { margin-bottom: 8px; }
.blog-card-title a { font-size: 14px; font-weight: 800; color: var(--navy); line-height: 1.35; }
.blog-card-title a:hover { color: var(--orange-text); }
.blog-card-excerpt { font-size: 13px; color: var(--gray-600); line-height: 1.7; flex: 1; margin-bottom: 12px; }
.blog-card-footer { display: flex; align-items: center; justify-content: space-between; }
.blog-card-author { display: flex; align-items: center; gap: 8px; }
.author-avatar { font-size: 12px; }
.author-meta .author-name { display: block; font-size: 11px; font-weight: 700; color: var(--navy); }
.author-meta .author-title { display: block; font-size: 9px; color: var(--gray-500); }
.read-more-link { font-size: 12px; font-weight: 700; color: var(--orange-text); }

/* Blog Post Single */
.post-meta-bar {
    display: flex; align-items: center; gap: 16px; margin-top: 16px;
    flex-wrap: wrap; font-size: 13px; color: var(--text-light);
}
.post-author { display: flex; align-items: center; gap: 10px; }
.post-author-photo img { width: 36px; height: 36px; border-radius: 50%; object-fit: cover; }
.author-placeholder { font-size: 18px; }
.post-author-name { display: block; font-weight: 700; color: var(--white); font-size: 13px; }
.post-author-name:hover { color: var(--orange); }
.post-author-title { display: block; font-size: 10px; color: var(--text-light); }
.post-featured-image { margin-bottom: 24px; border-radius: var(--radius); overflow: hidden; }

/* Post Navigation */
.post-nav { margin-top: 32px; padding-top: 24px; border-top: 1px solid var(--gray-200); }
.post-nav-links { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.post-nav-link {
    display: block; padding: 16px; border: 1px solid var(--gray-200);
    border-radius: var(--radius); transition: var(--transition);
}
.post-nav-link:hover { background: var(--light); }
.nav-label { display: block; font-size: 11px; color: var(--gray-400); margin-bottom: 4px; }
.nav-title { display: block; font-size: 13px; font-weight: 700; color: var(--navy); line-height: 1.4; }
.post-nav-next { text-align: right; }

/* Pagination */
.pagination { margin-top: 32px; padding-top: 20px; border-top: 1px solid var(--gray-200); text-align: center; }
.pagination .nav-links { display: flex; justify-content: center; gap: 6px; }
.pagination .page-numbers {
    display: inline-flex; align-items: center; justify-content: center;
    min-width: 34px; height: 34px; border: 1px solid var(--gray-300);
    border-radius: 5px; font-size: 13px; color: var(--gray-600);
}
.pagination .page-numbers.current {
    background: var(--navy); color: var(--white); border-color: var(--navy); font-weight: 700;
}
.pagination .prev, .pagination .next { padding: 0 14px; font-weight: 700; color: var(--navy); }

/* ─── SEARCH RESULTS & NO RESULTS ─────────────────────────────────────── */

.search-form { display: flex; gap: 0; max-width: 500px; align-items: stretch; }
.search-form .search-field {
    flex: 3; min-width: 0;
    background: rgba(255,255,255,0.12); border: 2px solid rgba(255,255,255,0.2);
    border-right: none; border-radius: 6px 0 0 6px; color: var(--white);
    padding: 10px 14px; font-size: 14px; font-family: var(--font-sans); box-sizing: border-box;
    margin: 0;
}
.search-form .search-field::placeholder { color: rgba(255,255,255,0.5); }
.search-form .search-submit {
    flex: 1; border-radius: 0 6px 6px 0;
    white-space: nowrap; box-sizing: border-box; margin: 0;
}

/* Search form in sidebar/content areas (dark text variant) */
.sidebar .search-form .search-field,
.no-results .search-form .search-field {
    background: var(--white); color: var(--text-primary);
    border: 1px solid var(--gray-200); border-right: none;
}
.sidebar .search-form .search-field::placeholder,
.no-results .search-form .search-field::placeholder { color: var(--gray-400); }

.no-results {
    text-align: center; padding: 48px 24px;
    background: var(--light); border-radius: var(--radius-lg);
    margin-bottom: 24px;
}
.no-results h2 { font-size: 24px; margin-bottom: 12px; }
.no-results p { font-size: 14px; color: var(--gray-600); margin-bottom: 16px; }
.no-results-suggestions {
    list-style: none; padding: 0; margin: 0 0 24px; text-align: left;
    display: inline-block;
}
.no-results-suggestions li {
    padding: 6px 0; font-size: 14px; color: var(--gray-600);
}
.no-results-suggestions li::before { content: "\2192\00a0"; color: var(--orange-text); }
.no-results-suggestions a { color: var(--navy); font-weight: 700; }
.no-results-cta { margin-top: 24px; }
.no-results-cta p { font-weight: 700; color: var(--navy); margin-bottom: 12px; }
.no-results-cta .btn { margin: 0 6px 8px; }

/* ─── ATTORNEY HERO ────────────────────────────────────────────────────── */

.attorney-hero-grid { display: grid; grid-template-columns: 280px 1fr; gap: 48px; align-items: start; }
.attorney-hero-photo {
    width: 260px; height: 320px; background: linear-gradient(160deg, var(--navy-light), var(--navy-dark));
    border-radius: var(--radius-lg); overflow: hidden;
    border: 1px solid rgba(255,255,255,0.1);
}
.attorney-hero-photo img { width: 100%; height: 100%; object-fit: cover; }
.attorney-profile-links { display: flex; gap: 8px; margin-top: 12px; }
.attorney-hero-title { display: block; color: var(--orange); font-weight: 700; font-size: 16px; margin-bottom: 8px; }
.attorney-hero-office { display: block; color: var(--text-light); font-size: 13px; margin-bottom: 12px; }
.bar-badges { display: flex; gap: 8px; margin-bottom: 20px; flex-wrap: wrap; }
.bar-badge {
    background: rgba(255,255,255,0.15); color: var(--white);
    padding: 4px 12px; border-radius: 3px; font-size: 12px; font-weight: 700;
}
.attorney-hero-bio { margin-bottom: 20px; }
.attorney-hero-bio p { color: #d0d8e8; font-size: 14px; line-height: 1.8; }

/* Credentials */
.credential-section { margin-bottom: 28px; }
.credential-heading {
    font-size: 16px; font-weight: 800; color: var(--navy); margin-bottom: 12px;
    padding-bottom: 8px; border-bottom: 2px solid var(--orange); display: inline-block;
}
.credential-list { list-style: none; padding: 0; margin: 0; }
.credential-list li {
    display: flex; align-items: flex-start; gap: 10px; margin-bottom: 8px;
    font-size: 14px; color: var(--gray-700);
}
.credential-list .check { color: var(--orange-text); flex-shrink: 0; margin-top: 2px; }

/* Jurisdiction badges sidebar */
.jurisdiction-badges { display: flex; gap: 8px; margin-top: 12px; }
.jurisdiction-badge {
    flex: 1; text-align: center; background: var(--navy); color: var(--white);
    padding: 8px; border-radius: 4px; font-weight: 700; font-size: 14px;
}

/* ─── FOOTER ───────────────────────────────────────────────────────────── */

.site-footer { background: var(--navy); color: var(--white); padding: 48px 24px 0; }
.footer-grid {
    display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 32px;
    max-width: var(--container); margin: 0 auto;
}
.footer-brand-name { font-family: var(--font-serif); font-size: 20px; font-weight: 700; margin-bottom: 12px; }
.footer-desc { font-size: 13px; color: var(--text-light); line-height: 1.7; }
.footer-social { display: flex; gap: 8px; margin-top: 16px; }
.social-icon {
    width: 32px; height: 32px; background: rgba(255,255,255,0.1); border-radius: 4px;
    display: flex; align-items: center; justify-content: center; font-size: 12px;
    color: var(--white); transition: var(--transition);
}
.social-icon:hover { background: rgba(255,255,255,0.2); color: var(--white); }
.footer-heading {
    font-weight: 700; font-size: 12px; letter-spacing: 1px;
    text-transform: uppercase; color: var(--orange); margin-bottom: 12px;
}
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 6px; }
.footer-links li a { font-size: 12px; color: var(--text-light); }
.footer-links li a:hover { color: var(--white); }
.footer-office { margin-bottom: 8px; }
.footer-office strong { display: block; font-size: 12px; color: var(--white); }
.footer-office a { font-size: 11px; color: var(--text-light); }

/* Footer CTA */
.footer-cta-text {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
    margin: 0 0 16px;
}
.footer-cta-btn {
    display: inline-block;
    background: var(--orange);
    color: var(--navy);
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 800;
    font-family: 'Merriweather Sans', sans-serif;
    text-decoration: none;
    text-align: center;
    transition: background 0.2s ease;
    width: 100%;
    box-sizing: border-box;
}
.footer-cta-btn:hover {
    background: var(--orange-dark);
    color: var(--navy);
}

.footer-disclaimers {
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 32px; padding: 24px 0 0;
}
.footer-disclaimers p {
    font-size: 11px; color: #7a8aa0; line-height: 1.7; margin-bottom: 12px;
}
.footer-disclaimers p:last-child { margin-bottom: 0; }
.footer-disclaimers strong { color: #aab4c8; }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 24px; padding: 16px 0 24px;
}
.footer-bottom-inner { text-align: center; max-width: var(--container); margin: 0 auto; }
.footer-bottom p { font-size: 11px; color: #7a8aa0; margin-bottom: 8px; }
.footer-disclaimer { font-size: 10px; color: #5a6a80; line-height: 1.6; }
.footer-privacy-link { color: #8ab4d4; text-decoration: none; }
.footer-privacy-link:hover { color: var(--white); text-decoration: underline; }

/* ─── 404 ──────────────────────────────────────────────────────────────── */

.error-links-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; max-width: 600px; margin: 0 auto; }
.error-link-col h3 { font-size: 16px; margin-bottom: 12px; }
.error-link-col ul { list-style: none; padding: 0; }
.error-link-col li { margin-bottom: 6px; }
.error-link-col li a { font-size: 14px; color: var(--navy); }

/* ─── CTA ACTIONS (generic) ────────────────────────────────────────────── */

.cta-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

.cta-bottom { padding: 72px 24px; text-align: center; }
.cta-bottom h2 { color: var(--white); font-size: 28px; margin-bottom: 12px; }
.cta-bottom p { color: var(--text-light); font-size: 15px; margin-bottom: 24px; max-width: 560px; margin-left: auto; margin-right: auto; }
.cta-bottom .hero-ctas { justify-content: center; }

/* ─── LOCATION PAGE — Map Section ──────────────────────────────────────── */

.section-map { padding: 0; }
.section-map iframe { width: 100%; height: 400px; display: block; border: 0; }

.map-nap-bar {
    background: var(--navy); color: var(--white); padding: 20px 24px;
}
.map-nap-inner {
    display: flex; justify-content: space-between; align-items: center;
    flex-wrap: wrap; gap: 16px;
}
.map-nap-address {
    display: flex; flex-direction: column; gap: 4px;
}
.map-nap-address strong { font-size: 16px; }
.map-nap-address span { color: var(--text-light); font-size: 14px; }
.map-nap-actions { display: flex; gap: 10px; }

/* ─── LOCATION PAGE — Why Choose Grid ─────────────────────────────────── */

.why-choose-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}
.why-choose-card {
    background: var(--white); border: 1px solid var(--gray-200);
    border-top: 3px solid var(--orange); border-radius: var(--radius);
    padding: 28px 20px; text-align: center; transition: var(--transition);
}
.why-choose-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.why-choose-card .card-icon { font-size: 28px; margin-bottom: 12px; }
.why-choose-card h3 { font-size: 15px; font-weight: 800; color: var(--navy); margin-bottom: 10px; }
.why-choose-card p { font-size: 13px; color: var(--text-secondary); line-height: 1.6; }

/* ─── LOCATION PAGE — Jurisdiction Cards ──────────────────────────────── */

.jurisdiction-cards {
    display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
}
.local-court-card {
    background: var(--light); border: 1px solid var(--gray-200);
    border-top: 3px solid var(--navy); border-radius: var(--radius); padding: 22px;
}
.local-court-card h3 { font-size: 15px; font-weight: 800; color: var(--navy); margin-bottom: 12px; }
.court-detail { margin-bottom: 8px; }

/* ─── LOCATION PAGE — Communities Grid ────────────────────────────────── */

.communities-grid {
    display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 32px;
}
.community-tag {
    background: var(--white); border: 1px solid var(--gray-200);
    border-radius: 20px; padding: 8px 18px; font-size: 13px; font-weight: 600;
    color: var(--navy); transition: var(--transition);
}
.community-tag:hover { background: var(--navy); color: var(--white); border-color: var(--navy); }

/* ─── LOCATION PAGE — Directions Box ─────────────────────────────────── */

.directions-box {
    background: var(--white); border: 1px solid var(--gray-200);
    border-radius: var(--radius); padding: 28px; text-align: center;
    box-shadow: var(--shadow);
}
.directions-box h3 { font-size: 18px; margin-bottom: 12px; }
.directions-box p { font-size: 14px; color: var(--gray-600); line-height: 1.7; margin-bottom: 16px; }

/* ─── LOCATION PAGE — Local Content ─────────────────────────────────── */

.local-content { margin-top: 16px; }
.local-content p { font-size: 14px; line-height: 1.7; color: var(--text-secondary); margin-bottom: 12px; }

/* ─── LOCATION PAGE — Locations Grid (4-col for "other offices") ──────── */

.locations-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}
.locations-grid .location-card {
    border: 1px solid var(--gray-200); border-top: 4px solid var(--navy);
    border-radius: 10px; padding: 20px 16px; background: var(--white);
}
.locations-grid .location-card h3 { font-size: 16px; margin-bottom: 6px; }
.locations-grid .location-card address {
    font-style: normal; font-size: 12px; color: var(--gray-600); margin-bottom: 8px;
}
.locations-grid .location-phone {
    display: block; font-weight: 700; color: var(--navy); margin-bottom: 8px; font-size: 14px;
}
.locations-grid .location-link {
    font-size: 13px; font-weight: 600; color: var(--orange-text);
}
.locations-grid .location-link:hover { color: var(--navy); }

/* ─── LOCATION PAGE — Section Alt Background ─────────────────────────── */

.section-alt { background: var(--light); }

/* ─── LOCATION PAGE — Badge Bar ───────────────────────────────────────── */

.badge-bar {
    background: var(--navy); padding: 20px 24px;
    border-bottom: 3px solid var(--orange);
}
.badge-bar-inner {
    display: flex; gap: 40px; align-items: center; justify-content: center;
    flex-wrap: wrap; max-width: var(--container); margin: 0 auto;
}
.badge-item { display: flex; align-items: center; }
.badge-item img {
    height: 50px; width: auto; object-fit: contain;
    filter: brightness(0) invert(1); opacity: 0.85;
}
.badge-item img:hover { opacity: 1; }

/* ─── LOCATION PAGE — Hero Stats (match homepage hero) ────────────────── */

.hero-stats {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
    margin: 24px 0;
}
.hero-stat {
    text-align: left; border-left: 3px solid var(--orange); padding-left: 12px;
}
.stat-number {
    display: block; color: var(--orange); font-weight: 900; font-size: 22px;
    font-family: var(--font-serif);
}
.hero-stat .stat-label {
    display: block; color: var(--text-light); font-size: 11px; margin-top: 2px;
}

/* ─── LOCATION PAGE — Hero Description ────────────────────────────────── */

.hero-description {
    color: var(--text-light); font-size: 15px; line-height: 1.75;
    margin-bottom: 24px; max-width: 560px;
}
.hero-description strong { color: var(--white); }

/* ─── LOCATION PAGE — Hero CTAs ───────────────────────────────────────── */

.hero-ctas {
    display: flex; gap: 12px; flex-wrap: wrap;
}
.hero-buttons { display: flex; gap: 12px; flex-wrap: wrap; }

/* ─── LOCATION PAGE — Badge styles ────────────────────────────────────── */

.badge {
    display: inline-block; font-size: 11px; font-weight: 700; color: var(--white);
    padding: 3px 10px; border-radius: 3px; letter-spacing: 1px; margin-bottom: 8px;
}
.badge-ga { background: var(--navy); }
.badge-sc { background: var(--orange); }

/* ─── AUTHOR ATTRIBUTION (roden_author_attribution function) ───────────── */

.author-attribution[itemscope] { margin-top: 32px; }
.attribution-heading {
    font-size: 16px; font-weight: 800; color: var(--navy);
    font-family: var(--font-serif); margin-bottom: 14px;
}
.attribution-inner {
    display: flex; gap: 16px; background: var(--light);
    border: 1px solid var(--gray-200); border-radius: 10px; padding: 20px;
}
.attribution-photo img {
    width: 80px; height: 80px; border-radius: 50%; object-fit: cover;
}
.attribution-bio h4 {
    font-size: 15px; font-weight: 800; margin-bottom: 2px;
}
.attribution-bio h4 a { color: var(--navy); }
.attribution-bio h4 a:hover { color: var(--orange-text); }
.attribution-title {
    display: block; font-size: 12px; color: var(--orange-text);
    font-weight: 600; margin-bottom: 4px;
}
.attribution-bar {
    display: block; font-size: 11px; color: var(--gray-500);
    margin-bottom: 8px;
}
.attribution-excerpt {
    font-size: 13px; color: var(--gray-700); line-height: 1.7; margin: 0 0 8px;
}
.attribution-link {
    font-size: 12px; font-weight: 700; color: var(--navy);
}
.attribution-link:hover { color: var(--orange-text); }

/* ─── FILING DEADLINES SIDEBAR ─────────────────────────────────────────── */

.sidebar-filing-deadlines {
    background: var(--white); border: 1px solid var(--gray-200);
    border-radius: 10px; padding: 18px;
}
.sidebar-filing-deadlines .sidebar-title,
.sidebar-related-pas .sidebar-title,
.sidebar-why-roden .sidebar-title {
    font-weight: 800; color: var(--navy); font-size: 13px;
    margin-bottom: 12px; font-family: var(--font-sans);
}
.deadline-state { margin-bottom: 14px; }
.deadline-state:last-child { margin-bottom: 0; }
.deadline-state h4 {
    font-size: 13px; font-weight: 700; color: var(--navy);
    margin-bottom: 6px;
}
.deadline-state dl { margin: 0; }
.deadline-state dt {
    font-size: 11px; font-weight: 700; color: var(--gray-500);
    text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 2px;
}
.deadline-state dd {
    font-size: 13px; color: var(--gray-700); margin: 0 0 10px;
}
.sidebar-disclaimer {
    font-size: 11px; color: var(--gray-400); margin-top: 12px;
    font-style: italic;
}

/* ─── COMPARATIVE FAULT DISPLAY ────────────────────────────────────────── */

.comparative-fault { margin-top: 24px; }
.comparative-fault .section-subtitle {
    font-size: 16px; font-weight: 800; color: var(--navy);
    margin-bottom: 14px;
}
.fault-grid {
    display: grid; gap: 16px;
}
.fault-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.fault-grid.cols-1 { grid-template-columns: 1fr; }
.fault-card {
    background: var(--light); border: 1px solid var(--gray-200);
    border-radius: 10px; padding: 20px;
}
.fault-card.state-ga { border-left: 4px solid var(--navy); }
.fault-card.state-sc { border-left: 4px solid var(--orange); }
.fault-card h4 {
    font-size: 14px; font-weight: 800; color: var(--navy);
    margin-bottom: 8px;
}
.fault-rule {
    font-size: 13px; color: var(--gray-700); line-height: 1.7;
    margin: 0 0 6px;
}
.fault-cite {
    font-size: 12px; color: var(--gray-500); font-style: italic;
    margin: 0;
}

/* ─── WHY RODEN SIDEBAR (roden_why_roden_sidebar) ──────────────────────── */

.sidebar-why-roden {
    background: var(--navy); border: 1px solid var(--navy);
    border-radius: 10px; padding: 18px; color: var(--white);
}
.sidebar-why-roden .sidebar-title { color: var(--white); }
.trust-signals { list-style: none; padding: 0; margin: 0; }
.trust-signals li {
    padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,0.08);
    font-size: 13px;
}
.trust-signals li:last-child { border-bottom: none; }
.trust-signals li strong {
    display: block; font-size: 14px; color: var(--orange);
    font-weight: 800;
}
.trust-signals li span {
    font-size: 11px; color: rgba(255,255,255,0.7);
}

/* ─── RELATED PRACTICE AREAS SIDEBAR ───────────────────────────────────── */

.sidebar-related-pas {
    background: var(--white); border: 1px solid var(--gray-200);
    border-radius: 10px; padding: 18px;
}
.sidebar-related-pas ul { list-style: none; padding: 0; margin: 0; }
.sidebar-related-pas li { border-bottom: 1px solid var(--gray-100); }
.sidebar-related-pas li:last-child { border-bottom: none; }
.sidebar-related-pas a {
    display: block; padding: 7px 0; font-size: 13px;
    color: var(--navy); text-decoration: none;
}
.sidebar-related-pas a:hover { color: var(--orange-text); }

/* ─── LOCATION MATRIX (roden_location_matrix function) ─────────────────── */

.location-matrix {
    background: var(--light); border-radius: var(--radius-lg);
    padding: 24px; margin-top: 24px;
}
.location-matrix .matrix-title {
    font-size: 15px; font-weight: 800; color: var(--navy);
    margin-bottom: 12px;
}
.location-matrix .matrix-grid {
    display: grid; grid-template-columns: repeat(5, 1fr); gap: 10px;
}
.location-matrix .matrix-card {
    display: flex; flex-direction: column; align-items: center;
    background: var(--white); border: 1px solid var(--gray-200);
    border-radius: 8px; padding: 14px 10px; text-decoration: none;
    text-align: center; transition: border-color 0.2s, box-shadow 0.2s;
}
.location-matrix .matrix-card:hover {
    border-color: var(--orange); box-shadow: var(--shadow-sm);
}
.location-matrix .matrix-state {
    font-size: 10px; font-weight: 700; letter-spacing: 1px;
    padding: 2px 8px; border-radius: 3px; margin-bottom: 6px;
}
.location-matrix .matrix-city {
    font-size: 13px; font-weight: 700; color: var(--navy);
}
.location-matrix .matrix-phone {
    font-size: 11px; color: var(--gray-500); margin-top: 4px;
}

/* ─── CASE RESULT SINGLE PAGE ──────────────────────────────────────────── */

.hero-case-result {
    background: linear-gradient(135deg, var(--navy), #01466a);
    color: var(--white); padding: 48px 24px; text-align: center;
}
.hero-case-result .breadcrumbs { justify-content: center; }
.hero-case-result .breadcrumbs a,
.hero-case-result .breadcrumb-sep { color: rgba(255,255,255,0.6); }
.hero-case-result .breadcrumb-current { color: var(--white); }
.result-type-badge {
    display: inline-block; background: var(--orange);
    color: var(--navy); font-size: 11px; font-weight: 800;
    padding: 4px 14px; border-radius: 3px; letter-spacing: 1px;
    text-transform: uppercase; margin-bottom: 12px;
}
.result-hero-amount {
    display: block; font-size: 48px; font-weight: 900;
    font-family: var(--font-serif); color: var(--white);
    margin-bottom: 8px; line-height: 1.1;
}
.hero-case-result .hero-title {
    font-size: 22px; font-weight: 700; color: rgba(255,255,255,0.9);
    margin: 0;
}
.sidebar-case-result .sidebar-sticky { display: flex; flex-direction: column; gap: 16px; }
.results-disclaimer-box {
    background: var(--light); border: 1px solid var(--gray-200);
    border-radius: 10px; padding: 20px; margin-top: 24px;
}
.results-disclaimer-box h3 {
    font-size: 14px; font-weight: 800; color: var(--navy);
    margin-bottom: 8px;
}
.results-disclaimer-box p {
    font-size: 13px; color: var(--gray-600); line-height: 1.7; margin: 0;
}

/* ─── RESOURCE SINGLE PAGE ─────────────────────────────────────────────── */

.hero-resource {
    background: var(--light); padding: 48px 24px;
    border-bottom: 1px solid var(--gray-200);
}
.sidebar-resource .sidebar-sticky { display: flex; flex-direction: column; gap: 16px; }

/* ─── ARCHIVE ENHANCEMENTS ─────────────────────────────────────────────── */

.hero-case-results-archive {
    background: linear-gradient(135deg, var(--navy), #01466a);
    color: var(--white);
}
.hero-case-results-archive .hero-title { color: var(--white); }
.hero-case-results-archive .hero-subtitle { color: rgba(255,255,255,0.85); }
.hero-case-results-archive .breadcrumbs a,
.hero-case-results-archive .breadcrumb-sep { color: rgba(255,255,255,0.6); }
.hero-case-results-archive .breadcrumb-current { color: var(--white); }

/* ─── MOBILE SUB-MENUS ─────────────────────────────────────────────────── */

/* Prevent body scroll when mobile nav is open */
body.nav-open { overflow: hidden; }

/* Desktop: show sub-menus on keyboard focus */
.menu-item-has-children.sub-hover > ul { display: block; }

.sub-menu {
    display: none; list-style: none; padding: 0; margin: 0;
}
.menu-item-has-children.sub-open > .sub-menu {
    display: block;
}
.sub-menu-toggle {
    background: none; border: none; color: inherit;
    cursor: pointer; padding: 4px 8px; font-size: 14px;
    line-height: 1; transition: transform 0.2s;
}
.sub-menu-toggle.open { transform: rotate(180deg); }

/* ─── RESPONSIVE ───────────────────────────────────────────────────────── */

@media (max-width: 1024px) {
    .why-choose-grid { grid-template-columns: repeat(2, 1fr); }
    .locations-grid { grid-template-columns: repeat(2, 1fr); }
    .jurisdiction-cards { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
    .hero-grid { grid-template-columns: 1fr; }
    .hero-form { margin-top: 24px; } /* Stack below hero text on mobile */
    .content-sidebar-grid { grid-template-columns: 1fr; }
    .sidebar { padding: 24px; }
    .main-content { padding: 24px 0; border-right: none; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .location-cards-grid { grid-template-columns: repeat(2, 1fr); }
    .location-matrix-grid { grid-template-columns: repeat(3, 1fr); }
    .practice-areas-grid.cols-4 { grid-template-columns: repeat(2, 1fr); }
    .stats-bar { grid-template-columns: repeat(3, 1fr); }
    .hero-stats { grid-template-columns: repeat(3, 1fr); }
    .case-results-grid.cols-4 { grid-template-columns: repeat(2, 1fr); }
    .attorneys-grid.cols-4 { grid-template-columns: repeat(2, 1fr); }
    .attorneys-grid.cols-3 { grid-template-columns: repeat(2, 1fr); }
    .attorney-hero-grid { grid-template-columns: 1fr; }
    .attorney-hero-photo { width: 200px; height: 250px; margin: 0 auto; }
    .value-props-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonials-grid { grid-template-columns: 1fr; }
    .sol-grid { grid-template-columns: 1fr; }
    .sub-types-grid { grid-template-columns: 1fr; }
    .law-details-grid { grid-template-columns: 1fr; }
    .blog-grid { grid-template-columns: 1fr; }
    .post-nav-links { grid-template-columns: 1fr; }
    .error-links-grid { grid-template-columns: 1fr; }
    .map-nap-inner { flex-direction: column; text-align: center; }
    .map-nap-actions { justify-content: center; }
    .attribution-inner { flex-direction: column; text-align: center; }
    .attribution-photo { margin: 0 auto; }
    .fault-grid.cols-2 { grid-template-columns: 1fr; }
    .location-matrix .matrix-grid { grid-template-columns: repeat(3, 1fr); }
    .practice-areas-grid.cols-3 { grid-template-columns: repeat(2, 1fr); }
    .result-hero-amount { font-size: 36px; }
}

@media (max-width: 768px) {
    .main-nav { display: none; }
    .header-cta { display: none; }
    .mobile-toggle { display: block; }
    .top-bar { display: none; }
    .hero-title { font-size: 28px; }
    .hero { padding: 48px 16px; }
    .section { padding: 40px 16px; }
    .trust-bar-inner { gap: 16px; }
    .trust-label { display: none; }
    .footer-grid { grid-template-columns: 1fr; }
    .location-cards-grid { grid-template-columns: 1fr; }
    .locations-grid { grid-template-columns: 1fr; }
    .why-choose-grid { grid-template-columns: 1fr; }
    .nap-details { grid-template-columns: 1fr; }
    .nap-actions { flex-direction: column; }
    .badge-bar-inner { gap: 16px; }
    .section-map iframe { height: 320px; }
    .location-matrix .matrix-grid { grid-template-columns: repeat(2, 1fr); }
    .practice-areas-grid.cols-3 { grid-template-columns: 1fr; }
    .result-hero-amount { font-size: 28px; }
}

@media (max-width: 480px) {
    .section-map iframe { height: 280px; }
    .hero-stats { grid-template-columns: 1fr; gap: 12px; }
    .location-matrix .matrix-grid { grid-template-columns: 1fr; }
    /* Stack half-width form fields on small screens */
    .sidebar-contact-form .gform_wrapper ul.gform_fields { grid-template-columns: 1fr; }
    .sidebar-contact-form .gform_wrapper ul.gform_fields li.gf-col-half { grid-column: span 1; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   NEIGHBORHOOD PAGES
   ═══════════════════════════════════════════════════════════════════════════ */

/* ─── Neighborhood Grid (used on parent + sibling pages) ──────────────── */

.roden-neighborhood-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.neighborhood-card {
    background: var(--white, #fff);
    border: 1px solid var(--gray-200, #e0e0e0);
    border-top: 3px solid var(--navy, #013046);
    border-radius: 8px;
    padding: 12px 14px;
    text-decoration: none;
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto;
    gap: 2px 8px;
    align-items: center;
    transition: all 0.2s ease;
}

.neighborhood-card:hover {
    border-top-color: var(--orange, #FCB415);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.neighborhood-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--navy, #013046);
    grid-column: 1;
    grid-row: 1;
}

.neighborhood-pop {
    font-size: 11px;
    color: var(--gray-500, #888);
    grid-column: 1 / -1;
    grid-row: 2;
}

.neighborhood-arrow {
    font-size: 14px;
    color: var(--orange, #FCB415);
    font-weight: 600;
    grid-column: 2;
    grid-row: 1;
}

.neighborhoods-note {
    text-align: center;
    margin-top: 24px;
    font-size: 13px;
    color: var(--gray-500, #888);
    line-height: 1.6;
}

.neighborhoods-note a {
    color: var(--orange, #FCB415);
    font-weight: 700;
    text-decoration: none;
}

.neighborhoods-note a:hover {
    text-decoration: underline;
}

/* ─── Neighborhood Template Sections ──────────────────────────────────── */

.hero-neighborhood .state-badge {
    font-size: 11px;
    letter-spacing: 0.05em;
}

.neighborhood-content {
    max-width: 800px;
}

.neighborhood-roads-content {
    max-width: 800px;
}

/* Hospital Cards */
.neighborhood-hospitals {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 16px;
}

.hospital-card {
    background: var(--white, #fff);
    border: 1px solid var(--gray-200, #e0e0e0);
    border-left: 4px solid var(--green, #27AE60);
    border-radius: 8px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.hospital-name {
    font-size: 16px;
    font-weight: 700;
    color: var(--navy, #013046);
    margin: 0;
}

.hospital-address {
    font-size: 14px;
    color: var(--gray-600, #666);
    line-height: 1.5;
}

.hospital-phone {
    font-size: 14px;
    color: var(--navy, #013046);
    font-weight: 600;
    text-decoration: none;
}

.hospital-phone:hover {
    color: var(--orange, #FCB415);
}

/* ─── Neighborhood Grid Responsive ────────────────────────────────────── */

@media (max-width: 768px) {
    .roden-neighborhood-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 480px) {
    .roden-neighborhood-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .neighborhood-hospitals {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 375px) {
    .roden-neighborhood-grid {
        grid-template-columns: 1fr;
    }
}
