/* General and Navigation Styles */
html {
    scroll-behavior: smooth;
}

.nav-link.active {
    color: #2563eb;
    border-bottom: 2px solid #2563eb;
}

.section-heading {
    border-bottom: 2px solid #2563eb;
    padding-bottom: .5rem;
    margin-bottom: 2rem;
    display: inline-block;
}

.bio-link:hover {
    text-decoration: underline;
}

/* News Page Styles */
.news-item {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e5e7eb;
    margin-bottom: 1rem;
}

.news-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.news-date {
    font-weight: bold;
    color: #2563eb;
    min-width: 100px;
    flex-shrink: 0;
    margin-right: 0.5rem;
}

.news-content {
    color: #4b5563;
    flex-grow: 1;
}

.news-content strong {
    color: #1a202c;
}

/* Publications Page Styles */
.publication-category-heading {
    border-bottom: 2px solid #2563eb;
    padding-bottom: 0.5rem;
    margin-bottom: 2rem;
    display: inline-block;
}

.publication-authors {
    color: #374151;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.publication-venue {
    color: #6b7280;
    font-style: italic;
}

.publication-link:hover {
    text-decoration: underline;
}

/* Research Page Styles */
.research-emphasis {
    color: #1d4ed8;
    font-weight: 600;
}