.expert-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    padding: 10px 0 20px;
}

.expert-item {
    width: 166px;
    background: #fff;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); 
    padding: 10px;
}

.expert-item:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);  
    transform: translateY(-5px); 
}

.expert-photo {
    /*background: #f00;*/
    margin-bottom: 10px;
}

.expert-photo img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    max-width: 134px;
    max-height: 178px;
}

.expert-info {
    padding-bottom: 10px;
}

.expert-name {
    font-size: 16px;
    color: #333;
    margin-bottom: 5px;
}

.expert-title {
    color: #666;
    font-size: 14px;
    margin-bottom: 8px;
}

.expert-desc {
    color: #666;
    font-size: 14px;
    line-height: 1.5;
    text-align: left;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.nav-list li.active a {
    color: var(--mainColor);
    font-weight: bold;
}

.nav-list li a:hover {
    color: var(--mainColor);
}
