/* Custom styles for Daily News Briefing */
:root {
    --primary: #0d6efd;
    --secondary: #6c757d;
    --success: #198754;
    --info: #0dcaf0;
    --warning: #ffc107;
    --danger: #dc3545;
    --light: #f8f9fa;
    --dark: #212529;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fefefe;
}

.navbar {
    box-shadow: 0 2px 4px rgba(0,0,0,.1);
}

.card {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border-radius: 12px;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0,0,0,.1) !important;
}

.card-header {
    border-bottom: none;
    font-weight: 600;
}

.news-content {
    font-size: 0.95rem;
    color: #444;
}

.news-content p {
    margin-bottom: 1rem;
}

.news-content p:last-child {
    margin-bottom: 0;
}

footer {
    border-top: 1px solid rgba(255,255,255,.1);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .display-4 {
        font-size: 2.5rem;
    }
    .card {
        margin-bottom: 1.5rem;
    }
}