@import "/css/public-7b3882c692b83def71b51c549f3f4343.css";
.page-content{
    padding: 80px 40px;
}
.about-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: flex-start;
}

.about-intro-text h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a1a2e;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.about-intro-text h3 a{
    font-size:14px;
    color: var(--color-hover);
}

.about-intro-text p {
    font-size: 15px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 16px;
}

.about-intro-img {
    height: 300px;
    background: linear-gradient(135deg,#667eea,#764ba2);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 80px;
    color: white;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.team-member {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: all 0.3s;
}

.team-member:hover {
    transform: translateY(-6px);
}

.team-avatar {
    height: 200px;
    background: linear-gradient(135deg,#667eea,#764ba2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    color: white;
}

.team-info {
    padding: 24px;
    text-align: center;
}

.team-name {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 6px;
}

.team-position {
    font-size: 14px;
    color: #888;
}

.honor-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.honor-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: inherit;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}
.honor-item:hover {
    transform: translateY(-6px);
}

.honor-icon {
    font-size: 48px;
    margin-bottom: 16px;
}
.honor-cover {
    width: 100%;
    height: 200px;
    margin-bottom: 18px;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border: none;
    padding: 10px;
    box-sizing: border-box;
}
.honor-cover::after {
    content: "";
    position: absolute;
    left: 8%;
    right: 8%;
    bottom: 8px;
    height: 8px;
    background: radial-gradient(ellipse 50% 100% at 50% 100%, rgba(0,0,0,0.15) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(3px);
    pointer-events: none;
}
.honor-cover img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}

.honor-title {
    font-size: 15px;
    font-weight: 500;
    color: #1a1a2e;
    line-height: 1.5;
    max-width: 84%;
}
.section-header{
    margin-bottom:30px;

}
.section-header .section-subtitle{
    display: flex; justify-content: space-between;
    align-items: center;
}
.section-header .section-subtitle a{
    color: var(--color-hover);
    font-size:14px;
}

@media (max-width: 1000px) {
    .honor-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 600px) {
    .team-grid, .honor-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .page-content { padding: 40px 16px; }
    .about-intro { gap: 30px; }
    .about-intro-text h3 { font-size: 22px; }
    .about-intro-text p { font-size: 14px; }
    .about-intro-img { height: 200px; font-size: 48px; }
    .team-grid { gap: 16px; }
    .honor-grid { gap: 16px; }
    .team-avatar { height: 150px; font-size: 40px; }
    .team-info { padding: 16px; }
    .team-name { font-size: 16px; }
    .honor-cover { height: 170px; padding: 8px; }
    .honor-icon { font-size: 36px; }
    .honor-title { font-size: 14px; }
}
