/* Research Section - Google Scholar Style */
.research-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.research-item-gs {
    background: white;
    border-radius: 15px;
    padding: 1.8rem 2rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    transition: all 0.3s ease;
    border-left: 5px solid transparent;
}

.research-item-gs:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
    border-left-color: #3498db;
}

.research-profile-gs {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 3px solid #eee;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.research-profile-gs img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.research-details-gs {
    flex-grow: 1;
}

.research-title-gs {
    font-size: 1.25rem;
    font-weight: 600;
    color: #3498db;
    text-decoration: none;
    line-height: 1.4;
    margin-bottom: 0.5rem;
    display: block;
    transition: color 0.3s ease;
}

.research-title-gs:hover {
    color: #2980b9;
}

.research-authors-gs {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 0.3rem;
}

.research-journal-gs {
    font-size: 0.9rem;
    color: #777;
    margin-bottom: 1rem;
}

.research-stats-gs {
    display: flex;
    gap: 1.5rem;
    font-size: 0.85rem;
    color: #888;
}

.research-stats-gs span {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.research-stats-gs i {
    color: #9b59b6;
}

.view-publication-gs {
    background: linear-gradient(45deg, #2ecc71, #27ae60);
    color: white;
    padding: 0.7rem 1.2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-left: auto;
    flex-shrink: 0;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(46, 204, 113, 0.3);
}

.view-publication-gs:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(46, 204, 113, 0.4);
    background: linear-gradient(45deg, #27ae60, #229954);
}

/* Remove old research grid styles if they interfere */
.research-grid {
    display: none;
}