body {
  font-family: Arial, sans-serif;
  margin: 0;
  color: #1f2937;
  background: #f8fafc;
}
.container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}
.navbar {
  background: #ffffff;
  border-bottom: 1px solid #e5e7eb;
  position: sticky;
  top: 0;
  z-index: 100;
}
.navbar .wrap, .container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}
.navbar .wrap {
  display: flex;
  gap: 20px;
  align-items: center;
  min-height: 64px;
}
.navbar a {
  text-decoration: none;
  color: #374151;
}
.navbar a.brand {
  font-weight: 700;
  font-size: 1.1rem;
  margin-right: auto;
}
.hero {
  background: linear-gradient(135deg, #eff6ff, #ecfeff);
  padding: 64px 0;
  border-bottom: 1px solid #e5e7eb;
}
.hero-profile .hero-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 28px;
  align-items: center;
}
.hero h1 {
  margin: 0 0 12px 0;
  font-size: 2.5rem;
}
.lead {
  font-size: 1.1rem;
  line-height: 1.7;
}
.hero p {
  max-width: 700px;
  font-size: 1.1rem;
  line-height: 1.6;
}
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin: 32px 0;
}
.card {
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 14px rgba(0,0,0,.04);
}
.card h3 {
  margin-top: 0;
}
.list-card {
  margin-bottom: 18px;
}
.meta {
  color: #6b7280;
  font-size: .95rem;
}
.content {
  padding: 36px 0 60px;
}
.button {
  display: inline-block;
  background: #2563eb;
  color: white;
  padding: 10px 16px;
  border-radius: 8px;
  text-decoration: none;
}
ul.clean {
  padding-left: 18px;
  line-height: 1.8;
}
.footer {
  border-top: 1px solid #e5e7eb;
  padding: 24px 0 48px;
  color: #6b7280;
  font-size: .95rem;
}
.page h1 {
  margin-top: 0;
}
.profile-photo-wrap {
  text-align: center;
}
.profile-photo {
  width: 240px;
  height: 240px;
  object-fit: cover;
  border-radius: 999px;
  border: 6px solid white;
  box-shadow: 0 10px 30px rgba(0,0,0,.12);
}
.profile-photo.small {
  width: 140px;
  height: 140px;
}
.profile-header {
  display: flex;
  gap: 22px;
  align-items: center;
  margin-bottom: 28px;
}
.richtext p, .richtext li {
  line-height: 1.7;
}
.listing {
  margin-top: 24px;
}
.tag {
  display: inline-block;
  background: #e0f2fe;
  color: #075985;
  padding: 4px 8px;
  border-radius: 999px;
  font-size: .85rem;
  margin-right: 6px;
}
iframe {
  max-width: 100%;
}
@media (max-width: 800px) {
  .hero-profile .hero-grid {
    grid-template-columns: 1fr;
  }
  .profile-header {
    flex-direction: column;
    align-items: flex-start;
  }
}
