/* VHF Personer – inline SVG ikoner og layout */
:root{ --vhf-blue:#273583; --vhf-ring:rgba(255,255,255,.9); --vhf-muted:#6b7a90; }
.vhf-group-heading{ text-align:center; color:var(--vhf-blue); font-size:clamp(1.2rem,1rem+.9vw,1.7rem); font-weight:800; margin:2rem 0 1rem; }
.vhf-person-grid{ display:grid; gap:2rem 1.5rem; }
.vhf-person-grid.columns-2{ grid-template-columns:repeat(2,minmax(0,1fr)); }
.vhf-person-grid.columns-3{ grid-template-columns:repeat(3,minmax(0,1fr)); }
.vhf-person-grid.columns-4{ grid-template-columns:repeat(4,minmax(0,1fr)); }
@media (max-width:860px){ .vhf-person-grid.columns-2, .vhf-person-grid.columns-3, .vhf-person-grid.columns-4{ grid-template-columns:1fr; } }
.vhf-person-card{ text-align:center; background:transparent; border:none; display:flex; flex-direction:column; align-items:center; }
.vhf-person-img{ width:230px; height:230px; border-radius:999px; object-fit:cover; margin:0 auto 1rem; border:10px solid var(--vhf-ring); box-shadow:0 12px 30px rgba(0,0,0,.18); }
.vhf-person-navn{ color:var(--vhf-blue); font-weight:800; margin:.2rem 0 .75rem; }
.vhf-person-titel{ color:var(--vhf-muted); margin-bottom:.75rem; }
.vhf-person-actions{ display:flex; gap:14px; justify-content:center; align-items:center; }
.vhf-btn{ width:60px; height:60px; border-radius:50%; display:inline-flex; align-items:center; justify-content:center; border:2px solid #000; background:#fff; color:#000; line-height:1; overflow:hidden; transition: background .2s ease, color .2s ease, border-color .2s ease, transform .12s ease; text-decoration:none !important; }
.vhf-btn:hover{ background:var(--vhf-blue); color:#fff; border-color:var(--vhf-blue); transform:translateY(-1px); }
.vhf-ico{ width:26px; height:26px; display:block; fill:currentColor; }
