.sd-item-agile {
  padding: 32px 0;
  display: flex;
  align-items: center;
  position: relative;
  &::after {
    content: " ";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    border-bottom: 1px solid rgba(227, 227, 227, 1);
    transform: scaleY(0.5);
  }
}
.sd-item-agile-topline {
  &::before {
    content: " ";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    border-top: 1px solid rgba(227, 227, 227, 1);
    transform: scaleY(0.5);
  }
}
.sd-item-agile-noborder {
  &::after {
    border: none;
  }
}
.sd-item-agile-disabled {
  pointer-events: none;
  opacity: 0.5;
}
.sd-item-agile-thumb {
  width: 64px;
  height: 64px;
  margin-right: 24px;
  border-radius: 50%;
}
.sd-item-agile-content {
  flex: 1;
}
.sd-item-agile-title {
  font-size: 32px;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.85);
  line-height: 48px;
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  word-break: break-all;
  white-space: pre-wrap;
}
.sd-item-agile-note {
  font-size: 24px;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.25);
}
.sd-item-agile-extra-text {
  font-size: 32px;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.25);
}
.sd-item-agile-extra-thumb {
  width: 48px;
  height: 48px;
}
