:root {
  --meca-elc-green-950: #02240f;
  --meca-elc-green-900: #063d1a;
  --meca-elc-green-800: #0a5426;
  --meca-elc-gold: #d6a51a;
  --meca-elc-gold-soft: #f3db91;
  --meca-elc-cream: #fff8ea;
  --meca-elc-ink: #162018;
  --meca-elc-muted: #667064;
  --meca-elc-border: rgba(6, 61, 26, 0.14);
  --meca-elc-shadow: 0 22px 60px rgba(2, 36, 15, 0.12);
  --meca-elc-radius: 28px;
  --meca-elc-h1: clamp(2.2rem, 5vw, 4.8rem);
  --meca-elc-h2: clamp(1.8rem, 3vw, 3rem);
  --meca-elc-h3: clamp(1.25rem, 1.5vw, 1.55rem);
  --meca-elc-body: clamp(0.98rem, 0.35vw + 0.9rem, 1.12rem);
  --meca-elc-lead: clamp(1.05rem, 0.7vw + 0.9rem, 1.32rem);
}

.meca-elc-wrap,
.meca-elc-wrap * {
  box-sizing: border-box;
}

.meca-elc-wrap {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: clamp(36px, 6vw, 84px) clamp(18px, 4vw, 56px);
  color: var(--meca-elc-ink);
  font-size: var(--meca-elc-body);
}

.meca-elc-hero,
.meca-elc-section-head {
  max-width: 1200px;
  margin: 0 auto clamp(26px, 4vw, 46px);
  padding: clamp(26px, 5vw, 58px);
  border-radius: var(--meca-elc-radius);
  background:
    radial-gradient(circle at 12% 20%, rgba(214,165,26,.22), transparent 32%),
    linear-gradient(135deg, var(--meca-elc-green-950), var(--meca-elc-green-800));
  color: #fff;
  box-shadow: var(--meca-elc-shadow);
}

.meca-elc-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  color: var(--meca-elc-gold-soft);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  font-weight: 800;
}

.meca-elc-kicker::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--meca-elc-gold);
  box-shadow: 0 0 0 6px rgba(214,165,26,.15);
}

.meca-elc-hero h1,
.meca-elc-section-head h2 {
  margin: 0;
  color: #fff !important;
  font-family: "Playfair Display", Georgia, serif;
  font-size: var(--meca-elc-h1);
  line-height: 1.03;
  letter-spacing: -0.035em;
}

.meca-elc-section-head h2 {
  font-size: var(--meca-elc-h2);
}

.meca-elc-hero p {
  max-width: 860px;
  margin: 18px 0 0;
  color: rgba(255,255,255,.88);
  font-size: var(--meca-elc-lead);
  line-height: 1.55;
}

.meca-elc-tabs {
  max-width: 1200px;
  margin: 0 auto;
}

.meca-elc-tablist {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
  padding: 8px;
  border-radius: 999px;
  background: #f8f3e9;
  border: 1px solid var(--meca-elc-border);
  width: fit-content;
  max-width: 100%;
}

.meca-elc-tablist button {
  border: 0;
  cursor: pointer;
  border-radius: 999px;
  padding: 12px 20px;
  background: transparent;
  color: var(--meca-elc-green-900);
  font-weight: 800;
  font-size: 0.98rem;
  line-height: 1;
}

.meca-elc-tablist button span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 24px;
  height: 24px;
  margin-left: 8px;
  padding: 0 6px;
  border-radius: 999px;
  background: rgba(6,61,26,.08);
  font-size: .8rem;
}

.meca-elc-tablist button.is-active {
  background: var(--meca-elc-green-900);
  color: #fff;
  box-shadow: 0 10px 24px rgba(6,61,26,.18);
}

.meca-elc-tablist button.is-active span {
  background: var(--meca-elc-gold);
  color: var(--meca-elc-green-950);
}

.meca-elc-panel {
  display: none;
}

.meca-elc-panel.is-active {
  display: block;
}

.meca-elc-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 28px);
}

.meca-elc-card {
  overflow: hidden;
  border: 1px solid var(--meca-elc-border);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 15px 42px rgba(2, 36, 15, .08);
}

.meca-event-image {
  height: 210px;
  background: linear-gradient(135deg, var(--meca-elc-green-900), var(--meca-elc-gold));
  overflow: hidden;
}

.meca-event-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.meca-event-body,
.meca-exec-body {
  padding: 22px;
}

.meca-event-card.is-featured {
  border-color: rgba(214,165,26,.55);
  box-shadow: 0 22px 56px rgba(214,165,26,.18);
}

.meca-event-date {
  color: var(--meca-elc-green-800);
  font-size: .88rem;
  font-weight: 850;
  margin-bottom: 10px;
}

.meca-elc-card h3 {
  margin: 0 0 8px;
  color: var(--meca-elc-green-950) !important;
  font-family: "Playfair Display", Georgia, serif;
  font-size: var(--meca-elc-h3);
  line-height: 1.18;
}

.meca-event-location,
.meca-exec-position,
.meca-exec-term {
  margin: 0 0 12px;
  color: var(--meca-elc-muted);
  font-weight: 700;
}

.meca-exec-position {
  color: var(--meca-elc-green-800);
}

.meca-elc-text {
  color: #334035;
  line-height: 1.65;
}

.meca-elc-text p {
  margin: 0 0 14px;
}

.meca-elc-btn,
.meca-exec-email {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 8px;
  padding: 11px 18px;
  border-radius: 999px;
  background: var(--meca-elc-gold);
  color: var(--meca-elc-green-950) !important;
  font-weight: 900;
  text-decoration: none !important;
}

.meca-exec-photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  max-height: 340px;
  background: linear-gradient(135deg, var(--meca-elc-green-900), var(--meca-elc-gold));
  overflow: hidden;
}

.meca-exec-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.meca-elc-fallback {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: rgba(255,255,255,.88);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 800;
  letter-spacing: .05em;
}

.meca-elc-empty {
  padding: 28px;
  border: 1px dashed rgba(6,61,26,.25);
  border-radius: 22px;
  background: #fffaf0;
  color: var(--meca-elc-muted);
  font-weight: 700;
}

@media (max-width: 980px) {
  .meca-elc-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .meca-elc-wrap {
    padding: 26px 14px;
  }
  .meca-elc-hero,
  .meca-elc-section-head {
    padding: 24px 18px;
    border-radius: 22px;
  }
  .meca-elc-tablist {
    width: 100%;
    border-radius: 20px;
  }
  .meca-elc-tablist button {
    flex: 1 1 100%;
    justify-content: center;
  }
  .meca-elc-grid {
    grid-template-columns: 1fr;
  }
  .meca-event-image {
    height: 190px;
  }
}
