/* styles.css */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght=300;400;500;600;700&display=swap');

body {
    font-family: 'Inter', sans-serif;
    background-color: #f8fafc; /* Slate 50 */
}

/* Custom scrollbars and transition timings */
.smooth-hover {
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Article body links - prominent company hyperlinks */
.article-body a {
    color: #059669;
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-thickness: 1px;
    transition: color 0.15s ease;
}
.article-body a:hover {
    color: #047857;
    text-decoration-thickness: 2px;
}
