.team-section {
    position: relative;
    width: 1306px;
    margin: 0 auto;
    padding: 0;
    background: #FFFFFF;
    min-height: calc(100vh - 255px);
    padding-top: 60px;
}

.expert-list {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0px;
    gap: 178px;
    width: 100%;
    margin-top: 85px;
}

.expert-card {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    padding: 20px 0px;
    gap: 150px;
    width: 1437px;
    height: auto;
    flex: none;
    order: 1;
    flex-grow: 0;
    margin-bottom: 233px;
}

.expert-photo {
    width: 395px;
    height: 390px;
    flex: none;
    order: 0;
    flex-grow: 0;
}

.expert-photo::after {
    content: none;
}

.expert-photo img {
    width: 100%;
    height: 100%;
}

.expert-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0px;
    gap: 50px;
    width: 892px;
    height: auto;
    flex: none;
    order: 1;
    flex-grow: 0;
}

.expert-name-title {
    height: auto;
    font-family: 'Microsoft JhengHei UI';
    font-style: normal;
    font-weight: 400;
    font-size: 36px;
    line-height: 160%;
    color: #333333;
    flex: none;
    order: 0;
    flex-grow: 0;
    margin: 0;
}

.expert-description {
    width: 892px;
    height: auto;
    font-family: 'Microsoft JhengHei UI';
    font-style: normal;
    font-weight: 400;
    font-size: 24px;
    line-height: 150%;
    /* or 36px */
    color: #999999;
    flex: none;
    order: 1;
    align-self: stretch;
    flex-grow: 0;
}

.expert-description p {
    margin-bottom: 15px;
}

.expert-card.small-text .expert-description {
    font-size: 16px;
}

.page-title {
    font-size: 36px;
    color: #044799;
    text-align: center;
    margin: 20px 0 40px;
    font-weight: bold;
    position: relative;
}

.page-title::after {
    content: "";
    display: block;
    width: 80px;
    height: 4px;
    background-color: #044799;
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

/* Ê¦×Ê¶ÓÎéÒÆ¶¯¶ËÊÊÅä */
@media screen and (max-width: 768px) {
    .team-section {
        width: 100%;
        padding: 20px 15px;
        min-height: auto;
    }
    
    .expert-card {
        flex-direction: column;
        gap: 20px;
        width: 100%;
        margin-bottom: 50px;
        align-items: center;
    }
    
    .expert-photo {
        width: 197.5px;
        height: 195px;
    }
    
    .expert-info {
        width: 100%;
        gap: 15px;
    }
    
    .expert-name-title {
        font-size: 20px;
        line-height: 140%;
        text-align: center;
        width: 100%;
    }
    
    .expert-description {
        width: 100%;
        font-size: 14px;
        line-height: 160%;
    }
    
    .expert-description p {
        margin-bottom: 10px;
        text-indent: 28px;
    }
}

@media screen and (max-width: 375px) {
    .expert-photo {
        width: 131.67px;
        height: 130px;
    }
    
    .expert-name-title {
        font-size: 18px;
    }
    
    .expert-description {
        font-size: 13px;
    }
}
