/* ===========================================
   spLinkPartials/header.css - Profile Header
   =========================================== */

.link-profile-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 32px 16px 24px;
    width: 100%;
}

.link-profile-photo-container {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
}

.link-profile-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.link-profile-name {
    font-size: 22px;
    font-weight: 700;
    color: var(--link-text-primary);
    margin: 0 0 6px;
    line-height: 1.3;
}

.link-profile-bio {
    font-size: 14px;
    color: var(--link-text-secondary);
    margin: 0 0 10px;
    line-height: 1.5;
    max-width: 440px;
    word-wrap: break-word;
}

.link-profile-location {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 13px;
    color: var(--link-text-muted);
    margin-bottom: 6px;
}

.link-profile-location svg {
    flex-shrink: 0;
}

.link-profile-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 14px;
    font-weight: 600;
    color: var(--link-text-primary);
}

.link-profile-rating-count {
    font-weight: 400;
    color: var(--link-text-muted);
    font-size: 13px;
}

/* Desktop */
@media screen and (min-width: 768px) {
    .link-profile-header {
        padding: 40px 24px 28px;
    }

    .link-profile-photo-container {
        width: 112px;
        height: 112px;
    }

    .link-profile-name {
        font-size: 26px;
    }

    .link-profile-bio {
        font-size: 15px;
    }
}
