:root {
    --silver-50: #f8fafc;
    --silver-100: #f1f5f9;
    --silver-200: #e2e8f0;
    --silver-300: #cbd5e1;
    --silver-400: #94a3b8;
    --silver-500: #64748b;
    --silver-600: #475569;
    --silver-900: #0f172a;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: var(--silver-900);
    line-height: 1.6;
}

/* Elegant Headings */
h1,
h2,
h3,
h4 {
    color: var(--silver-900);
    letter-spacing: -0.02em;
}

/* Modernized News Recap */
.silver-news-recap {
    max-width: 900px;
    margin: 3rem auto;
    padding: 0 1rem;
}

.news-item {
    background: linear-gradient(to bottom right, #ffffff, var(--silver-50));
    border: 1px solid var(--silver-200);
    margin-bottom: 2rem;
    padding: 2rem;
    border-radius: 1.5rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.news-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
}

.news-item h3 {
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 800;
}

/* Refined Verification Tag */
.verification {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    color: #059669;
    /* emerald-600 */
    background: #ecfdf5;
    /* emerald-50 */
    padding: 0.25rem 0.75rem;
    margin-top: 1.5rem;
    border: 1px solid #d1fae5;
    line-height: 1.4;
}

.verification strong {
    display: inline !important;
}

.verification::before {
    content: "✓";
    font-weight: 900;
    margin-right: 0.5rem;
}

/* Smooth Transitions for all interactive elements */
a,
button {
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Serif font for specialized content */
.font-serif {
    font-family: Georgia, Cambria, "Times New Roman", Times, serif;
}