.saas-app-device-planning {
  &__model-step {
    flex: 1;
    min-height: 0;
    overflow-y: auto;
  }

  &__model-group {
    margin-bottom: 28px;

    &:last-child {
      margin-bottom: 0;
    }
  }

  &__model-group-title {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 20px;
    font-weight: 600;
    line-height: 28px;
    color: rgba(0, 0, 0, 0.88);

    .anticon {
      font-size: 20px;
      color: rgba(0, 0, 0, 0.88);
    }
  }

  &__model-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px 20px;
  }

  &__model-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-height: 104px;
    padding: 24px;
    border: none;
    border-radius: 8px;
    background: #f5f6f8;
    color: inherit;
    text-align: left;
    cursor: pointer;
    transition:
      background 0.2s ease,
      box-shadow 0.2s ease;

    &:hover {
      background: #eef3ff;
      box-shadow: 0 2px 8px rgba(22, 119, 255, 0.12);
    }
  }

  &__model-card-title {
    font-size: 18px;
    font-weight: 600;
    line-height: 26px;
    color: rgba(0, 0, 0, 0.88);
  }

  &__model-card-desc {
    margin-top: 8px;
    font-size: 14px;
    line-height: 22px;
    color: rgba(0, 0, 0, 0.45);
  }
}
