:root {
    --northernlawyer-primary: #0066ff;
    --northernlawyer-primary-dark: #0052cc;
    --northernlawyer-primary-light: #3385ff;
    --northernlawyer-secondary: #00d4aa;
    --northernlawyer-accent: #ff6b35;
    --northernlawyer-success: #00c851;
    --northernlawyer-warning: #ffbb33;
    --northernlawyer-error: #ff4444;
    
    --northernlawyer-neutral-0: #ffffff;
    --northernlawyer-neutral-50: #fafbfc;
    --northernlawyer-neutral-100: #f4f6f8;
    --northernlawyer-neutral-200: #e8ecf0;
    --northernlawyer-neutral-300: #d1d9e0;
    --northernlawyer-neutral-400: #8a9ba8;
    --northernlawyer-neutral-500: #5c6b73;
    --northernlawyer-neutral-600: #3d4852;
    --northernlawyer-neutral-700: #2c3e50;
    --northernlawyer-neutral-800: #1a252f;
    --northernlawyer-neutral-900: #0d1117;
    
    --northernlawyer-gradient-primary: linear-gradient(135deg, #0066ff 0%, #0052cc 100%);
    --northernlawyer-gradient-secondary: linear-gradient(135deg, #00d4aa 0%, #00b894 100%);
    --northernlawyer-gradient-accent: linear-gradient(135deg, #ff6b35 0%, #e55a2b 100%);
    --northernlawyer-gradient-hero: linear-gradient(135deg, #0d1117 0%, #1a252f 50%, #2c3e50 100%);
    --northernlawyer-gradient-card: linear-gradient(135deg, #ffffff 0%, #fafbfc 100%);
    
    --northernlawyer-shadow-xs: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --northernlawyer-shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    --northernlawyer-shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --northernlawyer-shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --northernlawyer-shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --northernlawyer-shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    
    --northernlawyer-radius-sm: 6px;
    --northernlawyer-radius-md: 8px;
    --northernlawyer-radius-lg: 12px;
    --northernlawyer-radius-xl: 16px;
    --northernlawyer-radius-2xl: 24px;
    
    --northernlawyer-spacing-xs: 0.25rem;
    --northernlawyer-spacing-sm: 0.5rem;
    --northernlawyer-spacing-md: 1rem;
    --northernlawyer-spacing-lg: 1.5rem;
    --northernlawyer-spacing-xl: 2rem;
    --northernlawyer-spacing-2xl: 3rem;
    --northernlawyer-spacing-3xl: 4rem;
    --northernlawyer-spacing-4xl: 6rem;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--northernlawyer-neutral-700);
    background: var(--northernlawyer-neutral-0);
    overflow-x: hidden;
}

.northernlawyer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--northernlawyer-spacing-lg);
}

.northernlawyer-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--northernlawyer-neutral-200);
}

.northernlawyer-nav {
    padding: var(--northernlawyer-spacing-md) 0;
}

.northernlawyer-nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--northernlawyer-spacing-lg);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.northernlawyer-logo {
    display: flex;
    align-items: center;
    gap: var(--northernlawyer-spacing-lg);
}

.northernlawyer-logo-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--northernlawyer-gradient-primary);
    border-radius: var(--northernlawyer-radius-lg);
    color: white;
    flex-shrink: 0;
    box-shadow: var(--northernlawyer-shadow-md);
    position: relative;
    overflow: hidden;
}

.northernlawyer-logo-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: iconShine 3s infinite;
}

.northernlawyer-logo-icon svg {
    position: relative;
    z-index: 1;
}

.northernlawyer-logo-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.northernlawyer-logo-text {
    font-size: 16px;
    font-weight: 700;
    color: var(--northernlawyer-primary);
    letter-spacing: -0.3px;
    line-height: 1.2;
    margin-bottom: 2px;
}

