.team-event-section {
  padding: 20px 0;
}

.team-event-card {
  display: grid;
  grid-template-columns: 1.05fr 1.4fr 1fr;
  min-height: 520px;
  border-radius: 0;
  overflow: hidden;
  background: #efe7dc;
}

/* Linke Spalte */
.team-event-left {
  background: #2f4738;
  color: #f5efe5;
  padding: 40px 38px;
  border-top-right-radius: 80px;
  border-bottom-right-radius: 80px;
  position: relative;
  z-index: 2;
}

.team-event-left h2 {
  margin: 0 0 34px;
  font-size: 2rem;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.feature-icon {
  flex: 0 0 24px;
  font-size: 1.5rem;
  line-height: 1;
  color: #d8b17a;
  margin-top: 2px;
}

.feature-text h3 {
  margin: 0 0 6px;
  font-size: 1.05rem;
  line-height: 1.3;
  font-weight: 700;
  color: #ffffff;
  font-family: ’DeineZweiteSchriftart’;
  font-weight: 500;
}

.feature-text p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.55;
  color: #e4ddd3;
}

/* Bildbereich */
.team-event-image {
  position: relative;
  min-height: 320px;
}

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

/* Rechte Spalte */
.team-event-right {
  background: #f5efe6;
  color: #24352c;
  padding: 40px 36px;
  border-top-left-radius: 40px;
  border-bottom-left-radius: 40px;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  text-align: center;
}

.team-event-right h2 {
  margin: 0 0 28px;
  font-size: 1.2rem;
  line-height: 1.2;
  font-weight: 600;
  color: #3d5848;
}

.event-list {
  list-style: none;
  padding: 0;
  margin: 0 0 40px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.event-list li {
  position: relative;
  padding-left: 28px;
  font-size: 1.1rem;
  line-height: 1.4;
  color: #1f2c24;
}

.event-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #3d5848;
  font-weight: 700;
}

blockquote {
  margin: 10px 0 0;
  padding-left: 34px;
  position: relative;
  font-size: 1.45rem;
  line-height: 1.5;
  color: #2f2b28;
}

blockquote::before {
  content: "“";
  position: absolute;
  left: 0;
  top: -8px;
  font-size: 4rem;
  line-height: 1;
  color: #a85f2d;
  font-family: Georgia, serif;
}

/* Tablet */
@media (max-width: 1100px) {
  .team-event-card {
    grid-template-columns: 1fr;
  }

  .team-event-left,
  .team-event-right {
    border-radius: 0;
  }

  .team-event-image {
    order: 2;
    height: 420px;
  }

  .team-event-left {
    order: 1;
  }

  .team-event-right {
    order: 3;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .team-event-section {
    padding: 12px;
  }

  .team-event-left,
  .team-event-right {
    padding: 28px 22px;
  }

  .team-event-left h2,
  .team-event-right h2 {
    font-size: 1.65rem;
  }

  .feature-text h3 {
    font-size: 1rem;
  }

  .feature-text p,
  .event-list li {
    font-size: 0.95rem;
  }

  .team-event-image {
    height: 280px;
  }

  blockquote {
    font-size: 1.15rem;
    padding-left: 26px;
  }

  blockquote::before {
    font-size: 3rem;
    top: -4px;
  }
}
