.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  padding: 40px 56px 56px;
  align-items: center;
}

.hero__title {
  font-size: 52px;
  line-height: 1.1;
  font-weight: 700;
  margin: 0 0 20px;
  letter-spacing: -0.02em;
}
.hero__title span { color: var(--green); display: block; }

.hero__desc {
  color: var(--text-muted);
  font-size: 16px;
  max-width: 440px;
  margin: 0 0 32px;
}

.hero__image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, #d4c9a5, #b8a374);
}
.hero__image img {
  width: 100%; height: 100%; object-fit: cover;
}
.hero__badge {
  position: absolute;
  right: 16px; bottom: 16px;
  background: #fff;
  border-radius: 999px;
  padding: 8px 16px 8px 8px;
  display: flex; align-items: center; gap: 10px;
  box-shadow: var(--shadow-md);
  font-size: 13px;
}
.hero__badge-avatars {
  display: flex;
}
.hero__badge-avatars span {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 2px solid #fff;
  margin-left: -8px;
  background: linear-gradient(135deg, #f4a261, #e76f51);
}
.hero__badge-avatars span:first-child { margin-left: 0; }

.popular {
  margin-top: 20px;
}
.popular__label {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 10px;
}
.popular__tags { display: flex; flex-wrap: wrap; gap: 8px; }
.tag {
  padding: 6px 14px;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 13px;
  background: #fff;
  transition: all 0.2s;
}
.tag:hover { border-color: var(--green); color: var(--green); }

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; padding: 32px 24px; }
  .hero__title { font-size: 36px; }
}