.northernlawyer-logo-subtitle {
    font-size: 0.75rem;
    color: var(--northernlawyer-neutral-600);
    font-weight: 500;
    letter-spacing: -0.3px;
    line-height: 1.2;
}

.northernlawyer-nav-menu {
    display: flex;
    list-style: none;
    gap: var(--northernlawyer-spacing-2xl);
}

.northernlawyer-nav-link {
    text-decoration: none;
    color: var(--northernlawyer-neutral-600);
    font-weight: 500;
    font-size: 15px;
    transition: all 0.3s ease;
    position: relative;
}

.northernlawyer-nav-link:hover,
.northernlawyer-nav-link.active {
    color: var(--northernlawyer-primary);
}

.northernlawyer-nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--northernlawyer-gradient-primary);
    transition: width 0.3s ease;
}

.northernlawyer-nav-link:hover::after,
.northernlawyer-nav-link.active::after {
    width: 100%;
}

.northernlawyer-nav-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}

.northernlawyer-nav-bar {
    width: 24px;
    height: 2px;
    background: var(--northernlawyer-neutral-600);
    transition: all 0.3s ease;
}

.northernlawyer-hero {
    background: var(--northernlawyer-gradient-hero);
    color: var(--northernlawyer-neutral-0);
    padding: 140px var(--northernlawyer-spacing-xl) 100px;
    position: relative;
    overflow: hidden;
}

.northernlawyer-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.northernlawyer-hero-grid {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(0, 102, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 102, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
}

.northernlawyer-hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(0, 102, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(0, 212, 170, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 40% 40%, rgba(255, 107, 53, 0.1) 0%, transparent 50%);
}

.northernlawyer-hero-geometric-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.northernlawyer-shape {
    position: absolute;
    border-radius: 50%;
    background: var(--northernlawyer-gradient-primary);
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

.northernlawyer-shape-1 {
    width: 80px;
    height: 80px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.northernlawyer-shape-2 {
    width: 120px;
    height: 120px;
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.northernlawyer-shape-3 {
    width: 60px;
    height: 60px;
    bottom: 30%;
    left: 20%;
    animation-delay: 4s;
}

.northernlawyer-hero-container {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    z-index: 2;
}

.northernlawyer-hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 0 var(--northernlawyer-spacing-lg);
}

.northernlawyer-breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--northernlawyer-spacing-sm);
    margin-bottom: var(--northernlawyer-spacing-xl);
    font-size: 14px;
}

.northernlawyer-breadcrumb-link {
    color: var(--northernlawyer-neutral-300);
    text-decoration: none;
    transition: color 0.3s ease;
}

.northernlawyer-breadcrumb-link:hover {
    color: var(--northernlawyer-primary);
}

.northernlawyer-breadcrumb-separator {
    color: var(--northernlawyer-neutral-400);
}

.northernlawyer-breadcrumb-current {
    color: var(--northernlawyer-primary-light);
    font-weight: 600;
}

.northernlawyer-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--northernlawyer-spacing-sm);
    padding: var(--northernlawyer-spacing-sm) var(--northernlawyer-spacing-lg);
    background: rgba(0, 102, 255, 0.1);
    border: 1px solid rgba(0, 102, 255, 0.2);
    border-radius: 50px;
    margin-bottom: var(--northernlawyer-spacing-xl);
    position: relative;
    overflow: hidden;
}

.northernlawyer-hero-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: shimmer 2s infinite;
}

.northernlawyer-hero-badge-icon {
    color: var(--northernlawyer-primary-light);
    animation: pulse 2s infinite;
}

.northernlawyer-hero-badge-text {
    font-size: 14px;
    font-weight: 500;
    color: var(--northernlawyer-primary-light);
    letter-spacing: 0.5px;
}

.northernlawyer-hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: var(--northernlawyer-spacing-xl);
    letter-spacing: -0.02em;
    color: var(--northernlawyer-neutral-0);
}

