/* ---- HRIS profile mockup ---- */
.feature-page .feature-mock-profile {
    overflow: hidden;
}

.feature-page .feature-mock-profile-head {
    display: grid;
    grid-template-columns: 56px 1fr auto;
    gap: 14px;
    align-items: center;
    padding: 18px var(--h-space-5);
    border-bottom: 2px solid var(--h-border-color-light);
}

.feature-page .feature-mock-profile-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--h-teal-pale);
    color: var(--h-teal);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
}

.feature-page .feature-mock-profile-id {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.feature-page .feature-mock-profile-id strong {
    color: var(--h-navy);
    font-size: 15px;
    font-weight: 700;
}

.feature-page .feature-mock-profile-id span {
    color: var(--h-text-muted);
    font-size: 12.5px;
}

.feature-page .feature-mock-profile-status {
    font-size: 11px;
    font-weight: 700;
    padding: var(--h-space-1) 10px;
    border-radius: 999px;
    background: var(--h-teal-pale);
    color: var(--h-teal);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.feature-page .feature-mock-profile-tabs {
    list-style: none;
    margin: 0;
    padding: 0 var(--h-space-2);
    display: flex;
    gap: var(--h-space-1);
    border-bottom: 1px solid var(--h-border-color-lightest);
    overflow-x: auto;
}

.feature-page .feature-mock-profile-tabs li {
    padding: var(--h-space-3) 10px;
    font-size: 12px;
    font-weight: 600;
    color: var(--h-text-muted);
    display: inline-flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
    border-bottom: 2px solid transparent;
}

.feature-page .feature-mock-profile-tabs li.is-active {
    color: var(--h-blue-myhr);
    border-bottom-color: var(--h-blue-myhr);
}

.feature-page .feature-mock-profile-fields {
    margin: 0;
    padding: var(--h-space-4) var(--h-space-5) var(--h-space-5);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px var(--h-space-5);
}

.feature-page .feature-mock-profile-field {
    display: flex;
    flex-direction: column;
}

.feature-page .feature-mock-profile-field dt {
    font-size: 10.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--h-text-muted);
    margin-bottom: 2px;
}

.feature-page .feature-mock-profile-field dd {
    font-size: 14px;
    font-weight: 600;
    color: var(--h-navy);
    margin: 0;
}

