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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
    background-color: #ffffff !important;
    color: #020818 !important;
    line-height: 1.5 !important;
}

/* Layout utilities */
.min-h-screen {
    min-height: 100vh;
}

.bg-background {
    background-color: #ffffff;
}

.flex {
    display: flex;
}

.flex-col {
    flex-direction: column;
}

.flex-grow {
    flex-grow: 1;
}

/* Mobile-first responsive design - 2025 best practices */

/* Base mobile styles (default) */
.container {
    width: 100%;
    padding-left: 1rem;
    padding-right: 1rem;
    margin-left: auto;
    margin-right: auto;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.max-w-7xl {
    max-width: 80rem;
}

/* Navigation styles removed - now using common.css component system */

/* Mobile grid - single column by default */
.grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

/* Mobile card optimizations - reduced height */
.card {
    background: #ffffff !important;
    border: 1px solid #e5e7eb !important;
    border-radius: 0.5rem !important;
    overflow: hidden !important;
    transition: box-shadow 0.2s !important;
    max-width: 100% !important;
}

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

.card-header {
    position: relative;
}

.card-content {
    padding: 0.75rem;
}

.card-content img {
    width: 100%;
    height: auto;
    display: block;
}

.card-content h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.125rem;
    color: #111827;
}

.card-content p {
    font-size: 0.75rem;
    color: #6b7280;
    margin-bottom: 0.125rem;
}

/* Footer styles removed - now using common.css component system */

/* Latest News list */
.news-list {
    display: flex;
    flex-direction: column;
    border-top: 1px solid #e5e7eb;
}

.news-item {
    padding: 1rem 0;
    border-bottom: 1px solid #e5e7eb;
}

.news-meta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.25rem;
}

.news-type-badge {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #ca8a04;
    border: 1px solid #ca8a04;
    border-radius: 999px;
    padding: 0.1rem 0.6rem;
}

.news-date {
    font-size: 0.8rem;
    color: #6b7280;
}

.news-title {
    font-size: 1rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 0.2rem;
}

.news-title a:hover {
    text-decoration: underline;
}

.news-blurb {
    font-size: 0.875rem;
    color: #4b5563;
}

.news-links {
    font-size: 0.8rem;
    margin-top: 0.35rem;
    color: #6b7280;
}

.news-links a {
    color: #8D1D34;
    text-decoration: none;
}

.news-links a:hover {
    text-decoration: underline;
}

/* Typography utilities */
.text-center {
    text-align: center;
}

.text-2xl {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 2rem;
}

.text-sm {
    font-size: 0.875rem;
    line-height: 1.25rem;
}

.text-[2rem] {
    font-size: 2rem;
    line-height: 2.5rem;
}

.tracking-[1em] {
    letter-spacing: 1em;
}

.font-light {
    font-weight: 300;
}

.font-bold {
    font-weight: 700;
}

/* Spacing utilities - minimal vertical spacing */
.py-8 {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.px-4 {
    padding-left: 1rem;
    padding-right: 1rem;
}

.p-0 {
    padding: 0;
}

.p-4 {
    padding: 1rem;
}

.p-3 {
    padding: 0.75rem;
}

.mb-12 {
    margin-bottom: 0.5rem;
}

.mb-16 {
    margin-bottom: 1rem;
}

.mb-8 {
    margin-bottom: 0.5rem;
}

.mb-4 {
    margin-bottom: 1rem;
}

.mb-1 {
    margin-bottom: 0.25rem;
}

.mt-auto {
    margin-top: auto;
}

.gap-8 {
    gap: 2rem;
}

.gap-6 {
    gap: 1.5rem;
}

.gap-1 {
    gap: 0.25rem;
}

/* Color utilities */
.text-gray-300 {
    color: #d1d5db;
}

.text-gray-500 {
    color: #6b7280;
}

.text-gray-600 {
    color: #4b5563;
}

.text-blue-600 {
    color: #2563eb;
}

.text-gray-900 {
    color: #111827;
}

.bg-red-600 {
    background-color: #dc2626;
}

.bg-green-600 {
    background-color: #16a34a;
}

.bg-blue-600 {
    background-color: #2563eb;
}

.bg-yellow-600 {
    background-color: #ca8a04;
}

.bg-gray-600 {
    background-color: #4b5563;
}

/* Link styles */
a {
    text-decoration: none;
    color: inherit;
}

a:hover {
    text-decoration: none;
}

.overflow-hidden {
    overflow: hidden;
}

.w-full {
    width: 100%;
}

.h-auto {
    height: auto;
}

.items-center {
    align-items: center;
}

.justify-center {
    justify-content: center;
}

.justify-between {
    justify-content: space-between;
}

.relative {
    position: relative;
}

.absolute {
    position: absolute;
}

.bottom-0 {
    bottom: 0;
}

.left-0 {
    left: 0;
}

.hover\:text-gray-900:hover {
    color: #111827;
}

.hover\:underline:hover {
    text-decoration: underline;
}

/* SVG styles */
svg {
    width: 1.25rem;
    height: 1.25rem;
    fill: currentColor;
}

/* Tablet breakpoint (768px+) */
@media (min-width: 768px) {
    .container {
        padding-left: 2rem;
        padding-right: 2rem;
    }
    
    /* Navigation styles removed - using common.css */
    
    .grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .card-content {
        padding: 1rem;
    }
    
    .text-[2rem] {
        font-size: 2.5rem;
        line-height: 3rem;
    }
    
    .text-2xl {
        font-size: 1.875rem;
        line-height: 2.25rem;
    }
    
    .py-8 {
        padding-top: 1rem;
        padding-bottom: 1rem;
    }
    
    .mb-12 {
        margin-bottom: 1rem;
    }
    
    .mb-8 {
        margin-bottom: 0.75rem;
    }
    
    /* Footer styles removed - using common.css */
}

/* Desktop breakpoint (1024px+) */
@media (min-width: 1024px) {
    .container {
        padding-left: 3rem;
        padding-right: 3rem;
    }
    
    .grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
    }
    
    .py-8 {
        padding-top: 1.5rem;
        padding-bottom: 1.5rem;
    }
    
    .mb-12 {
        margin-bottom: 1.5rem;
    }
    
    .mb-8 {
        margin-bottom: 1rem;
    }
} 