/* --- Grundlayout --- */
.worker-profile {
    max-width: 1100px;
    margin: 40px auto;
    padding: 20px;
    font-family: Arial, sans-serif;
    color: #222;
}

/* --- Header: Avatar + Name + Gewerke --- */
.worker-header {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 30px;
    align-items: center;
    margin-bottom: 40px;
}

/* --- Avatar --- */
.worker-avatar img {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #e5e5e5;
}

.avatar-placeholder {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: #ddd url('https://cdn-icons-png.flaticon.com/512/847/847969.png') center/60% no-repeat;
    border: 4px solid #e5e5e5;
}

/* --- Name --- */
.worker-name {
    font-size: 32px;
    font-weight: 700;
    margin: 0 0 10px;
}

/* --- Gewerke Badge --- */
.worker-badge {
    display: inline-block;
    background: #005bbb;
    color: #fff;
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
}

/* --- Status --- */
.worker-status {
    font-size: 14px;
    font-weight: 600;
    color: #444;
    margin-bottom: 10px;
}

/* --- Standort --- */
.worker-location {
    font-size: 16px;
    color: #555;
}

/* --- Kontaktbox --- */
.worker-contact-box {
    background: #f7f9fc;
    border: 1px solid #e3e7ef;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 40px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.worker-contact-box p {
    margin: 6px 0;
    font-size: 16px;
}

/* --- Sektionen --- */
.worker-section {
    margin-bottom: 40px;
}

.worker-section h2 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #222;
}

.worker-section p {
    font-size: 16px;
    line-height: 1.6;
}
