.page-title {
    color: #cd6129;
    font-size: 2.5rem;
    font-weight: 600;
    text-align: left;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 1rem;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 0.5px;
}

.page-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 3%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, #cd6129, #5c8c64);
    border-radius: 2px;
}

.research-card {
    border: none;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    height: 100%;
}

.research-card:hover {
    transform: translateY(-5px);
}

.research-card:hover .institution-badge {
    background: rgb(109, 62, 47);
}

.research-card .card-body {
    padding: 2rem;
}

.institution-badge {
    background: rgb(129, 82, 67);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    display: inline-block;
    margin-bottom: 1rem;
    transition: all 0.2s ease;
}

.research-title {
    color: #1c1c1c;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.research-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
}

.highlight-term {
    color: #cd6129;
    font-weight: 500;
    border-bottom: 1px dashed #cd6129;
    padding-bottom: 1px;
}

.research-links {
    margin-top: 0;
    padding-top: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.research-links a {
    color: #3a241c;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
}

.research-links a:hover {
    color: #5c8c64;
    text-decoration: underline;
}

.research-links a i {
    font-size: 1.1rem;
} 