/* ================================================================
   Profile Widget
   ================================================================ */

.profile-widget {
    display: flex;
    flex-direction: column;
    gap: 32px;
    max-width: 600px;
    width: 100%;
    justify-self: center;
}

/* ── Avatar ─────────────────────────────────────────────────────── */

.profile-widget .profile-avatar {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.profile-widget .profile-avatar img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.profile-widget .profile-avatar h2 {
    font-size: 22px;
    font-weight: 600;
    margin: 0;
    color: #222;
}

/* ── Fields ─────────────────────────────────────────────────────── */

.profile-widget .profile-fields {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.10);
    overflow: hidden;
}

.profile-widget .profile-field {
    display: flex;
    flex-direction: row;
    align-items: baseline;
    gap: 12px;
    padding: 14px 24px;
    border-bottom: 1px solid #f0f0f0;
}

.profile-widget .profile-field:last-child {
    border-bottom: none;
}

.profile-widget .profile-field .field-label {
    font-size: 13px;
    font-weight: 600;
    color: #888;
    min-width: 160px;
    flex-shrink: 0;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.profile-widget .profile-field .field-value {
    font-size: 15px;
    color: #222;
    word-break: break-word;
}

.profile-widget .profile-field .field-empty {
    color: #bbb;
}

/* ── Responsive ─────────────────────────────────────────────────── */

@media (max-width: 768px) {
    .profile-widget .profile-field {
        flex-direction: column;
        gap: 2px;
        padding: 12px 16px;
    }

    .profile-widget .profile-field .field-label {
        min-width: 0;
        font-size: 11px;
    }

    .profile-widget .profile-field .field-value {
        font-size: 14px;
    }
}