.northernlawyer-hero-title-line {
    display: block;
    position: relative;
    margin-bottom: var(--northernlawyer-spacing-md);
}

.northernlawyer-hero-title-text {
    position: relative;
    z-index: 2;
}

.northernlawyer-hero-title-underline {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--northernlawyer-primary), var(--northernlawyer-secondary));
    border-radius: 2px;
    opacity: 0.3;
    animation: underlineExpand 2s ease-out;
    z-index: 1;
}

.northernlawyer-hero-title-accent {
    background: linear-gradient(135deg, #00d4aa 0%, #00b894 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.northernlawyer-hero-title-highlight {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(120deg, transparent 0%, rgba(0, 102, 255, 0.1) 50%, transparent 100%);
    border-radius: 8px;
    animation: highlightPulse 3s ease-in-out infinite;
    z-index: 1;
}

.northernlawyer-hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.7;
    margin-bottom: var(--northernlawyer-spacing-2xl);
    opacity: 0.9;
    color: var(--northernlawyer-neutral-300);
}

.northernlawyer-news-content {
    padding: var(--northernlawyer-spacing-5xl) 0;
    background: var(--northernlawyer-neutral-0);
}

.northernlawyer-news-filters {
    display: flex;
    gap: var(--northernlawyer-spacing-xl);
    margin-bottom: var(--northernlawyer-spacing-3xl);
    padding: var(--northernlawyer-spacing-xl);
    background: var(--northernlawyer-neutral-50);
    border: 1px solid var(--northernlawyer-neutral-200);
    border-radius: var(--northernlawyer-radius-xl);
}

.northernlawyer-news-filter-group {
    display: flex;
    flex-direction: column;
    gap: var(--northernlawyer-spacing-sm);
}

.northernlawyer-filter-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--northernlawyer-neutral-700);
}

.northernlawyer-filter-select {
    padding: var(--northernlawyer-spacing-sm) var(--northernlawyer-spacing-md);
    border: 2px solid var(--northernlawyer-neutral-200);
    border-radius: var(--northernlawyer-radius-md);
    font-size: 14px;
    background: var(--northernlawyer-neutral-0);
    color: var(--northernlawyer-neutral-700);
    transition: all 0.3s ease;
    min-width: 150px;
}

.northernlawyer-filter-select:focus {
    outline: none;
    border-color: var(--northernlawyer-primary);
    box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.1);
}

.northernlawyer-news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--northernlawyer-spacing-xl);
    margin-bottom: var(--northernlawyer-spacing-4xl);
}

.northernlawyer-news-card {
    background: var(--northernlawyer-neutral-0);
    border: 1px solid var(--northernlawyer-neutral-200);
    border-radius: var(--northernlawyer-radius-xl);
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.northernlawyer-news-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--northernlawyer-shadow-xl);
    border-color: var(--northernlawyer-primary);
}

