/* Styling für die Hero-Detailseite */
.hero-profile-detail {
    max-width: 800px;
    margin: 2rem auto;
    padding: 2rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    background: #fff;
}

.hero-profile-detail .hero-header {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid #eee;
    padding-bottom: 2rem;
}

.hero-profile-detail .hero-photo-container img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
}

.hero-profile-detail .entry-title {
    margin: 0;
}

.hero-profile-detail .hero-area-subtitle {
    font-size: 1.2em;
    color: #666;
    margin-top: 0.5rem;
}

.hero-profile-detail .entry-content h2 {
    margin-top: 2rem;
}