/* Research Page Specific Styles */

.research-section {
    padding: 60px 0;
    min-height: 100vh;
}

.page-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 40px;
    color: #1a1a1a;
}

/* Research Interests */
.research-interests {
    margin-bottom: 60px;
}

.research-interests h2 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #333;
}

.research-description {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #555;
    max-width: 900px;
}

/* Publications Section */
.publications-section {
    margin-bottom: 60px;
}

.publications-section h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: #1a1a1a;
    border-bottom: 3px solid #4a90e2;
    padding-bottom: 10px;
}

.publications-list {
    list-style: disc;
    padding-left: 20px;
}

.publication-item {
    margin-bottom: 25px;
    padding-left: 0;
    list-style-type: disc;
    margin-left: 20px;
}

/* Title row with icons */
.pub-title-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.pub-title {
    display: inline;
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.4;
}

.pub-icons {
    display: flex;
    gap: 6px;
    flex-shrink: 0;
    align-items: center;
}

.pub-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    text-decoration: none;
    transition: all 0.3s ease;
    opacity: 0.7;
}

.pub-icon:hover {
    opacity: 1;
    transform: translateY(-2px);
}

.pub-icon svg {
    width: 18px;
    height: 18px;
}

.icon-img {
    width: 18px;
    height: 18px;
    object-fit: contain;
}

.pub-authors {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 8px;
    line-height: 1.6;
}

.pub-authors strong {
    color: #1a1a1a;
}

.pub-authors a {
    color: #4a90e2;
    text-decoration: none;
}

.pub-authors a:hover {
    text-decoration: underline;
}

.pub-venue {
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
    margin-bottom: 8px;
}

.pub-award {
    font-size: 0.9rem;
    color: #e74c3c;
    font-weight: 600;
    margin-top: 8px;
}

/* Responsive */
@media (max-width: 768px) {
    .page-title {
        font-size: 2rem;
    }
    
    .publications-section h2 {
        font-size: 1.5rem;
    }
    
    .publication-item {
        padding: 20px;
    }
    
    .pub-title-row {
        flex-direction: column;
        gap: 8px;
    }
    
    .pub-icons {
        align-self: flex-start;
    }
}
