body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
}
#topbar {
  display: flex;
  justify-content: space-between;
  padding: 12px 16px;
  border-bottom: 1px solid #e5e7eb;
  background: #f9fafb;
}
.logo {
  font-weight: bold;
}
#hero {
  padding: 48px 16px;
  background: #eef2ff;
  text-align: center;
}
.headline {
  font-size: 28px;
  margin-bottom: 8px;
}
.sub {
  color: #555;
}
#content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 16px;
  padding: 16px;
}

.left-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.card {
  border: 1px solid #e5e7eb;
  padding: 12px;
  border-radius: 8px;
}

.post-title {
  font-size: 20px;
  margin-bottom: 4px;
}
.post-meta {
  font-size: 12px;
  color: #666;
  margin-bottom: 8px;
}
.panel-title {
  font-weight: 600;
  margin-bottom: 8px;
}

figure {
  margin: 0;
}

.tag {
  display: inline-block;
  padding: 4px 8px;
  border: 1px solid #ddd;
  margin: 0 4px 4px 0;
  border-radius: 9999px;
}
#bottombar {
  border-top: 1px solid #e5e7eb;
  padding: 12px 16px;
  text-align: center;
  color: #777;
}

/* Images */
.hero-img {
  width: 100%;
  max-height: 564px;
  border-radius: 8px;
  margin-bottom: 12px;
  object-fit: cover;
}
.post-img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 8px 0;
  display: block;
}
