/* ================= ACCORDION SYSTEM ================= */

.impact-accordion {
	display: flex;
    flex-direction: column;
    gap: 28px;
}
.impact-item {
  border: 3px solid var(--accent);
  border-radius: 28px;
  color: #ffffff;
  --accent: currentColor;
  overflow: hidden;
  gap: 28px;
}

.impact-item[data-color="orange"] { --accent: #F4A81D; }
.impact-item[data-color="teal"]   { --accent: #00E0C1; }
.impact-item[data-color="green"]  { --accent: #A2CF5F; }

.impact-header {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 18px;
  background: transparent;
  border: 0;
  padding: 28px 32px;
  color: #ffffff;
  cursor: pointer;
  text-align: left;
}

.impact-header img {
  width: 44px;
  flex: 0 0 auto;
}

.impact-header h3 {
  margin: 0;
  font-family: 'DM Serif Display', serif;
  font-weight: 400;
  font-size: 60px;
  line-height: 1;
}

.impact-toggle {
  margin-left: auto;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid currentColor;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 600;
}

.impact-toggle::before {
  content: "+";
  font-size: 28px;
  font-weight: 700;
}

.impact-item.is-open .impact-toggle::before {
  content: "−";
}

.impact-content {
  display: none;
  padding: 0 32px 32px;
}

.impact-item.is-open .impact-content {
  display: block;
}

.impact-button {
  display: inline-flex;
  align-items: center;
  border: 2px solid var(--accent);
  border-radius: 999px;
  padding-left: 22px;
  gap: 16px;
  text-decoration: none;
  color: #ffffff;
  font-weight: 600;
  font-size: 20px;
}

.impact-button-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ================= TEAM CARD SYSTEM ================= */

.team-card {
  flex: 0 0 300px;
  border-radius: 24px;
  overflow: hidden;
  text-decoration: none;
  color: #ffffff;
  position: relative;
}

.team-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-card__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px;
}

/* ================= SPONSOR ARROWS ================= */

/* =========================
   Sponsors Navigation Arrows
========================= */

.sponsors-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 3px solid #00b3a4;
  background: #ffffff;
  color: #00b3a4;
  cursor: pointer;
  z-index: 10;
}

.sponsors-arrow::before {
  font-size: 22px;
  line-height: 1;
}

.sponsors-arrow--prev {
  left: 24px;
}

.sponsors-arrow--prev::before {
  content: "←";
}

.sponsors-arrow--next {
  right: 24px;
}

.sponsors-arrow--next::before {
  content: "→";
}

/* Mobile adjustment */
@media (max-width: 768px) {

  .sponsors-arrow--prev {
    left: 8px;
  }

  .sponsors-arrow--next {
    right: 8px;
  }

}