/* ============================================================
   律师简介页 (profile.html)
   ============================================================ */

.profile-page {
    max-width: 820px;
    margin: 0 auto;
    padding: 0 24px 60px;
}

/* Hero 头部 - 深蓝背景，与 header 衔接 */
.profile-hero {
    text-align: center;
    padding: 56px 32px 48px;
    margin: 0 -24px 40px;
    background: linear-gradient(135deg, #1a365d 0%, #2c5282 100%);
    color: #fff;
}

.profile-name {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 12px;
    letter-spacing: 2px;
    line-height: 1.3;
    text-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

.profile-title {
    font-size: 16px;
    color: rgba(255,255,255,0.85);
    margin: 0 0 18px;
    line-height: 1.6;
}

.profile-tagline {
    font-size: 15px;
    color: rgba(255,255,255,0.75);
    line-height: 1.8;
    max-width: 560px;
    margin: 0 auto;
}

/* 内容板块 */
.profile-section {
    margin-bottom: 32px;
    padding-bottom: 28px;
    border-bottom: 1px solid #e2e8f0;
    line-height: 1.8;
}

.profile-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.profile-section-title {
    font-size: 20px;
    font-weight: 700;
    color: #1a202c;
    margin: 0 0 16px;
    padding-left: 14px;
    border-left: 4px solid #2b6cb0;
    line-height: 1.4;
}

.profile-section h3 {
    font-size: 16px;
    font-weight: 600;
    color: #2d3748;
    margin: 22px 0 10px;
    line-height: 1.5;
}

.profile-section h3:first-child {
    margin-top: 0;
}

.profile-section ul {
    padding-left: 20px;
    margin: 0 0 14px;
    list-style: disc;
}

.profile-section li {
    font-size: 15px;
    line-height: 1.9;
    color: #2d3748;
    margin-bottom: 6px;
}

.profile-section p {
    font-size: 15px;
    line-height: 1.9;
    color: #2d3748;
    margin: 0 0 14px;
}

.profile-section a {
    color: #2b6cb0;
    text-decoration: none;
}

.profile-section a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .profile-page {
        padding: 0 16px 40px;
    }
    .profile-hero {
        padding: 36px 20px 32px;
        margin: 0 -16px 32px;
    }
    .profile-name {
        font-size: 26px;
    }
    .profile-section-title {
        font-size: 18px;
    }
}