:root{
  --bg:#f6f7fb;
  --panel:#ffffff;
  --text:#0f172a;
  --muted:#475569;
  --border:#e2e8f0;
  --accent:#2563eb;
  --radius:16px;
  --shadow: 0 8px 24px rgba(15,23,42,.10);
  --font: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial;
}
*{box-sizing:border-box;}
body{
  margin:0;
  font-family:var(--font);
  background:var(--bg);
  color:var(--text);
}
.wrap{
  max-width:980px;
  margin:0 auto;
  padding:18px 16px 28px 16px;
}
.header{padding-top:18px;}
.brand{display:flex;gap:12px;align-items:center;}

/* Header logo (small Google Ads logo image) */
.logo-wrap{
  width:52px;height:52px;
  border-radius:14px;
  display:grid;
  place-items:center;
  background:var(--panel);
  border:1px solid var(--border);
  box-shadow:var(--shadow);
}
.gads-logo{
  width:28px;
  height:28px;
  object-fit:contain;
  display:block;
}

h1{margin:0;font-size:22px;line-height:1.1;}
.sub{margin:4px 0 0 0;color:var(--muted);font-size:13px;}

.stack{display:grid;gap:14px;margin-top:16px;}
.card{
  background:var(--panel);
  border:1px solid var(--border);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  padding:14px;
  display:flex;
  gap:14px;
  align-items:flex-start;
}
.photo{
  width:120px;height:120px;
  object-fit:cover;
  border-radius:14px;
  border:1px solid rgba(15,23,42,.08);
  flex: 0 0 auto;
}
.info{flex:1;min-width:0;}
h2{margin:0 0 8px 0;font-size:18px;}
.bio{margin:0 0 12px 0;line-height:1.5;font-size:14px;}
.contact{display:flex;gap:10px;flex-wrap:wrap;}
.pill{
  display:inline-flex;align-items:center;
  padding:8px 10px;border-radius:999px;
  border:1px solid var(--border);
  background:rgba(37,99,235,.06);
  text-decoration:none;
  color:var(--text);
  font-size:13px;
}
.pill:hover{border-color:var(--accent);}

/* Footer text boxed like cards */
.footer{margin-top:18px;}
.footer-box{
  background:var(--panel);
  border:1px solid var(--border);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  padding:14px;
  color:var(--text);
  font-size:14px;
  line-height:1.5;
}
.footer-box p{margin:0 0 12px 0;}
.footer-box p:last-child{margin-bottom:0;}
code{background:#0f172a10;padding:2px 6px;border-radius:8px;}

@media (max-width: 620px){
  .card{flex-direction:column;}
  .photo{width:100%;height:auto;aspect-ratio:1/1;}
  .logo-wrap{width:44px;height:44px;}
  .gads-logo{width:24px;height:24px;}
}
