.mac-jurisdictions-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

/* Crawler-friendly hierarchical headings */
.jurisdictions-header h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.directory-meta {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

/* Alpha navigation for UX + crawl depth reduction */
.alpha-scroll {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin: 2rem 0;
    padding: 1rem;
    background: #f5f5f5;
    border-radius: 8px;
    position: sticky;
    top: 0;
    z-index: 10;
}

.alpha-link {
    display: inline-flex;
    width: 32px;
    height: 32px;
    align-items: center;
    justify-content: center;
    background: white;
    border: 1px solid #ddd;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.2s;
}

.alpha-link:hover {
    background: #0073aa;
    color: white;
    border-color: #0073aa;
}

/* State Grid - Semantic HTML for crawlers */
.states-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.state-card {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 1.5rem;
    background: white;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.state-header {
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 1rem;
    margin-bottom: 1rem;
}

.state-name {
    font-size: 1.4rem;
    margin: 0 0 0.5rem 0;
}

.state-name a {
    color: #1a1a1a;
    text-decoration: none;
}

.state-name a:hover {
    color: #0073aa;
}

.state-abbr {
    color: #666;
    font-size: 0.9em;
    font-weight: 400;
}

.state-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
}

.city-count {
    background: #e8f4f8;
    color: #0073aa;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-weight: 600;
}

/* City Lists - Deep linking structure */
.city-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.5rem;
}

.city-item {
    display: flex;
}

.city-link {
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding: 0.5rem;
    text-decoration: none;
    color: #333;
    border-radius: 4px;
    transition: background 0.2s;
}

.city-link:hover {
    background: #f5f5f5;
}

.city-name {
    font-weight: 500;
}

.case-count {
    color: #666;
    font-size: 0.85rem;
}

.more-cities-link {
    display: block;
    text-align: center;
    padding: 0.75rem;
    margin-top: 0.5rem;
    color: #0073aa;
    text-decoration: none;
    font-weight: 500;
    border-top: 1px dashed #e0e0e0;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    border: 0;
}