.extend {
  cursor: pointer;

  display: grid;
  grid-template-columns: 118px 1fr 32px;
  align-items: center;

  margin-bottom: 15px;

  border-radius: 3px;
  box-shadow:
    rgb(9 30 66 / 25%) 0 1px 1px,
    rgb(9 30 66 / 31%) 0 0 1px;

  &:hover {
    box-shadow:
      rgb(9 30 66 / 20%) 0 3px 5px,
      rgb(9 30 66 / 31%) 0 0 1px;
  }
}

.extend-img {
  height: 100%;

  img {
    display: block;
  }
}

.extend-content {
  padding: 16px;

  .extend-label {
    margin-bottom: 10px;
    font-size: 16px;
    font-weight: 600;
    color: #323232;
  }

  .extend-description {
    color: var(--color-gray-666);
  }
}

.extend-arrow {
  padding-right: 8px;
}
