.stakeholders {
  display: flex;
  gap: clamp(1.5rem, 2vw + 0.5rem, 3rem);
  width: 100%;
}
.stakeholders--empty {
  min-height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--theme-palette-color-7);
  border-radius: 4px;
}
.stakeholders__heading-col {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding-right: clamp(1rem, 1.5vw, 2rem);
  border-right: 1px solid var(--theme-palette-color-75);
}
.stakeholders__heading {
  writing-mode: vertical-lr;
  transform: rotate(180deg);
  font-size: clamp(0.875rem, 0.5vw + 0.75rem, 1.125rem);
  font-weight: 900;
  color: var(--theme-palette-color-5);
  white-space: nowrap;
  line-height: 1.1;
}
.stakeholders__list {
  flex: 1;
  min-width: 0;
}
.stakeholders__item {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2vw, 2.5rem);
  padding: clamp(0.625rem, 1.709vw + 0.007rem, 1.375rem) clamp(0px, (100vw - 1200px) * 0.6, 120px);
  border-top: 1px solid var(--theme-palette-color-7);
  position: relative;
  text-decoration: none;
  color: inherit;
  transition: color 0.2s ease;
}
.stakeholders__item:last-child {
  border-bottom: 1px solid var(--theme-palette-color-7);
}
.stakeholders__item:hover .stakeholders__arrow {
  background: var(--theme-palette-color-1);
  border-style: solid;
  color: #fff;
}
.stakeholders__item:hover .stakeholders__title {
  color: var(--theme-palette-color-1);
}
.stakeholders__item:hover .stakeholders__image {
  opacity: 1;
  visibility: visible;
  transform: translateY(-50%) rotate(-3deg);
}
.stakeholders__header-row {
  display: contents;
}
.stakeholders__number {
  font-size: clamp(0.875rem, 0.57vw + 0.669rem, 1.125rem);
  font-weight: 700;
  color: var(--theme-palette-color-13);
  min-width: 2rem;
}
.stakeholders__title {
  font-size: clamp(1.25rem, 0.855vw + 0.941rem, 1.625rem);
  font-weight: 900;
  margin: 0;
  color: var(--theme-palette-color-5);
  transition: color 0.2s ease;
  flex-shrink: 0;
}
.stakeholders__text {
  font-size: clamp(0.8125rem, 0.3vw + 0.7rem, 0.9375rem);
  line-height: 1.6;
  color: var(--theme-palette-color-6);
  margin: 0;
  flex: 1;
  max-width: 414px;
}
.stakeholders__image {
  position: absolute;
  right: calc(5rem + clamp(0px, (100vw - 1200px) * 0.6, 120px));
  top: 50%;
  transform: translateY(-50%) rotate(-8deg);
  width: 168px;
  aspect-ratio: 168/108;
  border-radius: 12px;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  z-index: 10;
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
}
.stakeholders__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.stakeholders__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 1px dashed #b4bbc5;
  background: transparent;
  color: var(--theme-palette-color-5);
  transition: all 0.2s ease;
  flex-shrink: 0;
  margin-left: auto;
}
.stakeholders__arrow-mobile {
  display: none;
  color: var(--theme-palette-color-5);
  flex-shrink: 0;
}
.stakeholders__arrow-mobile .stakeholders__arrow-icon {
  width: 18px;
  height: 10px;
}
.stakeholders__arrow-icon {
  width: 23px;
  height: 12px;
}

@media (min-width: 1100px) {
  .stakeholders__title {
    min-width: 280px;
    white-space: nowrap;
  }
}
@media (max-width: 991.98px) {
  .stakeholders__title {
    flex: 1;
  }
  .stakeholders__image {
    display: none;
  }
}
@media (max-width: 767.98px) {
  .stakeholders {
    flex-direction: column;
  }
  .stakeholders__heading-col {
    border-right: none;
    border-bottom: 1px solid var(--theme-palette-color-7);
    padding-right: 0;
    padding-bottom: 1rem;
  }
  .stakeholders__heading {
    writing-mode: horizontal-tb;
    transform: none;
  }
  .stakeholders__item {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.5rem;
    padding-left: 0;
    padding-right: 0;
  }
  .stakeholders__item:hover .stakeholders__image {
    display: none;
  }
  .stakeholders__header-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    width: 100%;
  }
  .stakeholders__number {
    min-width: auto;
  }
  .stakeholders__title {
    flex: 0 0 auto;
  }
  .stakeholders__arrow {
    display: none;
  }
  .stakeholders__arrow-mobile {
    display: flex;
  }
  .stakeholders__text {
    display: block;
    max-width: 100%;
    text-align: center;
  }
  .stakeholders__image {
    display: none;
  }
}