/*
 * Public profile page ("digital business card").
 * Self-contained: this page loads Bootstrap + this file only, so every class
 * here is prefixed pf- and nothing depends on custom.css.
 */

:root {
    --pf-brand-1: #667eea;
    --pf-brand-2: #764ba2;
    --pf-grad: linear-gradient(135deg, #667eea 0%, #764ba2 100%);

    --pf-ink: #0f172a;
    --pf-ink-2: #334155;
    --pf-muted: #64748b;
    --pf-line: #e8ebf2;
    --pf-line-soft: #f1f4f9;
    --pf-surface: #ffffff;
    --pf-canvas: #f5f6fb;

    --pf-r: 16px;
    --pf-r-lg: 24px;

    --pf-sh-sm: 0 1px 2px rgba(15, 23, 42, .05), 0 4px 14px rgba(15, 23, 42, .05);
    --pf-sh: 0 2px 6px rgba(15, 23, 42, .06), 0 16px 40px rgba(15, 23, 42, .09);
    --pf-sh-lg: 0 10px 30px rgba(15, 23, 42, .1), 0 40px 80px rgba(15, 23, 42, .14);
}

* { box-sizing: border-box; }

body {
    margin: 0;
    font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
    background: var(--pf-canvas);
    color: var(--pf-ink);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

h1, h2, h3, h4 { letter-spacing: -.02em; margin: 0; }
a { text-decoration: none; color: inherit; }

:focus-visible {
    outline: 3px solid rgba(102, 126, 234, .5);
    outline-offset: 3px;
    border-radius: 8px;
}

.pf-shell { max-width: 940px; margin-inline: auto; padding-inline: 1rem; }

/* ============================== Preview bar ============================= */
.pf-preview {
    background: #fffbeb;
    border-bottom: 1px solid #fde68a;
    color: #92400e;
    padding: .7rem 1rem;
    text-align: center;
    font-size: .88rem;
    font-weight: 500;
}
.pf-preview a { color: #92400e; text-decoration: underline; font-weight: 700; }

/* ================================= Hero ================================ */
.pf-hero { position: relative; }

.pf-cover {
    position: relative;
    height: 220px;
    background:
        radial-gradient(900px 380px at 15% 0%, rgba(255, 255, 255, .22), transparent 60%),
        radial-gradient(700px 320px at 85% 20%, rgba(0, 0, 0, .16), transparent 60%),
        var(--pf-grad);
    overflow: hidden;
}
.pf-cover::after {
    content: '';
    position: absolute; inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, .16) 1px, transparent 1px);
    background-size: 22px 22px;
    -webkit-mask-image: linear-gradient(to bottom, #000, transparent 85%);
    mask-image: linear-gradient(to bottom, #000, transparent 85%);
}
@media (min-width: 768px) { .pf-cover { height: 260px; } }

/* Identity card lifted over the cover */
.pf-card {
    position: relative;
    margin-top: -104px;
    background: var(--pf-surface);
    border: 1px solid var(--pf-line);
    border-radius: var(--pf-r-lg);
    box-shadow: var(--pf-sh-lg);
    padding: 1.5rem 1.25rem 1.5rem;
    text-align: center;
    z-index: 2;
}
@media (min-width: 768px) {
    .pf-card { margin-top: -120px; padding: 2rem 2.25rem; }
}

.pf-avatar-wrap { margin-top: -84px; margin-bottom: 1rem; }
.pf-avatar, .pf-avatar-fallback {
    width: 124px; height: 124px;
    border-radius: 50%;
    border: 5px solid #fff;
    box-shadow: 0 10px 30px rgba(15, 23, 42, .18);
    display: block; margin-inline: auto;
    object-fit: cover;
    background: #fff;
}
.pf-avatar-fallback {
    background: var(--pf-grad);
    color: #fff;
    display: grid; place-items: center;
    font-size: 2.6rem; font-weight: 700;
}
@media (min-width: 768px) {
    .pf-avatar, .pf-avatar-fallback { width: 140px; height: 140px; }
    .pf-avatar-wrap { margin-top: -94px; }
}

.pf-name {
    font-size: clamp(1.45rem, 4.5vw, 2rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: .35rem;
}
.pf-role {
    display: inline-flex; align-items: center; gap: .45rem;
    background: rgba(102, 126, 234, .1);
    color: var(--pf-brand-2);
    font-size: .875rem; font-weight: 600;
    padding: .35rem .85rem;
    border-radius: 999px;
    margin-bottom: .6rem;
}
/* Compact facts under the name: handle, city, site, service count. */
.pf-meta {
    list-style: none; margin: 0 0 1.25rem; padding: 0;
    display: flex; flex-wrap: wrap; justify-content: center;
    gap: .4rem .95rem;
    color: var(--pf-muted); font-size: .875rem;
}
.pf-meta li { display: inline-flex; align-items: center; gap: .35rem; min-width: 0; }
.pf-meta i { font-size: .9em; color: var(--pf-brand-1); }

/* Primary actions */
.pf-actions {
    display: flex; flex-wrap: wrap; gap: .55rem; justify-content: center;
}
.pf-btn {
    display: inline-flex; align-items: center; justify-content: center; gap: .45rem;
    padding: .68rem 1.15rem;
    border-radius: 12px;
    font-size: .9rem; font-weight: 600;
    border: 1px solid var(--pf-line);
    background: #fff;
    color: var(--pf-ink-2);
    cursor: pointer;
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, background .18s ease;
}
.pf-btn:hover { transform: translateY(-2px); box-shadow: var(--pf-sh-sm); border-color: rgba(102, 126, 234, .45); color: var(--pf-brand-2); }
.pf-btn:active { transform: translateY(0); }
.pf-btn-primary {
    background: var(--pf-grad);
    border-color: transparent;
    color: #fff;
    box-shadow: 0 8px 22px rgba(102, 126, 234, .34);
}
.pf-btn-primary:hover { color: #fff; box-shadow: 0 12px 30px rgba(102, 126, 234, .45); }
.pf-btn-wa { background: #25d366; border-color: transparent; color: #fff; box-shadow: 0 8px 22px rgba(37, 211, 102, .3); }
.pf-btn-wa:hover { color: #fff; box-shadow: 0 12px 30px rgba(37, 211, 102, .42); }

/*
 * From tablet up the header reads as a business card: photo on the left,
 * details beside it, and one full-width row of actions underneath.
 *
 * Centring everything left roughly a third of the 940px card empty down each
 * side, which is what made the section look so bare.
 */
@media (min-width: 768px) {
    .pf-card {
        display: grid;
        grid-template-columns: auto minmax(0, 1fr);
        column-gap: 1.75rem;
        align-items: start;
        text-align: left;
    }
    .pf-avatar-wrap { grid-column: 1; grid-row: 1; margin-bottom: 0; }
    .pf-id { grid-column: 2; grid-row: 1; min-width: 0; }

    .pf-name { font-size: clamp(1.7rem, 2.6vw, 2.15rem); }
    .pf-meta { justify-content: flex-start; margin-bottom: 0; gap: .4rem 1.35rem; }

    .pf-actions {
        grid-column: 1 / -1; grid-row: 2;
        justify-content: flex-start;
        margin-top: 1.5rem;
        padding-top: 1.4rem;
        border-top: 1px solid var(--pf-line-soft);
        gap: .6rem;
    }
    /* Share the row rather than huddling in the middle. The cap stops two
       buttons from stretching into a pair of slabs. */
    .pf-actions .pf-btn { flex: 1 1 0; max-width: 15rem; }
}

/* ================================ Layout =============================== */
.pf-body { padding: 1.5rem 0 4rem; }
@media (min-width: 992px) {
    .pf-grid { display: grid; grid-template-columns: 1.55fr 1fr; gap: 1.25rem; align-items: start; }
}

.pf-panel {
    background: var(--pf-surface);
    border: 1px solid var(--pf-line);
    border-radius: var(--pf-r);
    box-shadow: var(--pf-sh-sm);
    padding: 1.35rem;
    margin-bottom: 1.25rem;
}
@media (min-width: 768px) { .pf-panel { padding: 1.65rem; } }

.pf-panel-title {
    display: flex; align-items: center; gap: .6rem;
    font-size: 1rem; font-weight: 700;
    margin-bottom: 1.15rem;
}
.pf-panel-title .ico {
    width: 32px; height: 32px; border-radius: 9px; flex: none;
    background: rgba(102, 126, 234, .12);
    color: var(--pf-brand-2);
    display: grid; place-items: center;
    font-size: .9rem;
}

.pf-bio {
    color: var(--pf-ink-2);
    line-height: 1.75;
    font-size: .97rem;
    margin: 0;
    overflow-wrap: anywhere;    /* never let a long word break the layout */
}

/* ================================ Skills =============================== */
/* ================================ Skills =============================== */
/*
 * Two aligned columns, not a row of pills. Skills are written as phrases, so
 * pills came out at wildly different widths and wrapped into a ragged block.
 * Deliberately lighter than the service cards below: skills are supporting
 * detail, services are the offer, and the two should not compete.
 */
.pf-skills {
    list-style: none;
    margin: 0; padding: 0;
    display: grid;
    gap: .15rem;
}
@media (min-width: 576px) {
    .pf-skills { grid-template-columns: 1fr 1fr; column-gap: 1.75rem; }
}

.pf-skill {
    display: flex; align-items: flex-start; gap: .7rem;
    padding: .5rem 0;
    font-size: .92rem; font-weight: 500;
    color: var(--pf-ink-2);
    line-height: 1.5;
    overflow-wrap: anywhere;
}
.pf-skill .mark {
    width: 22px; height: 22px;
    flex: none;
    margin-top: .1rem;
    border-radius: 7px;
    background: rgba(102, 126, 234, .1);
    color: var(--pf-brand-2);
    display: grid; place-items: center;
    font-size: .72rem;
    transition: background .18s ease, color .18s ease;
}
.pf-skill:hover .mark { background: var(--pf-grad); color: #fff; }

/* =============================== Services ============================== */
.pf-services { display: grid; gap: .7rem; }
@media (min-width: 576px) { .pf-services { grid-template-columns: 1fr 1fr; } }
.pf-service {
    display: flex; align-items: flex-start; gap: .65rem;
    background: var(--pf-canvas);
    border: 1px solid var(--pf-line-soft);
    border-radius: 12px;
    padding: .85rem 1rem;
    font-size: .92rem; font-weight: 500;
    color: var(--pf-ink-2);
    overflow-wrap: anywhere;
    transition: background .18s ease, border-color .18s ease, transform .18s ease;
}
.pf-service:hover { background: #fff; border-color: rgba(102, 126, 234, .35); transform: translateY(-2px); }
.pf-service i { color: #16a34a; margin-top: .12rem; flex: none; }

/* =============================== Contact =============================== */
.pf-contact { display: grid; gap: .25rem; }

.pf-row {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: .9rem;
    padding: .75rem .6rem;
    border-radius: 12px;
    min-width: 0;
    transition: background .18s ease;
}
/* Only the actionable rows react to the pointer. */
a.pf-row:hover { background: var(--pf-canvas); }
.pf-row.is-static { cursor: default; }

.pf-row .tile {
    width: 42px; height: 42px; border-radius: 12px; flex: none;
    display: grid; place-items: center;
    font-size: 1.05rem;
    background: color-mix(in srgb, var(--pf-accent, #667eea) 12%, transparent);
    color: var(--pf-accent, var(--pf-brand-2));
    transition: transform .18s ease;
}
.pf-row .tile-wa { background: rgba(37, 211, 102, .14); color: #1da851; }
a.pf-row:hover .tile { transform: scale(1.05); }

/* The label sits on its own line above the value. Set here rather than with a
   utility class: this page ships no Bootstrap, so d-block would do nothing. */
.pf-row .meta { display: block; min-width: 0; }
.pf-row .k {
    display: block;
    font-size: .68rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: .08em;
    color: var(--pf-muted);
    margin-bottom: .15rem;
}
.pf-row .v {
    display: block;
    font-size: .94rem; font-weight: 600; line-height: 1.35;
    color: var(--pf-ink);
    overflow-wrap: anywhere;
}
a.pf-row:hover .v { color: var(--pf-accent, var(--pf-brand-2)); }

/* Affordance showing the row leads somewhere. */
.pf-row .go {
    font-size: .8rem; color: #cbd5e1; flex: none;
    transition: color .18s ease, transform .18s ease;
}
a.pf-row:hover .go { color: var(--pf-accent, var(--pf-brand-2)); transform: translateX(2px); }

/* ================================ Social =============================== */
.pf-social { display: flex; flex-wrap: wrap; gap: .6rem; }
.pf-social a {
    width: 46px; height: 46px;
    border-radius: 13px;
    display: grid; place-items: center;
    font-size: 1.15rem;
    color: #fff;
    box-shadow: var(--pf-sh-sm);
    transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
}
.pf-social a:hover { transform: translateY(-3px) scale(1.04); box-shadow: var(--pf-sh); filter: saturate(1.15); }

/* =============================== Footer ================================ */
.pf-footer {
    background: var(--pf-ink);
    color: rgba(255, 255, 255, .68);
    padding: 2.5rem 1rem;
    text-align: center;
}
.pf-footer .brand { color: #fff; font-weight: 700; }
.pf-footer .cta {
    display: inline-flex; align-items: center; gap: .45rem;
    margin-top: 1rem;
    padding: .65rem 1.35rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, .25);
    color: #fff; font-weight: 600; font-size: .9rem;
    transition: background .18s ease, border-color .18s ease;
}
.pf-footer .cta:hover { background: rgba(255, 255, 255, .12); border-color: rgba(255, 255, 255, .5); }

/* Legal links and the abuse report, on one wrapping row. */
.pf-footer-links {
    list-style: none; margin: 1.5rem 0 0; padding: 0;
    display: flex; flex-wrap: wrap; justify-content: center;
    gap: .35rem 1.25rem;
    font-size: .78rem;
}
.pf-footer-links a { color: rgba(255, 255, 255, .45); transition: color .18s ease; }
.pf-footer-links a:hover { color: rgba(255, 255, 255, .8); }

/* ==================== Sticky quick bar (small screens) ================= */
.pf-quickbar {
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 50;
    display: flex;
    background: rgba(255, 255, 255, .95);
    backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
    border-top: 1px solid var(--pf-line);
    padding: .5rem .5rem calc(.5rem + env(safe-area-inset-bottom));
    gap: .4rem;
}
.pf-quickbar a, .pf-quickbar button {
    flex: 1 1 0;
    display: flex; flex-direction: column; align-items: center; gap: .15rem;
    padding: .45rem .25rem;
    border: none; background: none; cursor: pointer;
    font-size: .68rem; font-weight: 600; color: var(--pf-muted);
    border-radius: 10px;
}
.pf-quickbar i { font-size: 1.15rem; color: var(--pf-brand-2); }
.pf-quickbar a:active, .pf-quickbar button:active { background: var(--pf-canvas); }
@media (min-width: 992px) { .pf-quickbar { display: none; } }
/* Keep the fixed bar from covering the footer on phones. */
@media (max-width: 991.98px) { .pf-has-quickbar { padding-bottom: 76px; } }

/* ================================ Toast ================================ */
.pf-toast {
    position: fixed; left: 50%; bottom: 92px; transform: translateX(-50%) translateY(12px);
    background: var(--pf-ink); color: #fff;
    padding: .7rem 1.15rem; border-radius: 12px;
    font-size: .87rem; font-weight: 600;
    box-shadow: var(--pf-sh);
    opacity: 0; pointer-events: none;
    transition: opacity .22s ease, transform .22s ease;
    z-index: 60;
}
.pf-toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }
@media (min-width: 992px) { .pf-toast { bottom: 32px; } }

@media (prefers-reduced-motion: reduce) {
    * { transition: none !important; animation: none !important; }
}

/* ================================ Print ================================ */
@media print {
    .pf-quickbar, .pf-footer, .pf-preview, .pf-actions, .pf-toast { display: none !important; }
    body { background: #fff; }
    .pf-card, .pf-panel { box-shadow: none; border: 1px solid #ddd; break-inside: avoid; }
    .pf-cover { height: 90px; }
}

/* =========================== Theme integration ========================= */
/* These fall back to the base palette when no theme is applied. */
body { font-family: var(--pf-font, 'Inter', system-ui, sans-serif); }
.pf-btn { border-radius: var(--pf-btn-radius, 12px); }

/* ============================ Custom links ============================= */
.pf-links { display: grid; gap: .65rem; }
.pf-link {
    display: flex; align-items: center; gap: .85rem;
    padding: .95rem 1.1rem;
    border: 1px solid var(--pf-line);
    border-radius: var(--pf-btn-radius, 14px);
    background: var(--pf-surface);
    box-shadow: var(--pf-sh-sm);
    font-weight: 600; font-size: .96rem;
    color: var(--pf-ink);
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
    overflow-wrap: anywhere;
}
.pf-link:hover {
    transform: translateY(-2px);
    box-shadow: var(--pf-sh);
    border-color: var(--pf-accent, var(--pf-brand-2));
}
.pf-link-ico {
    width: 38px; height: 38px; flex: none;
    border-radius: 11px;
    display: grid; place-items: center;
    background: var(--pf-grad); color: #fff; font-size: 1rem;
}
.pf-link-title { flex: 1 1 auto; min-width: 0; }
.pf-link-arrow { color: var(--pf-muted); font-size: .9rem; flex: none; }
.pf-link:hover .pf-link-arrow { color: var(--pf-accent, var(--pf-brand-2)); }

/* ============================== Payments ============================== */
.pf-btn-pay {
    background: #0f766e; border-color: transparent; color: #fff;
    box-shadow: 0 8px 22px rgba(15, 118, 110, .3);
}
.pf-btn-pay:hover { color: #fff; box-shadow: 0 12px 30px rgba(15, 118, 110, .42); }
.pf-pay { text-align: center; }
.pf-qr { display: flex; justify-content: center; margin-bottom: .85rem; }
.pf-qr img, .pf-qr canvas {
    padding: 12px; background: #fff;
    border: 1px solid var(--pf-line); border-radius: 14px;
}
.pf-qr-note { font-size: .82rem; color: var(--pf-muted); margin: 0 0 .85rem; }
.pf-upi-id {
    display: inline-flex; align-items: center; gap: .45rem;
    margin: .75rem auto 0;
    padding: .4rem .75rem;
    background: none;
    border: 1px dashed var(--pf-line);
    border-radius: 10px;
    font-size: .78rem; color: var(--pf-muted);
    font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
    overflow-wrap: anywhere;
    cursor: pointer;
    transition: border-color .18s ease, color .18s ease;
}
.pf-upi-id:hover { border-color: rgba(102, 126, 234, .45); color: var(--pf-brand-2); }

/*
 * Highlight the pay panel when a desktop visitor clicks a Pay button: the UPI
 * link cannot open, so point them at the QR code instead of doing nothing.
 */
@keyframes pf-flag {
    from { box-shadow: 0 0 0 0 rgba(102, 126, 234, .5); }
    to   { box-shadow: 0 0 0 16px rgba(102, 126, 234, 0); }
}
.pf-pay.is-flag { animation: pf-flag .9s ease-out 2; }
.w-100 { width: 100%; }

/* ============================ Contact form ============================ */
.pf-form-intro {
    margin: -.4rem 0 1.1rem;
    font-size: .9rem; line-height: 1.6;
    color: var(--pf-muted);
}

.pf-form { display: grid; gap: 1rem; }

.pf-field { display: grid; gap: .4rem; min-width: 0; }
.pf-field-row { display: grid; gap: 1rem; }
@media (min-width: 576px) { .pf-field-row { grid-template-columns: 1fr 1fr; } }

.pf-field > label {
    font-size: .8rem; font-weight: 700;
    color: var(--pf-ink-2);
    display: flex; align-items: center; gap: .4rem;
}
.pf-field > label .opt {
    font-weight: 600; font-size: .68rem;
    text-transform: uppercase; letter-spacing: .05em;
    color: var(--pf-muted);
    background: var(--pf-canvas);
    padding: .1rem .4rem; border-radius: 999px;
}

/*
 * Base control styling.
 *
 * This block MUST come before the icon-inset rule below: it sets the `padding`
 * shorthand, which would otherwise reset the icon's padding-left back to the
 * default and drop the placeholder underneath the icon.
 */
.pf-field input,
.pf-field textarea {
    width: 100%;
    padding: .78rem .95rem;
    border: 1px solid var(--pf-line);
    border-radius: 12px;
    background: var(--pf-surface);
    color: var(--pf-ink);
    font-family: inherit; font-size: .94rem; line-height: 1.5;
    transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
    -webkit-appearance: none; appearance: none;
}
.pf-field input::placeholder,
.pf-field textarea::placeholder { color: #9aa4b6; }

.pf-field input:hover,
.pf-field textarea:hover { border-color: #cbd5e1; }

.pf-field input:focus,
.pf-field textarea:focus {
    outline: none;
    border-color: var(--pf-accent, var(--pf-brand-2));
    /* Fallback first; the color-mix line wins where supported. */
    box-shadow: 0 0 0 4px rgba(102, 126, 234, .16);
    box-shadow: 0 0 0 4px color-mix(in srgb, var(--pf-accent, #667eea) 18%, transparent);
}

/* Icon sits inside the control, so the input keeps a single visible border. */
.pf-input {
    position: relative; display: block;
}
.pf-input > i {
    position: absolute; left: 1rem; top: 50%; transform: translateY(-50%);
    color: var(--pf-muted); font-size: .95rem; pointer-events: none;
    line-height: 1; z-index: 1;
    transition: color .18s ease;
}
/* Clears the 1rem icon offset plus its glyph width. */
.pf-field .pf-input > input { padding-left: 2.75rem; }
.pf-input:focus-within > i { color: var(--pf-accent, var(--pf-brand-2)); }

.pf-field textarea { resize: vertical; min-height: 132px; }

.pf-counter {
    justify-self: end;
    font-size: .72rem; font-weight: 600; color: var(--pf-muted);
    font-variant-numeric: tabular-nums;
}

.pf-submit {
    width: 100%;
    padding: .85rem 1.15rem;
    font-size: .95rem;
    margin-top: .2rem;
}

.pf-form-note {
    display: flex; align-items: center; justify-content: center; gap: .4rem;
    margin: 0; font-size: .78rem; color: var(--pf-muted);
}
.pf-form-note i { color: #16a34a; }

/* Honeypot: off-screen rather than display:none, which some bots skip.
   Also set inline on the element so a CSS failure can't reveal it. */
.pf-hp {
    position: absolute !important;
    left: -9999px !important;
    width: 1px !important; height: 1px !important;
    overflow: hidden !important;
}

/* ------------------------------- Notices ------------------------------- */
.pf-note {
    display: flex; align-items: flex-start; gap: .6rem;
    padding: .8rem 1rem; border-radius: 12px;
    font-size: .87rem; line-height: 1.55; margin-bottom: 1rem;
}
.pf-note i { margin-top: .1rem; flex: none; }
.pf-note-ok  { background: #ecfdf5; border: 1px solid #a7f3d0; color: #065f46; }
.pf-note-bad { background: #fef2f2; border: 1px solid #fecaca; color: #991b1b; }

/* Bio is sanitised rich text, so style the tags it may contain. */
.pf-bio p { margin: 0 0 .8rem; }
.pf-bio p:last-child { margin-bottom: 0; }
.pf-bio ul, .pf-bio ol { margin: 0 0 .8rem; padding-left: 1.35rem; }
.pf-bio li { margin-bottom: .3rem; }
.pf-bio a { color: var(--pf-accent, var(--pf-brand-2)); text-decoration: underline; }
.pf-bio a:hover { text-decoration: none; }
.pf-bio blockquote {
    margin: 0 0 .8rem; padding: .4rem 0 .4rem 1rem;
    border-left: 3px solid var(--pf-line);
    color: var(--pf-muted);
}
.pf-bio h3, .pf-bio h4 { font-size: 1rem; font-weight: 700; margin: 1rem 0 .5rem; }
.pf-bio h3:first-child, .pf-bio h4:first-child, .pf-bio p:first-child { margin-top: 0; }
