/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 1rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #2563eb;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero .container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    max-width: 800px;
}

.institution-logo {
    margin-bottom: 2rem;
}

.logo {
    height: 60px;
    width: auto;
}

.paper-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 2rem;
    color: #1e293b;
}

.authors a {
    color: inherit;           /* Keep the same color as surrounding text */
    text-decoration: none;    /* Remove underline */
    transition: color 0.3s;
}

.authors a:hover {
    color: #0066cc;          /* Blue on hover */
    text-decoration: underline;
}

.authors {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #475569;
}

.author {
    margin-right: 0.5rem;
}

.affiliation {
    font-size: 1rem;
    color: #64748b;
    margin-bottom: 2rem;
    font-weight: 500;
}

.paper-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: #2563eb;
    color: white;
}

.btn-primary:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
}

.btn-secondary {
    background: white;
    color: #374151;
    border: 2px solid #e5e7eb;
}

.btn-secondary:hover {
    border-color: #2563eb;
    color: #2563eb;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.teaser-image {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Sections */
.section {
    padding: 80px 0;
}

.section h2 {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 3rem;
    text-align: center;
    color: #1e293b;
}

.bg-light {
    background-color: #f8fafc;
}

/* Abstract Section */
.abstract-content {
    max-width: 900px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
}

.abstract-content p {
    margin-bottom: 1.5rem;
    text-align: justify;
}

.abstract-content strong {
    color: #2563eb;
    font-weight: 600;
}

/* Results Section */
.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.result-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    border: 1px solid #e5e7eb;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.result-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.result-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 0.5rem;
}

.result-description {
    font-size: 0.95rem;
    color: #64748b;
    font-weight: 500;
}

.figures-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.figure-container {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    border: 1px solid #e5e7eb;
    align-items: center;
    display: flex;
    flex-direction: column;
}

.figure-image {
    /* center the image */
    align-self: center;
    display: flex;
    width: 80%;
    height: auto;
    display: block;
}

.figure-caption {
    padding: 1.5rem;
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.6;
}

/* Dataset Section */
.dataset-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-bottom: 3rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: #64748b;
    font-weight: 500;
}

.dataset-description {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.7;
    color: #475569;
}

.dataset-figures {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

/* Method Section */
.method-content {
    max-width: 900px;
    margin: 0 auto;
}

.method-overview {
    text-align: center;
    margin-bottom: 4rem;
}

.method-overview h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1rem;
}

.method-overview p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #475569;
}

.method-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    border: 1px solid #e5e7eb;
}

.step-number {
    background: #2563eb;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.step-content p {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.6;
}



.author-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    border: 1px solid #e5e7eb;
    transition: transform 0.3s ease;
}

.author-card:hover {
    transform: translateY(-2px);
}

.author-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.author-affiliation {
    font-size: 0.9rem;
    color: #64748b;
}

/* Citation Section */
.citation-content {
    max-width: 800px;
    margin: 0 auto;
}

.citation-intro {
    text-align: center;
    margin-bottom: 2rem;
}

.citation-intro p {
    font-size: 1.1rem;
    color: #64748b;
}

.citation-box {
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 3rem;
}

.citation-box pre {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    line-height: 1.6;
    overflow-x: auto;
    margin-bottom: 1.5rem;
    color: #374151;
}

.citation-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.citation-formats {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 2rem;
}

.citation-formats h3 {
    margin-bottom: 1.5rem;
    color: #1e293b;
    text-align: center;
}

.format-tabs {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid #e5e7eb;
}

.format-tab {
    padding: 0.75rem 1.5rem;
    background: none;
    border: none;
    color: #64748b;
    cursor: pointer;
    font-weight: 500;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.format-tab:hover {
    color: #2563eb;
}

.format-tab.active {
    color: #2563eb;
    border-bottom-color: #2563eb;
}

.format-content {
    position: relative;
}

.format-text {
    display: none;
}

.format-text.active {
    display: block;
}

.format-text pre {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    line-height: 1.6;
    overflow-x: auto;
    color: #374151;
}

.format-text p {
    font-size: 1rem;
    line-height: 1.8;
    color: #374151;
    text-align: justify;
}

#copy-success {
    position: fixed;
    top: 100px;
    right: 2rem;
    background: #059669;
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.3s ease;
}

