/* Shared styles for kushniarou.com */

:root {
  --fg: #1a1a1a;
  --muted: #6b6b6b;
  --bg: #fdfdfd;
  --accent: #1f4ed8;
  --rule: #e6e6e6;
}
@media (prefers-color-scheme: dark) {
  :root {
    --fg: #e8e8e8;
    --muted: #9a9a9a;
    --bg: #111;
    --accent: #8aa6ff;
    --rule: #2a2a2a;
  }
}
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: -apple-system, BlinkMacSystemFont, "Inter", "Segoe UI", system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  color: var(--fg);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
main {
  max-width: 680px;
  margin: 0 auto;
  padding: 72px 28px 56px;
}
a {
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid transparent;
}
a:hover { border-bottom-color: var(--accent); }

/* Back link */
.back {
  display: inline-block;
  margin-bottom: 28px;
  font-size: 14px;
  color: var(--muted);
}
.back:hover { border-bottom-color: var(--muted); }

/* Hero */
.hero {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-bottom: 40px;
}
.hero img {
  width: 112px;
  height: 112px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.hero h1 {
  margin: 0 0 4px;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.hero .tagline {
  margin: 0 0 4px;
  color: var(--fg);
}
.hero .location {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

/* Sections */
section { margin-bottom: 36px; }
section p { margin: 0 0 12px; }
section p:last-child { margin-bottom: 0; }

h2 {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin: 0 0 14px;
}
h2.section-title { margin: 0 0 8px; }

.lead {
  margin: 0 0 28px;
  color: var(--fg);
}
.lead a { color: var(--muted); border-bottom-color: var(--rule); }
.lead a:hover { color: var(--accent); border-bottom-color: var(--accent); }

/* Link list */
.links-group { margin-bottom: 22px; }
.links-group:last-child { margin-bottom: 0; }
.links-group h3 {
  font-size: 15px;
  font-weight: 600;
  margin: 0 0 6px;
  color: var(--fg);
}
.links-group .row {
  display: flex;
  gap: 12px;
  padding: 2px 0;
  color: var(--muted);
}
.links-group .row .label { flex: 1; }
.links-group .row .arrow { color: var(--muted); }

/* Featured list */
.featured ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.featured li {
  padding: 4px 0;
  color: var(--fg);
}
.featured li::before {
  content: "— ";
  color: var(--muted);
}

/* Dashboards */
.dashboards { margin-bottom: 8px; }
.dashboard {
  padding: 22px 0;
  border-top: 1px solid var(--rule);
}
.dashboard:first-of-type { border-top: none; padding-top: 0; }
.dashboard h3 {
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 8px;
  letter-spacing: -0.01em;
}
.dashboard h3 .arrow {
  color: var(--muted);
  font-weight: 400;
  font-size: 15px;
}
.dashboard p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

/* Footer */
footer {
  margin-top: 56px;
  padding-top: 20px;
  border-top: 1px solid var(--rule);
  font-size: 14px;
  color: var(--muted);
}

/* Mobile */
@media (max-width: 520px) {
  main { padding: 48px 22px 40px; }
  .hero { gap: 18px; }
  .hero img { width: 80px; height: 80px; }
  .hero h1 { font-size: 22px; }
  footer { text-align: center; }
}
