/* Profile Section - Left photo, Right info aligned */
.home-profile-container {
    margin-bottom: 2rem;
}

.home-profile {
    max-width: 100%;
}

.profile-header {
    display: flex;
    align-items: center; /* Vertically align photo and info */
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.profile-img {
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    object-fit: cover;
}

.profile-info {
    flex: 1;
}

.profile-name {
    font-size: 2rem;
    font-weight: 700;
    margin: 0 0 0.5rem 0;
    line-height: 1.2;
}

.profile-bio {
    font-size: 1rem;
    margin: 0.3rem 0;
    line-height: 1.5;
}

.profile-bio a {
    color: #0064c8; /* 北航蓝 - BUAA Blue */
    text-decoration: none;
    font-weight: 500;
}

.profile-bio a:hover {
    text-decoration: underline;
    color: #0055a8;
}

.profile-intro-text {
    margin-top: 1rem;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .profile-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .profile-name {
        font-size: 1.5rem;
    }

    .profile-bio {
        font-size: 0.95rem;
    }
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
    .profile-intro-text {
        color: #bbb;
    }
}

[data-theme='dark'] .profile-intro-text {
    color: #bbb;
}

[data-theme='light'] .profile-intro-text {
    color: #333;
}

/* Visitor Map Section - Smaller fonts */
.home-visitor-map {
    margin-top: 2rem;
}

.visitor-desc {
    font-size: 0.85rem;
    color: #666;
    margin: 0.5rem 0;
    line-height: 1.4;
}

.visitor-stats {
    font-size: 0.85rem;
    color: #666;
    margin: 0.5rem 0;
    line-height: 1.4;
}

.visitor-desc span,
.visitor-stats span {
    color: #333;
}

/* Dark mode for visitor map */
@media (prefers-color-scheme: dark) {
    .visitor-desc,
    .visitor-stats {
        color: #999;
    }

    .visitor-desc span,
    .visitor-stats span {
        color: #ddd;
    }
}

[data-theme='dark'] .visitor-desc,
[data-theme='dark'] .visitor-stats {
    color: #999;
}

[data-theme='dark'] .visitor-desc span,
[data-theme='dark'] .visitor-stats span {
    color: #ddd;
}

/* About Us Section */
.home-about {
    margin: 1.5rem 0;
    max-width: 900px;
}

.home-about h5 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #333;
}

.home-about p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #555;
    margin: 0;
}

@media (prefers-color-scheme: dark) {
    .home-about h5 {
        color: #eee;
    }
    .home-about p {
        color: #aaa;
    }
}

[data-theme='dark'] .home-about h5 {
    color: #eee;
}

[data-theme='dark'] .home-about p {
    color: #aaa;
}

/* Alumni Section - font size matches Master Students name (h4 = 16px) */
#alumni-list table,
#alumni-list table td,
#alumni-list table th {
    font-size: 14px !important;
    line-height: 1.5;
}

#alumni-list th {
    font-size: 14px !important;
}

#alumni-more table,
#alumni-more table td,
#alumni-more table th {
    font-size: 14px !important;
    line-height: 1.5;
}

#alumni-more details summary {
    font-size: 14px;
    cursor: pointer;
    color: #555;
}

#alumni-more details summary:hover {
    color: #0064c8;
}

@media (max-width: 768px) {
    #alumni-more table,
    #alumni-more table td,
    #alumni-more table th {
        font-size: 14px !important;
    }
}