#copy-success.show {
    opacity: 1;
    transform: translateX(0);
}

/* Resources Section */
.resources-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.resource-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    border: 1px solid #e5e7eb;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.resource-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.resource-icon {
    font-size: 2.5rem;
    color: #2563eb;
    margin-bottom: 1rem;
}

.resource-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1rem;
}

.resource-card p {
    font-size: 0.95rem;
    color: #64748b;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.resource-link {
    display: inline-block;
    padding: 10px 20px;
    background: #2563eb;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    transition: background 0.3s ease;
}

.resource-link:hover {
    background: #1d4ed8;
}

/* Footer */
.footer {
    background: #1e293b;
    color: white;
    padding: 3rem 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-text p {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: #cbd5e1;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: #cbd5e1;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar {
        padding: 0.75rem 0;
    }

    .nav-links {
        gap: 1rem;
        overflow-x: auto;
        padding: 0 1rem;
    }

    .nav-links a {
        font-size: 0.9rem;
        white-space: nowrap;
    }

    .hero {
        padding: 100px 0 60px;
        min-height: auto;
    }

    .hero .container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .paper-title {
        font-size: 2rem;
    }

    .section {
        padding: 60px 0;
    }

    .section h2 {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }

    .results-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1.5rem;
    }

    .figures-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .dataset-figures {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .dataset-stats {
        gap: 2rem;
        flex-wrap: wrap;
    }

    .method-steps {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .authors-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

    .resources-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

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

    .highlights-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .baseline-categories {
        grid-template-columns: 1fr;
    }

    .question-types {
        grid-template-columns: 1fr;
    }

    .training-specs {
        grid-template-columns: 1fr;
    }

    .transfer-results {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .quality-indicators {
        grid-template-columns: 1fr;
    }

    .capabilities-grid {
        grid-template-columns: 1fr;
    }

    .citation-actions {
        flex-direction: column;
        align-items: center;
    }

    .format-tabs {
        flex-wrap: wrap;
        gap: 0.25rem;
    }

    .format-tab {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
}

/* Tablet adjustments */
@media (max-width: 1024px) {
    .highlights-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .resources-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .paper-title {
        font-size: 1.75rem;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

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

    .result-number {
        font-size: 2rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .highlights-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .resources-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .footer {
        display: none;
    }

    .hero {
        padding: 2rem 0;
        background: white;
        min-height: auto;
    }

    .section {
        padding: 2rem 0;
        break-inside: avoid;
    }

    .figure-container,
    .result-card,
    .resource-card,
    .author-card {
        break-inside: avoid;
        box-shadow: none;
        border: 1px solid #ddd;
    }
}

/* Performance Optimizations */
.figures-grid img,
.teaser-image {
    content-visibility: auto;
    contain-intrinsic-size: 400px 300px;
}

/* Highlights Section */
.highlights-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.highlight-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    border: 1px solid #e5e7eb;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.highlight-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.highlight-icon {
    font-size: 2.5rem;
    color: #2563eb;
    margin-bottom: 1rem;
}

.highlight-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1rem;
}

.highlight-card p {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Experiments Section */
.experiments-content {
    max-width: 1000px;
    margin: 0 auto;
}

.experiment-section {
    margin-bottom: 4rem;
}

.experiment-section h3 {
    font-size: 1.5rem;
    color: #1e293b;
    margin-bottom: 1rem;
}

.baseline-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.baseline-category {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
}

.baseline-category h4 {
    font-size: 1.1rem;
    color: #2563eb;
    margin-bottom: 1rem;
    border-bottom: 1px solid #e5e7eb;
    padding-bottom: 0.5rem;
}

.baseline-category ul {
    list-style: none;
    padding: 0;
}

.baseline-category li {
    padding: 0.3rem 0;
    font-size: 0.9rem;
    color: #374151;
}

.performance-breakdown {
    margin-bottom: 3rem;
}

.question-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.question-type {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
}

.question-type h4 {
    color: #1e293b;
    margin-bottom: 1rem;
}

.performance-comparison {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.model-perf {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem;
    background: #f8fafc;
    border-radius: 4px;
}

.perf-score {
    font-weight: 600;
    color: #2563eb;
}

.improvement {
    color: #059669;
    font-weight: 600;
    font-size: 0.9rem;
    text-align: center;
    margin-top: 0.5rem;
}

.training-details {
    margin-top: 3rem;
}

.training-specs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.training-spec {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
}

.training-spec h4 {
    color: #1e293b;
    margin-bottom: 1rem;
}

.training-spec ul {
    list-style: none;
    padding: 0;
}

.training-spec li {
    padding: 0.3rem 0;
    color: #374151;
    font-size: 0.9rem;
}

/* Transfer Learning Section */
.transfer-content {
    max-width: 900px;
    margin: 0 auto;
}

.transfer-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.transfer-intro h3 {
    font-size: 1.5rem;
    color: #1e293b;
    margin-bottom: 1rem;
}

.transfer-results {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.benchmark-results {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.benchmark-result {
    background: white;
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.benchmark-name {
    font-weight: 600;
    color: #1e293b;
    min-width: 120px;
}

.benchmark-scores {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.base-score {
    color: #6b7280;
}

.arrow {
    color: #2563eb;
    font-weight: 600;
}

.final-score {
    color: #1e293b;
    font-weight: 600;
}

.improvement {
    color: #059669;
    font-weight: 600;
    font-size: 0.85rem;
}

.transfer-analysis {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
}

.transfer-analysis h4 {
    color: #1e293b;
    margin-bottom: 1rem;
}

.transfer-analysis ul {
    list-style: none;
    padding: 0;
}

.transfer-analysis li {
    padding: 0.5rem 0;
    color: #374151;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Qualitative Analysis */
.qualitative-content {
    max-width: 1000px;
    margin: 0 auto;
}

.analysis-overview {
    text-align: center;
    margin-bottom: 3rem;
}

.analysis-overview h3 {
    font-size: 1.5rem;
    color: #1e293b;
    margin-bottom: 1rem;
}

.quality-indicators {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.quality-metric {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    border: 1px solid #e5e7eb;
}

.metric-stat {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 1rem;
}

.metric-desc {
    color: #64748b;
    font-size: 0.9rem;
    line-height: 1.5;
}

.capabilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.capability {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
}

.capability h4 {
    color: #1e293b;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.capability p {
    color: #64748b;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Smooth animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content,
.hero-visual {
    animation: fadeIn 0.8s ease-out;
}

/* Focus styles for accessibility */
.btn:focus,
.nav-links a:focus,
.resource-link:focus {
    outline: 2px solid #2563eb;
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .btn-secondary {
        border-width: 3px;
    }

    .result-card,
    .figure-container,
    .author-card,
    .resource-card,
    .step {
        border-width: 2px;
    }
}

/* Authors Section Styling */
.authors {
    margin: 1.5rem 0;
    text-align: left;
    font-size: 1.1rem;
    color: #333;
    line-height: 1.8;
}

.authors-label {
    font-weight: 500;
    margin-right: 0.5rem;
}

.authors-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: inline;
}

.author-item {
    display: inline;
}

.author-link {
    color: #2563eb;
    text-decoration: none;
    transition: color 0.2s ease;
}

.author-link:hover {
    color: #1e40af;
    text-decoration: underline;
}

.author-link:focus {
    outline: 2px solid #2563eb;
    outline-offset: 2px;
    border-radius: 2px;
}

.author-name {
    color: #4b5563;
}

.author-separator {
    margin: 0 0.25rem;
    color: #9ca3af;
}

.author-item:last-child .author-separator {
    display: none;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .authors {
        font-size: 1rem;
        line-height: 2;
    }
    
    .authors-list {
        display: block;
        margin-top: 0.5rem;
    }
    
    .author-item {
        display: inline-block;
        margin: 0.25rem 0;
    }
}

/* Dark mode support (if needed) */
@media (prefers-color-scheme: dark) {
    .authors {
        color: #d1d5db;
    }
    
    .author-link {
        color: #60a5fa;
    }
    
    .author-link:hover {
        color: #93bbfc;
    }
    
    .author-name {
        color: #d1d5db;
    }
    
    .author-separator {
        color: #6b7280;
    }
}

/* Integration with existing hero section */
.hero-content .authors {
    margin-top: 1rem;
    margin-bottom: 0.75rem;
}

/* Ensure consistent font with Inter as used in the page */
.authors {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

/* Animation for subtle entrance effect */
.authors-list {
    animation: fadeIn 0.6s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}