.people-help {
  /* padding: 80px 0 100px; */
  background: rgba(var(--bg-color-6));
  position: relative;

  .people-help__top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 44px;
    margin-bottom: 40px;

    .people-help__heading {
      max-width: 572px;
      width: 100%;
      color: rgba(var(--text-color-1));
      font-family: var(--font-source-serif-4);
      font-size: var(--font-9-2);
      font-weight: 700;
      line-height: 1;
    }

    .people-help__intro {
      max-width: 528px;
      color: rgba(var(--text-color-1));
      font-size: var(--font-24);
      line-height: 1.75;
      font-weight: 400;
    }
  }

  .people-help__grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    /* grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); */
    gap: 18px;

    .people-help-card {
      background: rgba(var(--bg-color-1));
      border: 1px solid rgba(var(--border-color-6), 12%);
      border-radius: var(--border-radius-8);
      padding: 29px 25px;
      display: flex;
      flex-direction: column;

      .people-help-card__item-title {
        color: rgba(var(--text-color-3));
        margin-bottom: 12px;
        font-family: var(--font-source-serif-4);
        font-size: var(--font-21);
        line-height: 1.3;
        font-weight: 700;
      }

      p {
        font-size: var(--font-26);
        line-height: 1.65;
        color: rgba(var(--text-color-9));
        margin-bottom: auto;
      }

      a {
        margin-top: 10px;
      }

      .people-help-card__icon {
        width: 42px;
        height: 42px;
        border-radius: var(--border-radius-14);
        background: rgba(var(--bg-color-14), 12%);
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 14px;

        img,
        svg {
          width: 20px;
          height: 20px;
        }
      }
    }
  }

  .people-help-card--highlight {
    justify-content: center;
    border-color: rgba(var(--bg-color-10)) !important;
    background-color: rgba(var(--bg-color-10)) !important;

    .people-help-card__icon {
      background-color: rgba(var(--bg-color-1)) !important;
    }

    .people-help-card__item-title,
    .people-help-card__item-dec {
      color: rgba(var(--text-color-1)) !important;
    }

    .people-help-card__item-title {
      margin-bottom: 0px !important;
    }

    .people-help-card__item-dec {
      margin-bottom: 0px !important;
      margin-top: 12px !important;
    }

    .site__btn--5 {
      /* color: rgba(var(--text-color-1)) !important; */
      display: none;

      &:hover {
        opacity: 0.7 !important;

        svg {
          color: rgba(var(--text-color-1)) !important;
        }
      }
    }
  }

  @media (max-width: 1280px) {
    .people-help__grid {
      grid-template-columns: repeat(3, 1fr);
    }
  }

  @media (max-width: 880px) {
    .people-help__top {
      flex-direction: column;
      align-items: start;
      gap: 24px;

      .people-help__heading {
        max-width: 100%;
      }

      .people-help__intro {
        max-width: 100%;
      }
    }

    .people-help__grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  @media (max-width: 680px) {
    .people-help__grid {
      grid-template-columns: 1fr;
    }
  }
}

.light_people_help {
  background-color: rgba(var(--bg-color-26));

  .people-help__top {
    .people-help__heading {
      color: rgba(var(--text-color-2));
    }

    .people-help__intro {
      color: rgba(var(--text-color-9));
    }
  }

  .section__wave {
    path {
      fill: rgba(var(--bg-color-26));
    }
  }

  /* .people-help-card--highlight {
    background-color: rgba(var(--bg-color-16), 0.3) !important;
    border-color: rgba(var(--bg-color-16), 0.3) !important;
  } */
}