.northernlawyer-news-featured {
    grid-column: span 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.northernlawyer-news-card-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.northernlawyer-news-featured .northernlawyer-news-card-image {
    height: 100%;
}

.northernlawyer-news-placeholder {
    width: 100%;
    height: 100%;
    background: var(--northernlawyer-gradient-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--northernlawyer-neutral-400);
    font-size: 48px;
}

.northernlawyer-news-badge {
    position: absolute;
    top: var(--northernlawyer-spacing-md);
    left: var(--northernlawyer-spacing-md);
    display: flex;
    align-items: center;
    gap: var(--northernlawyer-spacing-xs);
    padding: var(--northernlawyer-spacing-xs) var(--northernlawyer-spacing-sm);
    border-radius: var(--northernlawyer-radius-sm);
    font-size: 12px;
    font-weight: 600;
    color: white;
}

.northernlawyer-news-badge-featured {
    background: var(--northernlawyer-gradient-accent);
}

.northernlawyer-news-badge-award {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.northernlawyer-news-badge-partnership {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.northernlawyer-news-card-content {
    padding: var(--northernlawyer-spacing-xl);
}

.northernlawyer-news-meta {
    display: flex;
    align-items: center;
    gap: var(--northernlawyer-spacing-md);
    margin-bottom: var(--northernlawyer-spacing-md);
}

.northernlawyer-news-category {
    padding: var(--northernlawyer-spacing-xs) var(--northernlawyer-spacing-sm);
    border-radius: var(--northernlawyer-radius-sm);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.northernlawyer-news-category-business {
    background: rgba(0, 102, 255, 0.1);
    color: var(--northernlawyer-primary);
}

.northernlawyer-news-category-investment {
    background: rgba(124, 58, 237, 0.1);
    color: var(--northernlawyer-secondary);
}

.northernlawyer-news-category-partnership {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
}

.northernlawyer-news-category-award {
    background: rgba(245, 158, 11, 0.1);
    color: #f59e0b;
}

.northernlawyer-news-date {
    color: var(--northernlawyer-neutral-500);
    font-size: 14px;
}

.northernlawyer-news-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--northernlawyer-neutral-900);
    margin-bottom: var(--northernlawyer-spacing-md);
    line-height: 1.4;
}

.northernlawyer-news-featured .northernlawyer-news-title {
    font-size: 1.5rem;
}

.northernlawyer-news-excerpt {
    color: var(--northernlawyer-neutral-600);
    line-height: 1.6;
    margin-bottom: var(--northernlawyer-spacing-lg);
}

.northernlawyer-news-tags {
    display: flex;
    flex-wrap: wrap;
    gap: var(--northernlawyer-spacing-sm);
    margin-bottom: var(--northernlawyer-spacing-lg);
}

.northernlawyer-news-tag {
    padding: var(--northernlawyer-spacing-xs) var(--northernlawyer-spacing-sm);
    background: var(--northernlawyer-neutral-100);
    color: var(--northernlawyer-neutral-600);
    border-radius: var(--northernlawyer-radius-sm);
    font-size: 12px;
    font-weight: 500;
}

.northernlawyer-news-read-more {
    display: inline-flex;
    align-items: center;
    gap: var(--northernlawyer-spacing-sm);
    color: var(--northernlawyer-primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.northernlawyer-news-read-more:hover {
    gap: var(--northernlawyer-spacing-md);
    color: var(--northernlawyer-primary-dark);
}


.northernlawyer-newsletter {
    padding: var(--northernlawyer-spacing-4xl) 0;
    background: var(--northernlawyer-gradient-bg);
}

.northernlawyer-newsletter-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.northernlawyer-newsletter-text {
    margin-bottom: var(--northernlawyer-spacing-2xl);
}

.northernlawyer-newsletter-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--northernlawyer-neutral-900);
    margin-bottom: var(--northernlawyer-spacing-md);
}

.northernlawyer-newsletter-description {
    color: var(--northernlawyer-neutral-600);
    font-size: 1.125rem;
}

.northernlawyer-newsletter-form {
    display: flex;
    flex-direction: column;
    gap: var(--northernlawyer-spacing-lg);
}

.northernlawyer-newsletter-input-group {
    display: flex;
    gap: var(--northernlawyer-spacing-md);
    background: var(--northernlawyer-neutral-0);
    border: 2px solid var(--northernlawyer-neutral-200);
    border-radius: var(--northernlawyer-radius-lg);
    padding: var(--northernlawyer-spacing-sm);
    transition: all 0.3s ease;
}

.northernlawyer-newsletter-input-group:focus-within {
    border-color: var(--northernlawyer-primary);
    box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.1);
}

.northernlawyer-newsletter-input {
    flex: 1;
    border: none;
    outline: none;
    padding: var(--northernlawyer-spacing-md);
    font-size: 16px;
    background: transparent;
    color: var(--northernlawyer-neutral-700);
}

.northernlawyer-newsletter-input::placeholder {
    color: var(--northernlawyer-neutral-400);
}

.northernlawyer-newsletter-submit {
    display: flex;
    align-items: center;
    gap: var(--northernlawyer-spacing-sm);
    background: var(--northernlawyer-gradient-primary);
    color: white;
    border: none;
    padding: var(--northernlawyer-spacing-md) var(--northernlawyer-spacing-xl);
    border-radius: var(--northernlawyer-radius-md);
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.northernlawyer-newsletter-submit::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.northernlawyer-newsletter-submit:hover::before {
    left: 100%;
}

.northernlawyer-newsletter-submit:hover {
    transform: translateY(-2px);
    box-shadow: var(--northernlawyer-shadow-lg);
}

.northernlawyer-footer {
    background: var(--northernlawyer-neutral-900);
    color: var(--northernlawyer-neutral-300);
    padding: var(--northernlawyer-spacing-4xl) 0 var(--northernlawyer-spacing-xl);
}

.northernlawyer-footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: var(--northernlawyer-spacing-3xl);
    margin-bottom: var(--northernlawyer-spacing-3xl);
}

.northernlawyer-footer-section h4 {
    color: var(--northernlawyer-neutral-0);
    margin-bottom: var(--northernlawyer-spacing-lg);
    font-size: 1.125rem;
    font-weight: 700;
}

.northernlawyer-footer-links {
    list-style: none;
}

.northernlawyer-footer-links li {
    margin-bottom: var(--northernlawyer-spacing-sm);
}

.northernlawyer-footer-links a {
    color: var(--northernlawyer-neutral-400);
    text-decoration: none;
    transition: color 0.3s ease;
}

.northernlawyer-footer-links a:hover {
    color: var(--northernlawyer-neutral-0);
}

.northernlawyer-footer-contact p {
    margin-bottom: var(--northernlawyer-spacing-sm);
    line-height: 1.6;
}

.northernlawyer-footer-description {
    line-height: 1.6;
    color: var(--northernlawyer-neutral-400);
}

.northernlawyer-footer .northernlawyer-logo-icon {
    background: var(--northernlawyer-gradient-secondary);
}

.northernlawyer-footer .northernlawyer-logo-text {
    color: var(--northernlawyer-neutral-0);
}

.northernlawyer-footer .northernlawyer-logo-subtitle {
    color: var(--northernlawyer-neutral-0);
}

.northernlawyer-footer-bottom {
    border-top: 1px solid var(--northernlawyer-neutral-700);
    padding-top: var(--northernlawyer-spacing-xl);
    text-align: center;
    color: var(--northernlawyer-neutral-500);
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

@keyframes iconShine {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes underlineExpand {
    0% { width: 0; }
    100% { width: 100%; }
}

@keyframes highlightPulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

@media (max-width: 768px) {
    .northernlawyer-nav-menu {
        display: none;
    }
    
    .northernlawyer-nav-toggle {
        display: flex;
    }
    
    .northernlawyer-logo-text {
        font-size: 14px;
    }
    
    .northernlawyer-logo-subtitle {
        font-size: 14px;
    }
    
    .northernlawyer-hero-content {
        padding: 0 var(--northernlawyer-spacing-md);
    }
    
    .northernlawyer-news-filters {
        flex-direction: column;
        gap: var(--northernlawyer-spacing-lg);
    }
    
    .northernlawyer-news-grid {
        grid-template-columns: 1fr;
    }
    
    .northernlawyer-news-featured {
        grid-column: span 1;
        grid-template-columns: 1fr;
    }
    
    .northernlawyer-news-featured .northernlawyer-news-card-image {
        height: 200px;
    }
    
    .northernlawyer-newsletter-input-group {
        flex-direction: column;
    }
    
    .northernlawyer-footer-content {
        grid-template-columns: 1fr;
        gap: var(--northernlawyer-spacing-xl);
    }
    
}
