/* Container */
.event-layout .container {
  max-width: 1248px;
  margin: 0 auto;
  padding: 50px 24px !important;
}

/* Top row: text left, image right */
.event-hero {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: start;
  margin: 48px 0 32px;
}
.event-title { font-size: clamp(32px, 4vw, 56px); line-height: 1.1; margin: 0 0 8px; }
.event-meta, .event-location { font-size: 18px; margin: 4px 0; color: #444; }
.event-intro { margin-top: 20px; font-size: 18px; }
.event-hero__img { width: 100%; height: auto; border-radius: 16px; object-fit: cover; display: block; }

/* Team section */
.event-team { margin: 56px auto 72px; text-align: center; }
.event-team h2 { font-size: clamp(28px, 3.2vw, 48px); margin: 0 0 28px; }

.event-team__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(220px, 1fr));
  gap: 32px;
  justify-items: center;
}
.team-card { max-width: 320px; }
.team-card__photo {
  width: 220px; height: 220px; border-radius: 50%;
  object-fit: cover; border: 8px solid #8cc63e;
  display: block; margin: 0 auto 12px;
}
.team-card__name { font-size: 20px; font-weight: 600; }
.team-card__title { color: #444; }

.team-card__btn {
  display: inline-block; margin-top: 12px; padding: 12px 20px;
  background: #ff8a00; color: #111; border-radius: 14px; text-decoration: none; font-weight: 700;
  box-shadow: 0 6px 0 #d96f00;
}
.team-card__btn:active { transform: translateY(2px); box-shadow: 0 4px 0 #d96f00; }

/* Responsive */
@media (max-width: 900px) {
  .event-hero { grid-template-columns: 1fr; }
  .event-hero__right { order: -1; margin-bottom: 16px; }
  .event-team__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .event-team__grid { grid-template-columns: 1fr; }
  .team-card__photo { width: 180px; height: 180px; }
}
