.achievements {
  position: relative;
  background:
    linear-gradient(212deg, rgba(157, 207, 218, 0.4) -61.57%, rgba(22, 29, 31, 0.4) 100.57%), var(--tertiary-black);
  padding-inline: 20px;
  padding-block: 48px;
  @media (min-width: 1024px) {
    padding: 64px 269px 64px 270px;
  }
  p {
    margin: 0;
  }
  &::before {
    content: '';
    position: absolute;
    right: 0;
    top: -15px;
    width: 144px;
    height: 16px;
    background: linear-gradient(168deg, rgba(157, 207, 218, 0.4) -32.73%, rgba(22, 29, 31, 0.4) 264.88%), #000;
    mask-image: url('/icons/cd-polygon-sm.svg');
    mask-repeat: no-repeat;
    mask-size: cover;

    @media (width >= 768px) {
      width: 192px;
      height: 16px;
      mask-image: url('/icons/cd-polygon-md.svg');
    }

    @media (width >= 1024px) {
      width: 240px;
      height: 25px;
      top: -24px;
      mask-image: url('/icons/cd-polygon-lg.svg');
    }
  }

  .achievements__list {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: space-between;
    margin: 0;
    flex: 1 1 50%;
    .item {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 4px;
      flex: 1;
      position: relative;

      &:not(:last-child)::after {
        content: '';
        position: absolute;
        top: 0;
        bottom: 0;
        width: 1px;
        background-color: rgba(255, 255, 255, 0.2);
        right: 0;
        transform: translateX(50%);
      }
      .label {
        width: 50%;
        color: var(--tertiary-grey);
        font-size: var(--body-font-size-xxxs);
        font-weight: var(--fw-500);
        line-height: var(--heading-lh-25-mob-text-small);
        @media (min-width: 1024px) {
          width: auto;
          color: var(--tertiary-light-grey);
          font-size: var(--body-font-size-sm);
          line-height: var(--heading-lh-7-des);
        }
      }

      .value {
        width: 50%;
        color: var(--tertiary-white);
        font-size: var(--body-font-size-x);
        font-weight: var(--fw-700);
        line-height: var(--heading-lh-21-mob-text-small);
        letter-spacing: var(--space-25px);
        @media (min-width: 1024px) {
          width: auto;
          font-size: var(--heading-font-9-mob);
          line-height: var(--heading-lh-22-des-display);
          letter-spacing: var(--space-1px);
        }
      }
    }
    .item:first-child {
      align-items: center;
      @media (min-width: 1024px) {
        align-items: flex-start;
      }
    }
    .item:last-child {
      align-items: center;
      @media (min-width: 1024px) {
        align-items: flex-end;
      }
    }
    .item:only-child {
      align-items: center;
      .value {
        text-align: center;
      }
      .label {
        text-align: center;
      }
    }
  }
}
