/* Research page specific styles */
.research-detail {
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem;
}

.research-detail h1 {
    text-align: center;
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 3rem;
}

.research-card {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.research-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.research-header {
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
}

.research-card h2 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 0.3rem;
}

.research-card .status {
    font-size: 1.1rem;
    color: #374151;
    font-weight: 600;
    margin-bottom: 0;
}

.research-card .duration {
    font-size: 1rem;
    color: #666;
    font-style: italic;
    margin-bottom: 0.2rem;
}

.research-card .project-type {
    font-size: 0.9rem;
    color: #888;
}

.research-objectives {
    margin-bottom: 1.5rem;
}

.research-objectives h3 {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 1rem;
    font-weight: 600;
}

.research-objectives ul {
    list-style: none;
    padding: 0;
}

.research-objectives li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.8rem;
    line-height: 1.6;
    color: #555;
}

.research-objectives li:before {
    content: "▸";
    position: absolute;
    left: 0;
    color: #374151;
    font-weight: bold;
}

.project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tag {
    display: inline-block;
    background: #f3f4f6;
    color: #374151;
    padding: 0.4rem 0.9rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid #d1d5db;
    transition: background-color 0.2s ease, transform 0.1s ease;
}

.tag:hover {
    background: #e5e7eb;
    transform: translateY(-1px);
}

.title-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.title-left {
    flex: 1;
}

.title-right {
    text-align: right;
    flex-shrink: 0;
    margin-left: 2rem;
}

/* Responsive design */
@media (max-width: 768px) {
    .research-detail {
        padding: 1rem;
    }
    
    .research-card {
        padding: 1.5rem;
    }
    
    .title-row {
        flex-direction: column;
        gap: 1rem;
    }
    
    .title-right {
        text-align: left;
        margin-left: 0;
    }
    
    .project-tags {
        justify-content: flex-start;
    }
} 