/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.5;
    color: #1a1a1a;
    background-color: #ffffff;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 1rem;
}

/* Hero Section */
.hero {
    position: relative;
    background-color: #111827;
    color: white;
    text-align: center;
    padding: 6rem 1rem;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background-image: url('https://images.unsplash.com/photo-1589829545856-d10d557cf95f');
    background-size: cover;
    background-position: center;
    opacity: 0.2;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 48rem;
    margin: 0 auto;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.hero p {
    font-size: 1.25rem;
    color: #d1d5db;
}

/* Section Title */
.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    background: linear-gradient(to right, #1f2937, #4b5563);
    -webkit-background-clip: text;
    color: transparent;
}

/* Lawsuit Grid */
.lawsuit-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .lawsuit-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Lawsuit Card */
.lawsuit-card {
    background: white;
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
}

.lawsuit-card:hover {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Card Image */
.card-image {
    position: relative;
    height: 12rem;
}

.card-image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent);
}

/* Card Header */
.card-header {
    padding: 1.5rem 1.5rem 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.card-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111827;
}

/* Status Badge */
.status-badge {
    background-color: #f3f4f6;
    color: #4b5563;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
}

/* Card Content */
.card-content {
    padding: 0 1.5rem 1.5rem;
}

.description {
    color: #4b5563;
    margin-bottom: 1rem;
}

.key-info h4 {
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #374151;
}

.key-info p {
    font-size: 0.875rem;
    color: #6b7280;
}

/* Responsive Typography */
@media (max-width: 640px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.125rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .card-header h3 {
        font-size: 1.25rem;
    }
}

/* Add these new styles */
.lawsuit-card a {
    text-decoration: none;
    color: inherit;
    display: block;
}

.lawsuit-card .card-header h3 {
    text-decoration: underline;
} 