/* Journal Articles Page Styles */

.publication-banner-image {
    width: 100%;
    margin-bottom: 30px;
}

.publication-banner-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    object-position: center;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    display: block;
}

/* Scholar Link Styling */
.scholar-link-container {
    margin-bottom: 30px;
}

.scholar-btn {
    display: inline-block;
    padding: 10px 20px;
    border: 2px solid #1abc9c;
    color: #1abc9c;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
}

.scholar-btn:hover {
    background-color: #1abc9c;
    color: white;
}

/* Sort Instruction Text */
.sort-instruction {
    margin-bottom: 20px;
}

.sort-instruction h3 {
    font-size: 1.5rem;
    color: #888;
    font-weight: 700;
}

/* Scoped to the projects content to allow bold, green links similar to biography */
.projects-content a{
    color: #1a62af;
    font-weight: 700;
    transition: color 0.3s ease;
    text-decoration: underline;
}

.projects-content u {
    text-decoration: underline;
    font-weight: 600;
    font-style: italic;
    color: #0f790f;

}

.projects-content a:hover {
    color: #67d467; /* Match biography hover lighter green */
    cursor: pointer;
}
