﻿* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: system-ui, -apple-system, sans-serif;
  background: #ffffff;
  color: #222;
}

.hero {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.5rem 1rem 0.5rem;
}
.hero__img {
  width: 100%;
  height: clamp(180px, 22vw, 320px);
  object-fit: contain; /* keeps full banner visible */
  display: block;
}

.columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  padding: 1rem;
  max-width: 1200px;
  margin: 0 auto 2rem;
}

.panel {
  background: #fff;
  border-radius: 12px;
  padding: 1.25rem;
}

.panel__title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.75rem;
}
.panel__title h2 {
  margin: 0;
  font-size: 1.25rem;
}

.panel__avatar {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  object-fit: cover;
}

.panel__image {
  width: 100%;
  border-radius: 10px;
  display: block;
  margin-bottom: 0.75rem;
}

.embed iframe {
  border: 0;
  border-radius: 10px;
  overflow: hidden;
  display: block;
  width: 100%;
}

@media (max-width: 900px) {
  .columns { grid-template-columns: 1fr; }
  .hero__img { height: 220px; }
}
