/* ---- Health visits mockup ---- */
.feature-page .feature-mock-health {
    padding: var(--h-space-5);
}

.feature-page .feature-mock-health-head {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: var(--h-space-3);
}

.feature-page .feature-mock-health-title {
    font-weight: 700;
    font-size: 14px;
    color: var(--h-navy);
}

.feature-page .feature-mock-health-count {
    font-family: var(--h-font-display);
    font-weight: 800;
    font-size: 20px;
    color: var(--h-pink-dark);
    font-variant-numeric: tabular-nums;
}

.feature-page .feature-mock-health-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: var(--h-space-2);
}

.feature-page .feature-mock-health-item {
    display: grid;
    grid-template-columns: 52px 1fr auto;
    gap: var(--h-space-3);
    align-items: center;
    padding: var(--h-space-3) 14px;
    background: var(--h-gray-50);
    border-radius: 10px;
}

.feature-page .feature-mock-health-item-warn {
    background: var(--h-pink-soft);
}

.feature-page .feature-mock-health-date {
    text-align: center;
    font-family: var(--h-font-display);
}

.feature-page .feature-mock-health-date strong {
    display: block;
    font-weight: 800;
    font-size: 22px;
    color: var(--h-navy);
    line-height: 1;
}

.feature-page .feature-mock-health-date span {
    display: block;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--h-text-muted);
    font-family: var(--h-font-body);
    font-weight: 700;
    margin-top: 2px;
}

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

.feature-page .feature-mock-health-body strong {
    color: var(--h-navy);
    font-size: 13px;
    font-weight: 700;
}

.feature-page .feature-mock-health-body span {
    color: var(--h-text-muted);
    font-size: 11.5px;
}

.feature-page .feature-mock-health-pill {
    font-size: 10.5px;
    font-weight: 700;
    padding: var(--h-space-1) 9px;
    border-radius: 999px;
    background: var(--h-gray-100);
    color: var(--h-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    white-space: nowrap;
}

.feature-page .feature-mock-health-pill-warn {
    background: var(--h-pink-dark);
    color: var(--h-white);
}

