/* Publications page specific styles */

.navigation {
    margin-bottom: 2em;
}

.navigation a {
    font-family: 'DM Mono', monospace;
    font-size: 1.1em;
    text-decoration: none;
    color: #888;
    transition: color 0.3s ease;
}

.navigation a:hover {
    color: white;
}

.publications-container {
    margin-top: 2em;
}

.publication {
    margin-bottom: 3em;
    padding: 2em;
    border: 1px solid #333;
    border-radius: 1em;
    background: rgba(255, 255, 255, 0.02);
    transition: all 0.3s ease;
}

.publication:hover {
    border-color: #555;
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-2px);
}

.publication-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1em;
}

.publication-title {
    font-size: 1.4em;
    font-weight: 400;
    margin: 0;
    color: white;
    flex: 1;
}

.publication-year {
    font-family: 'DM Mono', monospace;
    font-size: 1.1em;
    color: #888;
    margin-left: 1em;
    white-space: nowrap;
}

.publication-authors {
    font-family: 'DM Mono', monospace;
    font-size: 1.1em;
    color: #ccc;
    margin-bottom: 0.5em;
}

.publication-venue {
    font-family: 'DM Mono', monospace;
    font-size: 1em;
    color: #888;
    font-style: italic;
    margin-bottom: 1em;
}

.publication-links {
    margin-bottom: 1em;
}

.publication-link {
    display: inline-block;
    font-family: 'DM Mono', monospace;
    font-size: 0.9em;
    color: #888;
    text-decoration: none;
    margin-right: 1.5em;
    padding: 0.3em 0.8em;
    border: 1px solid #333;
    border-radius: 0.5em;
    transition: all 0.3s ease;
}

.publication-link:hover {
    color: white;
    border-color: #555;
    background: rgba(255, 255, 255, 0.1);
}

.publication-abstract {
    font-family: 'DM Mono', monospace;
    font-size: 1em;
    line-height: 1.6em;
    color: #ccc;
    margin-top: 1em;
    padding-top: 1em;
    border-top: 1px solid #333;
}

.publications-note {
    margin-top: 3em;
    padding: 2em;
    border: 1px solid #333;
    border-radius: 1em;
    background: rgba(255, 255, 255, 0.02);
    text-align: center;
}

.publications-note p {
    margin: 0;
    color: #888;
}

.publications-note a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.publications-note a:hover {
    color: white;
}

/* Responsive design */
@media (max-width: 768px) {
    .publication-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .publication-year {
        margin-left: 0;
        margin-top: 0.5em;
    }
    
    .publication-link {
        display: block;
        margin-bottom: 0.5em;
        margin-right: 0;
    }
} 