.map-profile {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 24px;
  width: 268px;
  .image {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    img {
      width: 100%;
    }
  }
  .name {
    h3 {
      color: #312f34;
      font-size: 22px;
      font-weight: 700;
      letter-spacing: -0.55px;
    }
  }
}

.scamper-list {
  display: flex;
  gap: 16px;
  margin-top: 22px;
  .scamper-column {
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex: 1 1 0;
    &__header {
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      position: relative;
      height: 80px;
      margin-bottom: 8px;
      border-radius: 4px;
      background-color: #727379;

      &.em {
        background-color: #b7014d;
      }

      h5 {
        color: #fff;
        font-size: 18px;
        font-weight: 700;
      }
      p {
        margin-top: 8px;
        color: #fff;
        font-size: 16px;
      }
    }
    &:has(.scamper-column__item) {
      .scamper-column__header {
        &::after {
          position: absolute;
          display: inline-block;
          width: 0px;
          height: 24px;
          bottom: 1px;
          border-right: 1px dashed #333;
          left: 50%;
          transform: translate(-50%, 100%);
          content: '';
        }
      }
    }
    &__item {
      position: relative;
      padding: 16px;
      color: #312f34;
      font-size: 16px;
      line-height: 26px;
      letter-spacing: -0.4px;
      background-color: #ffffff;
      border-radius: 4px;
      .btn-remove {
        display: inline-block;
        position: absolute;
        top: 0;
        right: 0;
        width: 15px;
        height: 15px;
        background-image: url('/resources/common_pub/images/round-cross.svg');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        cursor: pointer;
      }
    }
  }
}

.idea-grid {
  &__title {
    h3 {
      color: #312f34;
      font-size: 17px;
      font-weight: 700;
      letter-spacing: -0.425px;
      margin-bottom: 16px;
    }
  }
  &__content {
    display: flex;
    flex-direction: column;
    gap: 16px;
    .row {
      display: flex;
      gap: 16px;
      .head {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 50px;
        background-color: #312f34;
        color: #fff;
        font-size: 16px;
        font-weight: 900;
        text-align: center;
        border-radius: 4px;
      }
      .data {
        display: flex;
        flex-direction: column;
        flex: 1 1 0;
        gap: 8px;
        span {
          display: flex;
          align-items: center;
          padding: 0 16px;
          height: 50px;
          color: #312f34;
          font-size: 17px;
          line-height: 28px;
          letter-spacing: -0.425px;
          background-color: #fff;
          border-radius: 4px;

          &::before {
            margin-right: 6px;
            content: '•';
          }
        }
      }
    }
  }
  &.red {
    .row {
      .head {
        background-color: #b7014d;
      }
    }
  }

  & + .idea-grid {
    margin-top: 28px;
  }
}
.idea-article-arrow {
  position: relative;
  &::after {
    display: inline-block;
    position: absolute;
    top: 50%;
    right: 0;
    width: 45px;
    height: 180px;
    background-image: url('/resources/common_pub/images/idea-article-arrow.svg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: translate(100%, -50%);
    content: '';
  }
}

.concept-swiper {
  position: relative;
  padding: 0 72px;

  .concept-item {
    height: 166px;
    padding: 24px;
    border: 1px solid #bebfcb;
    background-color: #fff;
    box-sizing: border-box;
    border-radius: 4px;

    &.on {
      background-color: #fff5f8;
      border-color: #b7014d;
    }

    .title {
      h5 {
        color: #222222;
        font-size: 18px;
        font-weight: 700;
        letter-spacing: -0.45px;
      }
    }
    .content {
      margin-top: 32px;
      ul {
        li {
          display: flex;
          justify-content: space-between;
          color: #312f34;
          font-size: 16px;
          letter-spacing: -0.4px;

          &:not(:first-of-type) {
            margin-top: 16px;
          }

          p {
          }
          span {
            color: #222222;
            font-weight: 700;
          }
        }
      }
    }
  }

  .swiper-button-next,
  .swiper-button-prev {
    width: 48px;
    height: 48px;
    background-color: #fff;
    border-radius: 4px;
    &::after {
      width: 16px;
      height: 16px;
      background-image: url('/resources/common_pub/images/swiper-arrow.svg');
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      content: '';
    }
  }
  .swiper-button-next {
    right: 0;
    &::after {
      transform: rotate(180deg);
    }
  }

  .swiper-button-prev {
    left: 0;
  }
}
