.hero--private .hero__panel {
  text-align: left;
}

.private-layout {
  align-items: flex-start;
  gap: var(--space-10);
}

.private-layout--reverse {
  direction: rtl;
}

.private-layout--reverse > * {
  direction: ltr;
}

.private-feature-list {
  display: grid;
  gap: var(--space-4);
  margin-top: var(--space-6);
}

.private-feature-list p {
  margin-bottom: 0;
}

.private-highlight-card {
  align-self: stretch;
}

.private-bullets {
  display: grid;
  gap: 0.45rem;
  padding-left: 0;
}

.private-bullets li::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 0.4rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
}

.private-bullets li {
  font-size: var(--font-size-sm);
  color: var(--color-text-soft);
}

.private-chips-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-2);
  margin-top: var(--space-4);
}

.private-image-card {
  display: flex;
  align-items: center;
  justify-content: center;
}

.private-figure {
  width: 100%;
  max-width: 480px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-medium);
}

.private-figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.private-event-grid {
  align-items: stretch;
}

.private-event-grid .card {
  height: 100%;
}

.private-contact-hint {
  margin-top: var(--space-4);
}

.private-form .btn--full {
  margin-top: var(--space-3);
}

.private-form-footer {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

@media (max-width: 960px) {
  .private-layout {
    gap: var(--space-8);
  }
}

@media (max-width: 640px) {
  .private-figure {
    max-width: 100%;
  }
}
