.top-banner {
  display: block;
  background: #f7f6f2;
  border-top: 3px solid #1a1a1a;
  color: inherit;
  text-decoration: none;
  transition: background 0.15s;
}
.top-banner:hover {
  background: #eceae4;
  text-decoration: none;
}
.top-banner-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1.75rem;
  padding: 0.85rem 1.5rem;
}
.top-banner-image {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 4px;
}
.top-banner-label {
  flex-shrink: 0;
  background: #1a1a1a;
  color: #fff;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.22rem 0.55rem;
  border-radius: 2px;
}
.top-banner-text {
  flex: 1;
  min-width: 0;
}
.top-banner-headline {
  display: block;
  font-size: 0.975rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 0.2rem;
  color: #1a1a1a;
}
.top-banner-body {
  display: block;
  font-size: 0.865rem;
  color: #444;
  line-height: 1.5;
}
.top-banner-read-link {
  flex-shrink: 0;
  font-size: 0.875rem;
  font-weight: 600;
  color: #1a1a1a;
  white-space: nowrap;
  font-style: italic;
}
@media (max-width: 700px) {
  .top-banner-image { display: none; }
  .top-banner-label { display: none; }
  .top-banner-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.55rem;
    padding: 0.85rem 1rem;
  }
  .top-banner-cta { align-self: stretch; text-align: center; }
}
